.vm-training-hero {
  position: relative;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.vm-training-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 48, 96, 0.8) 5%, rgba(0, 48, 96, 0) 100%);
  z-index: 1;
}

.vm-training-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  align-self: end;
  padding: 30px 0;
}

.vm-training-hero__title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.vm-breadcrumb {
  font-size: 16px;
  font-weight: 500px;
}

.vm-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}

.vm-breadcrumb__item {
  display: flex;
  align-items: center;
}
.vm-breadcrumb__item::after {
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  content: "";
}
.vm-breadcrumb__item:last-child::after {
  display: none;
}
.vm-breadcrumb__item--active {
  color: #fff;
}

.vm-breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 8px;
}
.vm-breadcrumb__link:hover {
  color: #EB0738;
}

.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 {
  padding: 60px 0;
}

.vm-section-overview {
  background: #fff;
}
.vm-section-overview .overview-wrapper {
  position: relative;
}
.vm-section-overview .section-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vm-section-overview .section-subtitle h3 {
  font-family: "UTM ViceroyJF", "Segoe UI", sans-serif;
  display: block;
  padding: 5px 36px 5px 12px;
  background: #f3f6ff;
  margin: 0;
  font-size: 32px;
  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-overview .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 80px;
  padding-right: 50px;
}
.vm-section-overview .section-content .system-title {
  display: flex;
  flex-direction: column;
  width: 100%;
  white-space: nowrap;
}
.vm-section-overview .section-content .system-title h3 {
  display: inline-block;
  font-size: 36px;
  font-weight: 700;
  color: #eb0738;
  text-transform: capitalize;
  margin: 0;
  vertical-align: middle;
}
.vm-section-overview .section-content .system-title .text_bottom {
  color: #073459;
}
.vm-section-overview .section-content .system-content {
  font-size: 18px;
  line-height: 1.4;
  color: #141414;
}
.vm-section-overview .section-bgr {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 300px);
  border-radius: 36px;
  background: #f3f6ff;
  padding: 50px;
  z-index: 0;
}
.vm-section-overview .section-bgr img {
  margin: auto;
}

