a {
  color: var(--primary-color);
}
a:visited {
  color: var(--primary-color);
}

.top-header {
  background-color: var(--primary-color);
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 10px;

  ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    li a {
      text-decoration: none;
      color: var(--color-white);
      padding: 10px 10px;
    }
  }
  .top-navigation {
    display: flex;
    justify-content: flex-end;
  }
}

.snt-header {
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.3);

  .site-branding {
    img {
      height: 70px;
      width: auto;
      object-fit: cover;
    }
  }

  .main-navigation li a {
    font-size: 1.2rem;
    padding: 22px 15px;
  }
  .main-navigation li a:hover {
    background-color: var(--primary-color);
    color: var(--color-white);
  }
}

.snt-carousel {
  position: relative;
  /* height: calc(80vh -10px); Adjust 60px to the height of your menu */
  height: 60vh;
  /* top: 60px; Same as your menu height */
  width: 100%;
}

.snt-carousel .swiper-container {
  width: 100%;
  height: 100%;
}

.snt-carousel .swiper-slide .slide-background {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.snt-carousel .swiper-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
}

.snt-carousel .swiper-slide .slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.snt-carousel .swiper-slide .slide-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.snt-carousel .swiper-slide .slide-content p {
  margin-bottom: 20px;
}

.snt-carousel .swiper-slide .slide-content .button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Adjust the navigation buttons if needed */
.snt-carousel .swiper-button-next,
.snt-carousel .swiper-button-prev {
  color: white;
  top: 50%;
  transform: translateY(-50%);
}

.snt-trip-container {
  position: relative;
  top: -50px;
  z-index: 99;
  background-color: #0c8a7b;
  border-radius: 10px;
  /* color:#fff; */

  .class-wte-advanced-search-wrapper{
    h3{
        font-size:1rem;
    }
  }
}

.snt-trips {
  background-color:#0e8a7b14;
  padding: 25px 0;
}

.trip-item{
  background-color: #fff;
  display: flex !important;
  justify-content: flex-start;
  flex-direction: column;
  border-radius: 7px;
  
  h2{
    text-decoration: none;
    font-size: 1.5rem;
  }
  a{
    text-decoration: none;
  }
  img{
    height:200px;
    width: auto;
    object-fit: cover;    
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;

  }
  .trip-description{
    padding:10px;
  }
  .trip-meta{
    border-top:1px solid #68706f52;
    margin-top:10px;
    padding-top:10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     h2{
      font-weight: 500 I !important;
     }
    h2,h3{
      font-size:1rem;
      color:#68706f;
      font-weight: 300;
      margin:0;
    }
    a{
      background-color:var(--primary-color);
      color:#fff;padding:5px 7px;
      border-radius: 4px;
    }

  }
}

.security-item{
  h2{
    font-size:1.3rem;
  }
  img{
    width: 85px;
    height: 100px;
    object-fit: cover;
  }
}

.security-item:nth-child(even) {
  border-right: 1px solid #eff6f5;
  padding: 10px;
  margin-bottom: 15px;
  border-left: 1px solid #eff6f5;
}


.travel-item{
  img{
    height:200px;
  }
  h2{
    font-size:1.3rem;
    padding:10px 0;
  }
  a{
    text-decoration: none;
  }
}



.snt-footer{
  a{
    color:#fff;
    text-decoration:none;
  }
  ul{
    
  }
}