.count-text.small-text {
    font-size: 22px;
}

.counter-item.style-three{
    padding: 40px 30px;
    height: 290px;
}

.overlay::before{
    opacity: 0.5;
}

.main-menu .navbar-collapse{
    padding-right: 120px;
}

.whatsapp-link {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  z-index: 1000; /* Ensures it's on top of other content */
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the image scales correctly */
}



/* widget */

.slider-wrapper {
  width: 100%;
  height: 100vh !important;
  background-color: #34495e;
  display: flex;          /* Use Flexbox for centering */
  justify-content: center; /* Center horizontally */
  align-items: center;    /* Center vertically */
}

.slider-wrapper .content {
  height: 390px; /* Adjusted height to fit 6 items with increased font size */
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-size: 65px; /* Increased font size */
  line-height: 70px; /* Adjusted line-height */
  color: #ecf0f1;
  position: relative; /* Remove absolute positioning */
  padding-top: 75px;
}

.slider-wrapper .content__container {
  font-weight: 600;
  overflow: hidden;
  height: 70px; /* Adjusted height */
  padding: 0 40px;
}

.slider-wrapper .content__container:before {
  content: "[";
  left: 0;
}

.slider-wrapper .content__container:after {
  content: "]";
  position: absolute;
  right: 0;
}

.slider-wrapper .content__container:after,
.slider-wrapper .content__container:before {
  position: absolute;
  top: 0;
  color: #16a085;
  font-size: 72px; /* Adjusted font size */
  line-height: 70px; /* Adjusted line-height */
  -webkit-animation-name: opacity;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-name: opacity;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  padding-top: 75px;
}

.slider-wrapper .content__container__list {
  margin-top: 0;
  text-align: center; /* Center align the text */
  
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align items */
  -webkit-animation-name: change;
  -webkit-animation-duration: 15s; /* Adjusted for 6 items */
  -webkit-animation-iteration-count: infinite;
  animation-name: change;
  animation-duration: 15s; /* Adjusted for 6 items */
  animation-iteration-count: infinite;
}

.slider-wrapper .content__container__list__item {
  line-height: 70px; /* Adjusted line-height */
  margin: 0;
}

@-webkit-keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes change {
  0%, 13.33%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 30% {
    transform: translate3d(0, -16.66%, 0);
  }
  33.33%, 46.66% {
    transform: translate3d(0, -33.33%, 0);
  }
  50%, 63.33% {
    transform: translate3d(0, -50%, 0);
  }
  66.66%, 80% {
    transform: translate3d(0, -66.66%, 0);
  }
  83.33%, 96.66% {
    transform: translate3d(0, -83.33%, 0);
  }
}

@keyframes opacity {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes change {
  0%, 13.33%, 100% {
    transform: translate3d(0, 0, 0);
  }
  16.66%, 30% {
    transform: translate3d(0, -16.66%, 0);
  }
  33.33%, 46.66% {
    transform: translate3d(0, -33.33%, 0);
  }
  50%, 63.33% {
    transform: translate3d(0, -50%, 0);
  }
  66.66%, 80% {
    transform: translate3d(0, -66.66%, 0);
  }
  83.33%, 96.66% {
    transform: translate3d(0, -83.33%, 0);
  }
}

@media (max-width: 768px) {
  .slider-wrapper .content {
    font-size: 25px; /* Adjust font size for mobile devices */
    line-height: 30px; /* Adjust line-height for mobile devices */
  }
  
  
}

@media only screen and (min-width: 1200px) {
  .main-footer.footer-one .widget-links {
    
    margin-left: 0;
    
  }
}