.vm-section-fivecause {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.vm-section-fivecause .cause_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-fivecause .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-fivecause .cause_wrapper {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  border-radius: 12px;
}
.vm-section-fivecause .cause_wrapper .vm-cause-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card {
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: 24px;
  position: relative;
  text-align: center;
  margin-bottom: 24px;
  transition: transform 0.2s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.2s;
  box-shadow: none;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card:hover {
  transform: translateY(-2px);
  z-index: 2;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card:hover .vm-cause-card__image-box {
  box-shadow: 0 8px 32px 0 rgba(20, 20, 43, 0.16);
}
.vm-section-fivecause .cause_wrapper .vm-cause-card:hover a .vm-cause-card__title {
  color: #eb0738;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card__image-box {
  width: 100%;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(20, 20, 43, 0.08);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 24px;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card__icon {
  width: 80px;
  height: 80px;
  padding: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 24px 0 rgba(20, 20, 43, 0.12);
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.vm-section-fivecause .cause_wrapper .vm-cause-card__title {
  margin-top: 56px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 700;
  color: #073459;
  line-height: 1.4;
  width: 100%;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(20, 20, 43, 0.04);
}

.vm-section-cause {
  background: #f3f6ff;
}

.vm-cause-3-1-3-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 40px;
}

.vm-cause-3-1-3-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vm-cause-3-1-3-center-image {
  width: 400px;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(20, 20, 43, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-cause-3-1-3-center-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.vm-cause-3-1-3-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 2px 12px 0 rgba(20, 20, 43, 0.06);
  padding: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.vm-cause-3-1-3-item:hover {
  box-shadow: 0 4px 24px 0 rgba(20, 20, 43, 0.12);
  transform: translateY(-2px) scale(1.03);
}

.vm-cause-3-1-3-icon {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vm-cause-3-1-3-title {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  color: #001f3d;
  line-height: 1.4;
  text-transform: capitalize;
}

.vm-section-system {
  padding: 0;
  overflow: hidden;
  position: relative;
}
.vm-section-system .system_bgr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.vm-section-system .system_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-system .cause_wrapper {
  padding: 60px 0;
}
.vm-section-system .cause_wrapper .vm-section__heading h2 {
  color: #fff;
}
.vm-section-system .cause_wrapper .vm-section__heading h2::after {
  background: #fff;
}

.vm-system-carousel {
  position: relative;
  z-index: 1;
}
.vm-system-carousel__wrapper {
  display: flex;
  align-items: stretch;
}
.vm-system-carousel__page {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.vm-system-carousel__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.vm-system-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-system-carousel .owl-nav button:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(7, 52, 89, 0.2);
}
.vm-system-carousel .owl-nav button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vm-system-carousel .owl-nav button.owl-prev {
  left: -98px;
}
.vm-system-carousel .owl-nav button.owl-next {
  right: -98px;
}
.vm-system-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.vm-system-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-system-carousel .owl-dots .owl-dot::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
  transition: background 0.24s;
}
.vm-system-carousel .owl-dots .owl-dot.active {
  border: 1px solid #eb0738;
  background: #f2f5f9;
}
.vm-system-carousel .owl-dots .owl-dot.active::before {
  background: #eb0738;
}
.vm-system-carousel .owl-dots .owl-dot:hover::before {
  background: #bdbdbd;
}

.vm-specialty-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(20, 20, 43, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.vm-specialty-card:hover .vm-specialty-card__content {
  gap: 16px;
}
.vm-specialty-card:hover .vm-specialty-card__btn {
  opacity: 1;
  transform: scale(1);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
.vm-specialty-card a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding-bottom: 36px;
}
.vm-specialty-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 8px;
}
.vm-specialty-card__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 16px 24px;
  border-radius: 36px;
  position: relative;
  z-index: 2;
  background: #fff;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-max-content;
  width: max-content;
  height: 75px;
}
.vm-specialty-card__content .vm-text-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.vm-specialty-card__content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  color: #001f3d;
}
.vm-specialty-card__code {
  font-size: 13px;
  font-weight: 500;
  color: #666;
  margin: 0;
  letter-spacing: 0.05em;
}
.vm-specialty-card__btn {
  width: 0px;
  height: 0px;
  border-radius: 50%;
  background: #eb0738;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
  padding: 0;
  margin-top: 4px;
}

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

.admission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.admission-content__video {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  padding: 30px;
  background: #fff;
  border-radius: 24px;
  height: 100%;
}
.admission-content__video h3 {
  color: #001f3d;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}

.admission-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20, 20, 43, 0.15);
}

.admission-video-thumbnail {
  width: 100%;
  height: 100%;
}
.admission-video-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(1.01);
}

.admission-video-wrapper:hover .admission-video-thumbnail img {
  transform: scale(1.05);
}

.admission-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.admission-video-play svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.admission-video-play:hover svg {
  transform: scale(1.1);
}
.admission-video-play:active svg {
  transform: scale(0.95);
}

.admission-video-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.admission-video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.admission-content__form {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.admission-form-content {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(20, 20, 43, 0.08);
}
.admission-form-content .form-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.admission-form-content .form-subtitle span {
  display: block;
  padding: 12px 36px 12px 12px;
  background: #f3f6ff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #eb0738;
  text-transform: capitalize;
  border-left: 2px solid #eb0738;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}
.admission-form-content > h2 {
  margin: 0 0 24px 0;
  font-size: 28px;
  font-weight: 600;
  color: #eb0738;
  display: flex;
  align-items: center;
  gap: 12px;
}
.admission-form-content > h2::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 32px;
  background: #eb0738;
  border-radius: 4px;
}
.admission-form-content > ul,
.admission-form-content > ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.admission-form-content > ul > li,
.admission-form-content > ol > li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.4;
  color: #001f3d;
  position: relative;
}
.admission-form-content > ul > li::before,
.admission-form-content > ol > li::before {
  background: url(../images/check.svg) top 0 left 0 no-repeat;
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.admission-form-content > button,
.admission-form-content > a.button,
.admission-form-content > .admission-button {
  background: #eb0738;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.admission-form-content > button:hover,
.admission-form-content > a.button:hover,
.admission-form-content > .admission-button:hover {
  background: rgb(185.4752066116, 5.5247933884, 44.1983471074);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(235, 7, 56, 0.4);
}
.admission-form-content > button:active,
.admission-form-content > a.button:active,
.admission-form-content > .admission-button:active {
  transform: translateY(0);
}
.admission-form-content > p {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.admission-form-content > p:last-of-type {
  margin-bottom: 0;
}
.admission-form-content .register-now {
  font-size: 16px;
  color: #fff;
  background: #eb0738;
  border-radius: 8px;
  padding: 14px 24px;
  text-transform: capitalize;
  font-style: italic;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.review-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.review-content__left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  height: 100%;
  max-height: 460px;
}

.review-tabs-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

.review-tab {
  padding: 16px;
  background: #f8f8f8;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #073459;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
  border-bottom: 2px solid transparent;
  margin-bottom: -12px;
  padding-bottom: 12px;
  border-bottom-color: #ededed;
  line-height: 1;
}
.review-tab:hover {
  color: #eb0738;
}
.review-tab.active {
  color: #eb0738;
  border-bottom-color: #eb0738;
  background: #fff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 4px 12px rgba(20, 20, 43, 0.1);
}

.review-video-container {
  position: relative;
  width: 100%;
}

.review-video-item {
  display: none;
  width: 100%;
}
.review-video-item.active {
  display: block;
}

.review-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(20, 20, 43, 0.15);
}

.review-video-thumbnail {
  width: 100%;
  height: 100%;
}
.review-video-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  transform: scale(1);
  width: 100%;
  height: 100%;
}

.review-video-wrapper:hover .review-video-thumbnail img {
  transform: scale(1.05);
}

.review-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}
.review-video-play img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.review-video-play:hover img {
  transform: scale(1.1);
}
.review-video-play:active img {
  transform: scale(0.95);
}

.review-video-iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.review-video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.review-content__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(20, 20, 43, 0.08);
  height: 100%;
  max-height: 460px;
}
.review-content__right .bgr-review {
  position: absolute;
  z-index: 0;
}
.review-content__right .static {
  position: relative;
}
.review-content__right .static .image {
  margin-bottom: 20px;
}
.review-content__right .static .image img {
  margin: auto;
}
.review-content__right .static .text {
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-align: center;
}
.review-content__right .static h2 {
  color: #eb0738;
  font-size: 32px;
  font-weight: 700;
}
.review-content__right .static h3 {
  color: #001f3d;
  font-size: 18px;
  font-weight: 600;
}
.review-content__right .static::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: #eb0738;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.review-item {
  display: none;
  position: relative;
}
.review-item.active {
  display: block;
}

