/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Base Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.myscrollSwiper {
    overflow: hidden;
    position: relative;
}

 .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%!important;
      object-fit: cover;
    }
    
    
.video-slider .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.video-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}











/* Example CSS for accordion */
/* Example CSS for accordion with responsive controls */
.accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-title {
    background: #f4f4f4;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-title .accordion-icon {
    margin-right: 10px;
}

.accordion-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .accordion-title {
        font-size: 14px;
    }

    .accordion-content {
        font-size: 12px;
    }
}









.spacer {
    border: 1px solid red;
    width: 100%;
    height: 40px;
    overflow: hidden;
    position: relative;
}
.scrolling-text {
        display: inline-block;
        white-space: nowrap; 
     
 }
    


.animOne {
  color: #333;
  font-family: tahoma;
  font-size: 3rem;
  font-weight: 100;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 550px;
}

.animOne span {
  font-size: 40px;
  margin-left: 40px;
}

.animOne .message {
  background-color: yellow;
  color: #333;
  display: block;
  font-weight: 900;
  overflow: hidden;
  position: absolute;
  padding-left: 0.5rem;
  top: 0.2rem;
  left: 270px;
  animation: openclose 5s ease-in-out infinite;
}

.word1, .word2, .word3 {
  font-family: tahoma;
}

@keyframes openclose {
  0% {
    top: 0.2rem;
    width: 0;
  }
  5% {
    width: 0;
  }
  15% {
    width: 230px;
  }
  30% {
    top: 0.2rem;
    width: 230px;
  }
  33% {
    top: 0.2rem;
    width: 0;
  }
  35% {
    top: 0.2rem;
    width: 0;
  }
  38% {
    top: -4.5rem;
  }
  48% {
    top: -4.5rem;
    width: 190px;
  }
  62% {
    top: -4.5rem;
    width: 190px;
  }
  66% {
    top: -4.5rem;
    width: 0;
    text-indent: 0;
  }
  71% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  86% {
    top: -9rem;
    width: 285px;
  }
  95% {
    top: -9rem;
    width: 285px;
  }
  98% {
    top: -9rem;
    width: 0;
    text-indent: 5px;
  }
  100% {
    top: 0;
    width: 0;
    text-indent: 0;
  }
}

    
    
/* second heading */

.w3hints-first-text, .w3hints-second-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}

.w3hints-first-text {
    animation: showup 7s infinite;
}

.w3hints-second-text {
    width: 0px;
    animation: reveal 7s infinite;
}

.w3hints-second-text span {
    margin-left: -355px;
    animation: slidein 7s infinite;
}

@keyframes showup {
    0% {opacity: 0;}
    20% {opacity: 1;}
    80% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes slidein {
    0% { margin-left: -800px; }
    20% { margin-left: -800px; }
    35% { margin-left: 0px; }
    100% { margin-left: 0px; }
}

@keyframes reveal {
    0% { opacity: 0; width: 0px; }
    20% { opacity: 1; width: 0px; }
    30% { width: 355px; }
    80% { opacity: 1; }
    100% { opacity: 0; width: 355px; }
}

    
    
/* Basic Menu Styling */
.w3hints-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.w3hints-menu li {
    margin-left: 20px;
}

.w3hints-menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    display: block;
}

.w3hints-menu a:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* Responsive Menu Toggle Button */
.menu-toggle, .menu-close {
    display: none;
    background-color: transparent;
    color: #333;
    border: none;
    cursor: pointer;
    font-size: 32px;
    position: absolute;
    padding: 4px 12px;
    border: 1px solid #333;
    right: 0px;
    z-index: 1000;
}

/* Display the close button only when menu is active */
.menu-close {
    display: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .w3hints-menu {
        display: none;
        flex-direction: column;
        width: 250px;
        height: 100%;
        position: fixed;
        top: 0;
        right: -250px;
        background-color: #fff;
        z-index: 999;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .w3hints-menu.active {
        right: 0;
    }

    .w3hints-menu li {
        margin: 0;
        padding: 0px 0;
    }

    /* Show the close button when the menu is active */
    .menu-toggle.active {
        display: none;
    }

    .menu-close.active {
        display: block;
    }
}

   
   
.listView_posts {
    margin: 0;
    padding: 0;
}

.listView_post_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listView_post_thumbnail {
    flex: 0 0 15%; /* Image takes up 30% of the width */
    margin-right: 20px;
}

.listView_post_thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.listView_post_content {
    flex: 1;
}

.listView_post_title {
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.listView_post_title a {
    color: inherit;
    text-decoration: none;
}

.listView_post_title a:hover {
    text-decoration: underline;
}

.listView_post_excerpt {
    margin-bottom: 10px;
    color: #666;
}

.listView_read_more {
    font-weight: bold;
    text-decoration: none;
    color: #0073aa;
    transition: color 0.3s ease;
}

.listView_read_more:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .listView_post_item {
        flex-direction: column;
    }

    .listView_post_thumbnail {
        margin-right: 0;
        margin-bottom: 15px;
        flex: none;
    }
}
 
