* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-new {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.carousel-new img {
  height: 200px;
  width: auto;
  margin: 0 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-new img:hover {
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.modal-body img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

/* section memory start */
.memory-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #333;
}

.main_memory {
  background-image: url(../assets/cover_pictures/cover_memory.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover_overley {
  padding: 80px;
  background-color: rgba(0, 0, 0, 0.8);

}

.main-section {
  margin-top: 90px;
}

/* section memory end */


/* testimonial start */
.main_testimonial {
  background-image: url(../assets/cover_pictures/cover_testimonial.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px;
}

.testimonial-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  height: 100%;
}

.testimonial-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 10px;
}

.stars {
  color: rgb(250, 212, 0);
}

/* testimonial end */

/* working comm start */
.main_working_community {
  background-color: #e5e5e5;
  padding: 50px;

}

.main_team_member {
  background-color: #efefef;
  /* padding: 50px; */
}

.torn_image {
  width: 100%;
}

.torn_image img {
  width: 100%;
  height: 100%;
}

#pagination_page {
  background-color: #efefef !important;
  /* border: 1px solid black !important; */
  padding: 30px
}

.main_events {
  padding: 50px;
}

.img-box {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.section_middle {
  background-image: url(../assets/cover_pictures/cover_middle.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.overley_middle {
  /* background-color: rgba(20, 20, 20, 0.1); */
}

.img-small {
  height: 140px;
}

.img-large {
  height: 300px;
}






.image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.position-relative .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgb(0, 114, 228, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border:none
}

.play-btn i {
  color: white;
  font-size: 30px;
}



.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  /* margin-bottom: 1rem; */
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li::before {
  content: '✔️';
  margin-right: 8px;
  color: green;
}

/*.cover_main{*/
/*  background-image: url(../assets/cover_pictures/main_cover.png);*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  background-repeat: no-repeat;*/
/*  height: 100vh;*/
/*}*/


.myCarousel {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.myCarousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.myCarousel-item {
    width: 100%;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
}

.myCarousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Buttons */
.myCarousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 40%;
}

.myCarousel-btn.prev {
    left: 10px;
}

.myCarousel-btn.next {
    right: 10px;
}

.myCarousel-btn:hover {
    background: rgba(0,0,0,0.7);
}

.myCarousel-dots {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.myCarousel-dots .dot {
    width: 12px;
    height: 12px;
    background: rgb(60, 60, 60, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.myCarousel-dots .dot.active {
    background: rgb(255, 255, 255, 0.6);
    transform: scale(1.3);
}



.myCarousel-caption {
    position: absolute;
    top: 50%;                    /* center vertically */
    left: 5%;                    /* align left side */
    transform: translateY(-50%); /* perfect vertical center */
    color: white;
    max-width: 50%;              /* keep text readable */
}

.myCarousel-caption h1 {
    font-size: 2rem;
    font-weight: bold;
    /*margin: 0 0 10px;*/
}

.myCarousel-caption p {
    font-size: 1.2rem;
    margin: 0;
}


@media (max-width: 767px) {
  .img-small {
    height: 120px;
  }

  .respon {
    text-align: center;
  }

  .read_more {
    text-align: center;
  }

  .img-large {
    height: 200px;
  }
}