.review-item-meta {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.03em;
}

.review-item-body {
  font-size: 16px;
  line-height: 1.4;
  color: #001f3d;
  margin: 0;
  overflow-y: auto;
  height: 204px;
  padding-right: 15px;
  text-align: justify;
}
.review-item-body::-webkit-scrollbar {
  height: 100%;
  width: 5px;
  margin-top: 5px;
}
.review-item-body::-webkit-scrollbar-track {
  background: #ededed;
  border-radius: 4px;
}
.review-item-body::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #eb0738;
}
.review-item-body::-webkit-scrollbar-thumb:hover {
  background: #eb0738;
}
.review-item-body p {
  margin: 0 0 14px 0;
}
.review-item-body p:last-child {
  margin-bottom: 0;
}
.review-item-body ul,
.review-item-body ol {
  margin: 0 0 14px 0;
  padding-left: 20px;
}
.review-item-body ul li,
.review-item-body ol li {
  margin-bottom: 8px;
  color: #001f3d;
}
.review-item-body strong {
  color: #eb0738;
  font-weight: 600;
}
.review-item-body em {
  font-style: italic;
  color: #333;
}

.vm-section-form {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.vm-section-form .cause_bgr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vm-section-form .contact_wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.vm-section-form .contact_wrapper--left {
  transform: translateY(-50%);
  width: 100%;
  max-width: 600px;
}
.vm-section-form .contact_wrapper--left h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16);
  margin-top: 0;
  margin-bottom: 24px;
}
.vm-section-form .contact_wrapper--left h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16);
  margin-top: 0;
  margin-bottom: 24px;
}
.vm-section-form .form-system .ff-default .ff-el-form-control {
  font-size: 16px;
  color: #757575;
  height: 44px;
  border: none;
}
.vm-section-form .form-system .ff-default .ff_btn_style {
  background: #eb0738;
  font-size: 15px;
  padding: 15px 20px;
  font-weight: 600;
  border-radius: 36px;
}

.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;
}

