.lth-rounded-container {
  width: 80%;
  max-width: 1200px;
  margin: 20px auto;
  border: 2px solid white;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  max-height: 1500px;
  position: relative;
  overflow: unset;
}
.lth-nav-buttons-mobile {
  display: none;
}

.lth-card {
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
  flex: 1 0 calc(25% - 40px);
  box-sizing: border-box;
  border-radius: 12px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
}

.lth-card-header {
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  padding-bottom: 50px;
}

.lth-card-content {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  position: relative;
  margin-top: -40px;
  width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0px;
}

.lth-card-content ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

.lth-card-content li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  display: block;
  font-size: 14px;
}

.lth-card-content li:last-child {
  border-bottom: none;
}

.lth-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background-image: url("/wp-content/uploads/2025/06/compass.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}

.lth-card:last-child::after {
  display: none;
}

.lth-card-desc {
  font-size: 16px;
  color: white;
  margin-top: 5px;
  opacity: 0.8;
}

.lth-see-more {
  display: block;
  margin: 15px auto 0;
  padding: 10px 20px;
  border-radius: 12px;
  border: none;
  background-color: gray;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
	text-align: center;
}
.lth-see-more br{
	display:none;
}
.lth-see-more:hover {
  background-color: darkgray;
  transform: scale(1.05);
}

.lth-see-more:active {
  transform: scale(0.95);
  background-color: black;
}
.lth-card-content-cus p {
  margin-bottom: 0px;
  margin-top: 42px;
}
.lth-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.4s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.lth-content-header {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
  margin-bottom: 50px;
}

@media (min-width: 1025px) {
  .lth-card::after {
    display: block;
  }

  .lth-rounded-container .lth-card {
    margin-top: -50px;
  }
}

@media (max-width: 1024px) {
  div[style*="background-color: #C8ECFF"] {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .lth-card {
    flex: 1 0 calc(50% - 20px);
    min-height: 300px;
    margin: 10px;
  }

  .lth-rounded-container {
    padding: 5px;
    margin: 10px auto;
  }

  .lth-rounded-container .lth-card:nth-child(1),
  .lth-rounded-container .lth-card:nth-child(2),
  .lth-rounded-container .lth-card:nth-child(3),
  .lth-rounded-container .lth-card:nth-child(4) {
    transform: translateY(0px);
  }

  .lth-rounded-container .lth-card:nth-child(1),
  .lth-rounded-container .lth-card:nth-child(2) {
    margin-bottom: 5px;
  }
}


.card-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  z-index: 2;
}

.card-carousel {
  position: relative;
  overflow: hidden;
}
.card-carousel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-carousel:hover .card-overlay {
  opacity: 1;
  visibility: visible;
}
.card-overlay-title {
  color: #fff;
}
.myowlC {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-overlay .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-overlay .link-list .link-custom {
  color: #fff;
  border: 1px solid;
  padding: 10px;
  border-radius: 30px;
}
.myowlC .item:nth-child(4) {
  grid-column: span 3;
}
.student-item {
  width: fit-content;
  position: relative;
}
.info-student {
  position: absolute;
  bottom: -40px;
  width: 100%;
  text-align: center;
}
.info-student .info-student-detail {
  display: none;
}
.student-item .info-student-detail {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  background: transparent;
  color: transparent;
}

.student-item:hover .info-student-detail {
  opacity: 1;
  transform: translateY(0);
  background: #a6b1e1;
  color: #fff;
  padding:30px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
 
}
.info-student-detail p, .info-student-detail h2{
	margin-bottom:0px;
}
.student-item:hover h2{
	font-size:24px;
	color: #fff;

}
.student-thumbnail img {
  border-radius: 40px;
  height: 500px;
  object-fit: cover;
}

/* Ẩn nút khi không cần thiết (tuỳ chọn) */
.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Nút trái */
.swiper-button-prev {
  background-color: #fff;
  color: #f7a4a4;
  padding: 10px;
  border-radius: 50%;
  left: 10px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Nút phải */
.swiper-button-next {
  background-color: #fff;
  color: #f7a4a4;
  padding: 10px;
  border-radius: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Tăng kích thước biểu tượng mũi tên */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}
.giao-vien-simple-item {
  display: flex;

  align-items: center;
  gap: 100px;
}

.giao-vien-simple-item .thumbnail {
  display: flex;
  justify-content: center;
}

.col-simeple .owl-carousel .owl-item {
  background: #ceeeff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #fff;
}
.text-certificate h3 {
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 15px;
  border-bottom: 1px solid #1c1c1c;
  margin-bottom: 20px;
  font-size: 38px;
  line-height: 1.2;
  color: #1c1c1c !important;
}
.text-certificate p {
  font-size: 20px;
  color: #1c1c1c !important;
  font-weight: 600;
  text-transform: capitalize;
  text-align: left;
}
.giao-vien-simple-list .owl-item img{
	border-radius:10px;
}
.giao-vien-simple-list .owl-nav {
  top: 30%;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.giao-vien-simple-list .owl-next {
  margin-right: -32px;
}
.giao-vien-simple-list .owl-prev {
  margin-left: -32px;
}
.giao-vien-simple-list .owl-next span,
.giao-vien-simple-list .owl-prev span {
  font-size: 56px;
  color: #fff;
}
.giao-vien-simple-item:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 10%;
  background-image: url(/wp-content/uploads/2025/06/quote-carousel.png);
  height: 70px;
  width: 100px;
  background-repeat: no-repeat;
  z-index: 10;
}
.video-fit iframe {
  border-radius: 20px;
}
.giao-vien-simple-list .owl-dots{
	display:none;
}

@media (max-width: 768px) {
    .myowlC {
      display: block !important; /* tắt grid */
    }
  
    .myowlC .item {
      margin-bottom: 20px;
    }
  
    .myowlC .owl-stage-outer {
      overflow: hidden;
    }
    .myowlC .owl-item img {
      display: block;
      width: 100%;
      height: 550px !important;
    }
    .myowlC .owl-nav {
      display: none;
    }
    .col-padding {
      padding-bottom: 0 !important;
    }
  
    .lth-nav-buttons-mobile {
      display: block;
    }
    #lth-prev {
      position: absolute;
      top: 50%;
      left: 4px;
    }
    #lth-next {
      position: absolute;
      top: 50%;
      right: -10px;
    }
    .lth-rounded-container {
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
  
    .lth-rounded-container::-webkit-scrollbar {
      display: none;
    }
  
    .lth-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
      margin: 0 10px;
      padding: 15px 0 15px 10px;
    }
  
    .lth-card-content {
      padding: 10px;
      margin-top: -10px;
      font-size: 13px;
    }
  
    .lth-content-header {
      font-size: 25px;
      margin-bottom: 0px;
    }
  
    .lth-card-header {
      font-size: 16px;
      padding: 15px;
    }
  
    .lth-card-desc {
      font-size: 13px;
    }
  
    .lth-see-more {
      font-size: 14px;
      padding: 8px 12px;
    }
  
    .lth-nav-buttons-mobile {
      display: flex;
      justify-content: space-between;
      margin: 0 10px 10px;
    }
  
    .lth-nav-buttons-mobile button {
      background-color: #ffffff88;
      border: none;
      font-size: 16px;
      padding: 0px 16px;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
    }
  
    .lth-nav-buttons-mobile button:hover {
      background-color: #ffffff;
    }
  	.giao-vien-simple-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: column;
	}	
  .text-certificate h3 {
  	font-size:24px;	
    text-align: left;
  }
  .text-certificate{
  	width:100%;
  }
  .giao-vien-simple-list .owl-item img {
      height: 350px;
    object-fit: cover;
  }
  .giao-vien-simple-item .thumbnail {
  	    width: 100%;
    object-fit: cover;
  }
  .giao-vien-simple-list .owl-nav{
  	width: 92%;
  }

  .giao-vien-simple-list .owl-nav .owl-prev {
  	left: 30px;
  }

}