@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap");
.testimonials {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  font-family: "Poppins", sans-serif;
  background-color: black;
}
.testimonials::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background: black;
}
.testimonials .title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding: 20px 0;
  max-width: 600px;
  margin: 0 auto;
}
.testimonials .title h5 {
  color: #eb2f2f;
  line-height: 1.2em;
  font-size: 18px;
  font-weight: 100;
  margin-bottom: -3px;
}
.testimonials .title h2 {
  color: white;
  line-height: 1.2em;
  font-weight: 100;
  font-size: 41px;
  letter-spacing: -1px;
  margin: 0;
}
.testimonials .title img {
  margin-top: -10px;
}
.testimonials .title p {
  margin: 0 0 10px;
  margin-bottom: 0;
  color: #5a3733;
}
.testimonials .testi .item {
  background: rgb(34,193,195);
  background: linear-gradient(0deg, rgba(253,187,45,1) 0%, rgba(34,193,195,1) 100%);
  padding: 50px 30px;
  border-radius: 15px;
}
.testimonials .testi .item .profile {
  display: flex;
  padding-left: 15px;
}
.testimonials .testi .item .profile img {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.testimonials .testi .item .profile .information {
  padding-left: 20px;
  margin-bottom: 15px;
}
.testimonials .testi .item .profile .information .stars i {
  color: #ffd832;
}
.testimonials .testi .item .profile .information p {
  font-size: 24px;
  margin: 0 auto 0;
  color: white;
  font-weight: 900;
  line-height: 1;
}
.testimonials .testi .item .profile .information span {
  color: rgb(78, 76, 76);
  font-weight: bold;
  margin-top: -4px;
  line-height: 1.6em;
  font-size: 14px;
}
.testimonials .testi .item > p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6em;
  display: block;
  z-index: 2;
  font-style: italic;
  color: #5a3733;
  text-align: center;
}
.testimonials .testi .item .icon {
  text-align: center;
}
.testimonials .testi .item .icon i {
  font-size: 32px;
  color: #5a3733;
}
h2 {
  text-align: center;
  padding: 20px;
}
.slick-slide {
  margin: 0 20px;
}
.slick-slide img {
  width: 100%;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.clients {
  display: grid;
  place-items: center;
}
.clients h1 {
  font-size: 3rem;
  padding: 20px;
  margin: 20px 0;
}
.slidersss {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60%;
  width: 85%;
  overflow: hidden;
}
.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: scrolling 10s linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(120%);
  }
}
.slider-items img {
  width: 12%;
  margin: 10px;
}






/* gallery  */

#carousel-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.carousel-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 20%; /* Adjust the width of each column */
  padding: 10px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.small {
  height: 20vh; /* Adjust the height as per design */
}

.gallery-item.large {
  height: 35vh; /* Adjust the height as per design */
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}


.next,
.prev{
  
  color:rgb(209, 205, 205);
  -webkit-text-stroke:1px black;
  font-size: 5rem;
  cursor: pointer;
}





.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  position: relative;
}



.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@media (max-width:480px) {
  .gallery-item{
    width: 50%;
  }
  .gallery-item.small{
    width: 30vw;
  }
  .gallery-item.large{
    width: 30vw;
  }
  .next,
.prev{
  border: none;
  color:rgb(209, 205, 205);
  -webkit-text-stroke:1px black;
  font-size: 3rem;
  cursor: pointer;
  height: 100%;
  background-color: #fff;
}
}

@media (max-width:600px) {
  .gallery-item{
    width: 50%;
  }
  .gallery-item.small{
    width: 30vw;
  }
  .gallery-item.large{
    width: 30vw;
  }
  .next,
.prev{
  border: none;
  color:rgb(209, 205, 205);
  -webkit-text-stroke:1px black;
  font-size: 3rem;
  cursor: pointer;
}
}
@media (max-width:780px) {
  .gallery-item{
    width: 50%;
  }
  .gallery-item.small{
    width: 30vw;
  }
  .gallery-item.large{
    width: 30vw;
  }
  .next,
.prev{
  border: none;
  color:rgb(209, 205, 205);
  -webkit-text-stroke:1px black;
  font-size: 3rem;
  cursor: pointer;
}
}
@media (max-width:1024px) {
  .gallery-item{
    width: 50%;
  }
  .gallery-item.small{
    width: 30vw;
  }
  .gallery-item.large{
    width: 30vw;
  }
  .next,
.prev{
  border: none;
  color:rgb(209, 205, 205);
  -webkit-text-stroke:1px black;
  font-size: 3rem;
  cursor: pointer;
}
}

/* Services */
.serviceimg{
  width: 100%;
  
}
.serviceimg img{
  width: 100%;
  border-radius: 10px;
}