.jm-social-media {
  list-style: none;
  display: flex;
  gap: 5px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 0;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
}
.faq-question:after {
  content: "+";
  position: absolute;
  right: 0;
}

.faq-item.active .faq-question:after {
  content: "-";
}
.faq-item.active .faq-answer {
  display: block;
  max-height: 300px;
}

.faq-answer {
  display: none;
  padding: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer .faq-lists {
  list-style: none;
  display: flex;
  flex-flow: wrap;
  padding-left: 10px;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.faq-answer .faq-lists li {
  width: 32%;
  padding-left: 23px;
  position: relative;
}
.faq-answer .faq-lists li svg {
  fill: green;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 0;
  top: 5px;
}

.video-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.video-list .video-item {
  text-align: center;
}

.video-embed iframe {
  width: 100%;
  height: 200px;
}

.video-title {
  margin-top: 10px;
  font-size: 16px;
}

.video-thumb {
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-team {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.team-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.team-left {
  max-width: 423px;
  flex: 0 0 25%;
}
.team-left img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.team-right h3 {
  margin: 0;
  font-size: 22px;
}

.team-right .position {
  display: block;
  font-weight: 600;
  color: #777;
  margin-bottom: 10px;
}

.team-right p {
  margin: 0;
}

.team-item.reverse {
  flex-direction: row-reverse;
}

.categories-photo-video h2 {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
}

.myCarousel {
  position: relative; /* ensure container positioning */
}
.myCarousel .swiper-slide img {
  max-width: 196px;
  object-fit: cover;
  height: 250px;
  width: 100%;
  border-radius: 10px;
}
.myCarousel .swiper-slide h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3px;
}
.myCarousel .swiper-slide p {
  font-size: 12px;
}
.myCarousel .swiper-slide a {
  color: #24afac;
}
@media (max-width: 600px) {
  .myCarousel .swiper-slide {
    text-align: center;
  }
}
.myCarousel .swiper-button-prev,
.myCarousel .swiper-button-next {
  background: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  right: 6px;
}
.myCarousel .swiper-button-prev:after,
.myCarousel .swiper-button-next:after {
  left: 4px;
  font-size: 21px;
  font-weight: 900;
  position: relative;
}
.myCarousel .swiper-button-prev {
  left: 3px;
  position: absolute;
}
.myCarousel .swiper-button-prev:after {
  left: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .team-item {
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=acf_components.css.map */