/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
    height: 76%;
    vertical-align: middle;
}

.team .member .social {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.5s;
    text-align: center;
    height: 95%;
}

.team .member .social span {
    font-size: 12px;
    font-weight: 600;
    padding-bottom: 10px;
}

.team .member .social ul {
    transition: color 0.3s;
    color: #222222;
    padding-top: 7px;
    border-radius: 4px;
    width: 100%;
    height: 300px;
    font-size: 10px;
    background: #000;
    display: inline-block;
    transition: ease-in-out 0.3s;
    color: #fff;
    text-align: left;
    list-style-type: disc;
    padding-left: 20px;
    line-height: 2;
    padding-right: 10px;
}

.team .member .social ul li {
    list-style: disc !important;
}


.team .member .social i {
    font-size: 18px;
}

.team .member .member-info {
    padding: 20px;
    text-align: center;
    background-color: #DCE9F5;
    height: 24%;
}


.team .member .member-info span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    font-weight: 600;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
    bottom: 15px;
}


.team .member-parent {
    height: 400px;
}

/* Carosuel 1 */

.carousel-1 {
    position: relative;
    width: 100%;
    height: 500px;
    /* Adjust the height as needed */
    overflow: hidden;
}

.carousel-1 .carousel-item-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
}

.carousel-1 .carousel-item-1.active {
    opacity: 1;
}

.carousel-1 .carousel-item-1 h3 {
    position: relative;
    z-index: 2;
    font-size: 40px;
    color: #fff;
    opacity: 1;
    visibility: visible;
    line-height: 50px;
    margin-bottom: 15px;
    margin-top: 20%;
    margin-left: 10%;
}
.carousel-1 .carousel-item-1 .buttons{
    margin-left: 10%;
}
.carousel-1 .carousel-item-1 p {
    color: #fff;
    margin-right: 60px;
    margin-bottom: 50px;
    opacity: 1;
    visibility: visible;
    font-size: 20px;
    margin-left: 10%;
}

.carousel-navigation-1 {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.carousel-navigation-1 button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.carousel-navigation-1 button.active {
    background-color: white;
}

.carousel-controls-1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    width: 100%;
}

.prev-container-1 {
    margin-right: 10px;
}

.next-container-1 {
    margin-left: auto;
    margin-right: 2%;
}

.carousel-controls-1 button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
    cursor: pointer;
}

.carousel-controls-1 .next {
    margin-left: auto;
}

.head-content{
    margin-bottom: 3%;
}

/* Blog */

.blog .posts-list article {
    box-shadow: 0 4px 16px rgba(var(--color-black-rgb), 0.1);
    padding: 30px;
    height: 100%;
  }
  
  .blog .posts-list article+article {
    margin-top: 60px;
  }
  
  .blog .posts-list .post-img {
    max-height: 240px;
    margin: -30px -30px 0 -30px;
    overflow: hidden;
  }
  
  .blog .posts-list .title {
    font-size: 24px;
    font-weight: 700;
    padding: 0;
    margin: 20px 0 0 0;
  }
  
  .blog .posts-list .title a {
    color: var(--color-secondary);
    transition: 0.3s;
  }
  
  .blog .posts-list .title a:hover {
    color: var(--color-primary);
  }
  
  .blog .posts-list .meta-top {
    margin-top: 20px;
    color: var(--color-gray);
  }
  
  .blog .posts-list .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog .posts-list .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog .posts-list .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: rgba(var(--color-primary-rgb), 0.8);
  }
  
  .blog .posts-list .meta-top a {
    color: var(--color-gray);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog .posts-list .content {
    margin-top: 20px;
  }
  
  .blog .posts-list .read-more a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 30px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .blog .posts-list .read-more a:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
  }
  .post-box p{
    font-size: 12px;
    line-height: 18px;
  }
  .post-box .meta,.post-box p, .post-box a{
    margin-left: 15px;
    margin-bottom: 10px;
  }
  .post-box .meta{
    color: #000;
    font-weight: 600;
  }
  .post-box a{
    color: #000;
    font-size: 13px;
  }


  /* Media Query for Mobile Devices */
  @media (max-width: 480px) {
    .team .member .member-info {
        padding: 25px;
    }
    .team .member-parent{
        height: 300px;
    }
    .carousel-1 .carousel-item-1 h3{
        font-size: 20px;
        line-height: 36px;
        margin-top: 49%;
    }
    .carousel-1{
        height: 430px;
    }
    .head-content{
        padding: 3%;
    }
}
  

.type-child li{
    font-size: 13px;
    list-style: disc;
    color: #000;
    font-weight: 600;
}
.type-child-2 li{
    font-size: 13px;
    list-style:decimal;
}
.type-child,.type-child-2{
    padding: 15px;
}

.eng-card {
    width: 95%;
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    height: 94%;
  }
  
  .eng-card-image {
    text-align: center;
  }
  
  .eng-card-image img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
  }
  
  .eng-card-content {
    margin-top: 20px;
    text-align: center;
  }
  
  .eng-card-content p{
    font-size: 12px;
  }
  .eng-card-content h4{
    color: #000;
  }
  .eng-card-content span{
    color: #000;
    font-size: 16px;
    font-weight: 500;
  }


  
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
  margin-bottom: 50px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
  height: 85px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  /* color: white; */
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  /* color: rgba(255, 255, 255, 0.6); */
  color: #000;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  /* color: #d3af71; */
  color: #2222225c;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 0 15px 0 15px;
  padding: 20px;
  background: #e5edf5;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  font-size: 13px;
  min-height: 350px;
  line-height: 2;
  margin-bottom: 20px;
}
 
.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border: 1px solid #000;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
}

@media (max-width: 991px) {
  .testimonials .testimonial-item p{
    min-height: auto;
  }
}