@media (max-width: 900px) {
  .vm-training-hero {
    min-height: 240px;
    padding: 0;
  }
  .vm-training-hero__title {
    font-size: 20px;
  }
  .vm-training-hero__content {
    gap: 5px;
    flex-direction: column;
    padding: 20px 15px;
    align-items: flex-start;
  }
  .vm-breadcrumb__list {
    font-size: 12px;
    gap: 8px;
  }
  .vm-breadcrumb__item::after {
    margin-left: 8px;
  }
  .vm-training-main {
    padding: 0 0 30px;
  }
  .vm-section {
    padding: 30px 0;
  }
  .vm-section__heading {
    margin-bottom: 32px;
  }
  .vm-section__heading h2 {
    font-size: 20px;
    padding-bottom: 16px;
  }
  .vm-section__heading h2::after {
    width: 100px;
  }
  .vm-section__heading .summary {
    font-size: 16px;
    margin: 20px 0;
  }
  .vm-section-overview .section-content {
    gap: 50px;
    padding-right: 30px;
  }
  .vm-section-overview .section-subtitle h3 {
    font-size: 28px;
  }
  .vm-section-overview .system-title h3 {
    font-size: 32px;
  }
  .vm-section-overview .system-content {
    font-size: 16px;
  }
  .vm-section-overview .section-bgr {
    width: calc(100% - 200px);
    padding: 40px;
    border-radius: 24px;
  }
  .vm-section-fivecause .cause_wrapper {
    padding: 40px 0;
  }
  .vm-section-fivecause .cause_wrapper .vm-cause-card {
    width: 220px;
    flex-shrink: 0;
    margin-bottom: 16px;
  }
  .vm-section-fivecause .cause_wrapper .vm-cause-card__image-box {
    height: 140px;
  }
  .vm-section-fivecause .cause_wrapper .vm-cause-card__icon {
    width: 70px;
    height: 70px;
    padding: 12px;
  }
  .vm-section-fivecause .cause_wrapper .vm-cause-card__title {
    margin-top: 48px;
    font-size: 14px;
  }
  .vm-section-fivecause .vm-cause-wrapper {
    gap: 30px;
    overflow-x: auto;
  }
  .vm-cause-3-1-3-inner {
    grid-template-columns: 1fr 300px 1fr;
    gap: 30px;
  }
  .vm-cause-3-1-3-center-image {
    width: 300px;
    height: 300px;
  }
  .vm-cause-3-1-3-item {
    padding: 12px;
    gap: 12px;
  }
  .vm-cause-3-1-3-icon {
    width: 70px;
    height: 70px;
    padding: 12px;
  }
  .vm-cause-3-1-3-icon img {
    width: 40px;
    height: 40px;
  }
  .vm-cause-3-1-3-title {
    font-size: 16px;
  }
  .vm-system-carousel__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .vm-system-carousel .owl-nav button.owl-prev {
    left: -60px;
  }
  .vm-system-carousel .owl-nav button.owl-next {
    right: -60px;
  }
  .vm-specialty-card__content {
    height: 65px;
    padding: 12px 20px;
  }
  .vm-specialty-card__content h3 {
    font-size: 14px;
  }
  .vm-specialty-card__code {
    font-size: 12px;
  }
  .admission-content {
    gap: 20px;
  }
  .admission-content__video {
    padding: 20px;
    gap: 20px;
  }
  .admission-content__video h3 {
    font-size: 16px;
  }
  .admission-form-content {
    padding: 28px;
  }
  .admission-form-content > h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .admission-form-content .form-subtitle span {
    font-size: 16px;
    padding: 10px 30px 10px 10px;
  }
  .admission-form-content > ul > li,
  .admission-form-content > ol > li {
    font-size: 14px;
    gap: 12px;
    margin-bottom: 12px;
  }
  .admission-form-content > button,
  .admission-form-content > a.button,
  .admission-form-content > .admission-button {
    padding: 14px 32px;
    font-size: 14px;
  }
  .admission-form-content > p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .review-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .review-content__left {
    max-height: 400px;
    padding: 20px;
    gap: 16px;
  }
  .review-tab {
    padding: 12px;
    font-size: 14px;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  .review-content__right {
    max-height: 400px;
    padding: 28px;
    gap: 16px;
  }
  .review-content__right .static h2 {
    font-size: 28px;
  }
  .review-content__right .static h3 {
    font-size: 16px;
  }
  .review-content__right .static::after {
    width: 100px;
  }
  .review-item-body {
    height: 180px;
    font-size: 14px;
  }
  .vm-section-form .contact_wrapper--left {
    max-width: 500px;
  }
  .vm-section-form .contact_wrapper--left h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .vm-section-form .contact_wrapper--left h4 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-wrapper__right {
    gap: 16px;
  }
  .faq-wrapper__right .sub {
    font-size: 18px;
  }
  .faq-list {
    height: 400px;
    margin-top: 30px;
  }
  .faq-item__button {
    padding: 20px;
    font-size: 16px;
    gap: 16px;
  }
  .faq-item__content-inner {
    padding: 0 20px 16px 20px;
    font-size: 14px;
    line-height: 2;
  }
  .vm-section {
    padding: 40px 0;
  }
}
@media (max-width: 640px) {
  .cause_wrapper {
    padding: 0 !important;
  }
  .vm-section-form .cause_bgr {
    width: 100%;
    height: calc(100vh - 70px);
  }
  .vm-section-overview {
    background: #fff;
  }
  .vm-section-overview .section-subtitle {
    margin-bottom: 20px;
  }
  .vm-section-overview .section-subtitle h3 {
    font-size: 24px;
    padding: 8px 24px 8px 10px;
    width: 100%;
  }
  .vm-section-overview .section-content {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    z-index: 2;
  }
  .vm-section-overview .section-content .system-title {
    white-space: normal;
  }
  .vm-section-overview .section-content .system-title h3 {
    font-size: 24px;
    display: block;
  }
  .vm-section-overview .system-content {
    font-size: 14px;
    line-height: 1.6;
  }
  .vm-section-overview .system-content p {
    margin: 0;
    font-size: 16px;
  }
  .vm-section-overview .section-bgr {
    display: none;
  }
  .vm-section-fivecause .cause_wrapper {
    padding: 0;
  }
  .vm-section-fivecause .vm-cause-wrapper {
    gap: 16px !important;
  }
  .vm-section-fivecause .vm-cause-card {
    width: calc(50% - 8px);
    margin-bottom: 16px;
  }
  .vm-section-fivecause .vm-cause-card__image-box {
    height: 120px;
  }
  .vm-section-fivecause .vm-cause-card__icon {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .vm-section-fivecause .vm-cause-card__title {
    margin-top: 40px;
    font-size: 13px;
  }
  .vm-section-cause {
    background: #f3f6ff;
  }
  .vm-cause-3-1-3-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-cause-3-1-3-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .vm-cause-3-1-3-center-image {
    width: 100%;
    height: 250px;
    order: 2;
  }
  .vm-cause-3-1-3-left {
    order: 1;
  }
  .vm-cause-3-1-3-right {
    order: 3;
  }
  .vm-cause-3-1-3-item {
    padding: 12px;
    gap: 12px;
    border-radius: 20px;
  }
  .vm-cause-3-1-3-item:hover {
    transform: translateY(-1px) scale(1.01);
  }
  .vm-cause-3-1-3-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
    flex-shrink: 0;
  }
  .vm-cause-3-1-3-icon img {
    width: 36px;
    height: 36px;
  }
  .vm-cause-3-1-3-title {
    font-size: 14px;
    font-weight: 500;
  }
  .vm-system-carousel__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vm-system-carousel .owl-nav {
    display: none;
  }
  .vm-system-carousel .owl-dots {
    margin-top: 20px;
    gap: 8px;
  }
  .vm-system-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
  }
  .vm-system-carousel .owl-dots .owl-dot::before {
    width: 8px;
    height: 8px;
  }
  .vm-specialty-card {
    box-shadow: 0 2px 8px rgba(20, 20, 43, 0.06);
  }
  .vm-specialty-card a {
    padding-bottom: 28px;
  }
  .vm-specialty-card__content {
    height: 60px;
    padding: 12px 18px;
    bottom: -28px;
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  .vm-specialty-card__content h3 {
    font-size: 13px;
  }
  .vm-specialty-card__code {
    font-size: 11px;
  }
  .vm-specialty-card__btn {
    width: 32px;
    height: 32px;
  }
  .vm-specialty-card__btn:hover {
    width: 32px;
    height: 32px;
  }
  .admission-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .admission-content__video {
    padding: 16px;
    gap: 12px;
  }
  .admission-content__video h3 {
    font-size: 16px;
  }
  .admission-video-wrapper {
    aspect-ratio: 16/9;
  }
  .admission-form-content {
    padding: 20px;
    border-radius: 12px;
  }
  .admission-form-content .form-subtitle {
    margin-bottom: 16px;
  }
  .admission-form-content .form-subtitle span {
    font-size: 14px;
    padding: 8px 24px 8px 10px;
  }
  .admission-form-content > h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .admission-form-content > h2::before {
    width: 6px;
    height: 24px;
  }
  .admission-form-content > ul > li,
  .admission-form-content > ol > li {
    font-size: 13px;
    gap: 12px;
    margin-bottom: 10px;
  }
  .admission-form-content > ul > li::before,
  .admission-form-content > ol > li::before {
    width: 18px;
    height: 18px;
  }
  .admission-form-content > button,
  .admission-form-content > a.button,
  .admission-form-content > .admission-button {
    padding: 12px 28px;
    font-size: 13px;
    margin-top: 12px;
    width: 100%;
  }
  .admission-form-content > p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  .admission-form-content .register-now {
    font-size: 13px;
    padding: 10px 16px;
    margin: auto;
  }
  .review-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .review-content__left {
    max-height: none;
    padding: 16px;
    gap: 12px;
    width: 100%;
  }
  .review-tabs-wrapper {
    gap: 0;
    padding-bottom: 8px;
    overflow-x: auto;
  }
  .review-tab {
    padding: 10px;
    font-size: 12px;
    padding-bottom: 8px;
    margin-bottom: -8px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .review-video-wrapper {
    aspect-ratio: 16/9;
  }
  .review-video-play img {
    width: 60px;
    height: 60px;
  }
  .review-content__right {
    max-height: none;
    padding: 20px;
    gap: 16px;
  }
  .review-content__right .static .image {
    margin-bottom: 16px;
  }
  .review-content__right .static .text {
    margin-bottom: 16px;
    font-size: 13px;
  }
  .review-content__right .static h2 {
    font-size: 22px;
  }
  .review-content__right .static h3 {
    font-size: 14px;
  }
  .review-content__right .static::after {
    width: 80px;
  }
  .review-item-body {
    height: auto;
    max-height: 200px;
    font-size: 13px;
    line-height: 1.6;
    padding-right: 10px;
    text-align: left;
  }
  .vm-section-form .contact_wrapper--left {
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }
  .vm-section-form .contact_wrapper--left h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .vm-section-form .contact_wrapper--left h4 {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .vm-section-form .form-system .ff-default .ff-el-form-control {
    font-size: 14px;
    height: 40px;
  }
  .vm-section-form .form-system .ff-default .ff_btn_style {
    font-size: 13px;
    padding: 12px 16px;
  }
  .vm-section-faq {
    padding: 40px 0;
  }
  .vm-section-faq .section-subtitle {
    margin-bottom: 16px;
  }
  .vm-section-faq .section-subtitle h3 {
    font-size: 14px;
    padding: 8px 24px 8px 10px;
  }
  .vm-section-faq .sub-text {
    font-size: 18px;
  }
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-wrapper__right {
    gap: 12px;
  }
  .faq-wrapper__right .sub {
    font-size: 16px;
  }
  .faq-wrapper__right .view-all {
    padding: 12px;
  }
  .faq-wrapper__right .view-all span {
    font-size: 13px;
  }
  .faq-list {
    height: 350px;
    margin-top: 20px;
    padding-right: 8px;
  }
  .faq-item__button {
    padding: 16px;
    font-size: 14px;
    gap: 12px;
  }
  .faq-item__icon {
    width: 20px;
    height: 20px;
  }
  .faq-item__content-inner {
    padding: 0 16px 12px 16px;
    font-size: 13px;
    line-height: 1.8;
  }
  .faq-item__content-inner p {
    margin-bottom: 10px;
  }
  .faq-item__content-inner ul,
  .faq-item__content-inner ol {
    margin: 10px 0;
    padding-left: 16px;
  }
  .faq-item__content-inner ul li,
  .faq-item__content-inner ol li {
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .faq-image {
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(20, 20, 43, 0.08);
  }
  .faq-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .faq-text p {
    margin-bottom: 10px;
  }
  .vm-section {
    padding: 30px 0;
  }
  .vm-breadcrumb {
    font-size: 12px;
  }
}/*# sourceMappingURL=training.css.map */