/*gallery*/

.hidden {
    display: none;
  }
  .show-more-container {
    text-align: center;
    margin-top: 20px;
  }
  .show-more-btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #008CBA;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .gallery-item {
    margin-bottom: 20px;
  }
  
  
  
  
  
  .container {
      max-width: 1200px;
      margin: 0 auto;
    }

   .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 0 24px;
  background: #565656;
}


    .gallery-item {
      width: 273px;
      height: 370px;
      background-color: #bbbbbb;
      border-radius: 12px;
      padding: 10px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap:20;
      margin-bottom: 20px;
    }

    .gallery-item img {
      width: 226px;
      height: 226px;
      background-color: white;
      object-fit: contain;
      display: block;
      border-radius: 6px;
      margin-top:15px;
    }

    .gallerytitle {
      margin-top: 15px;
      font-size: 14px;
      text-align: center;
      line-height: 1.5;
      font-family: 'FreeSetCTT',Arial,sans-serif;
      color: #565656;
      
    }

    .hidden {
      display: none;
    }

    .show-more {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }

    .show-more button {
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      background-color: #555;
      color: white;
      cursor: pointer;
    }

    .show-more button:hover {
      background-color: #333;
    }

    @media (max-width: 900px) {
      .gallery-item {
        width: 45%;
      }
    }

    @media (max-width: 600px) {
      .gallery-item {
        width: 100%;
      }
    }
    
    #moreRows {padding-top:20px;}
.show-more {margin:20px 0;}
.t454.t454__positionstatic {
  position: absolute !important;
  top: 187px !important;
}



#rec768232286 .tn-elem[data-elem-id="1684346309463"] .tn-atom:current {
    color: #c8c5c4 !important;
  }
  #rec768232286 .tn-elem[data-elem-id="1684346309463"] .tn-atom .current {
    color: #ccc;
}
    
    #rec768232286 .tn-elem[data-elem-id="1684346309463"] .tn-atom a.current {
    color: #c8c5c4 !important;
}
 #rec768232286 .tn-elem[data-elem-id="1684346309463"] .tn-atom:active {
            color:#c8c5c4 !important; /* Grey color for active state */
        }
    .t-container {
    margin: 0 auto;
    padding: 0 20px; /* Default padding for larger screens */
}
@media screen and (max-width: 980px) {
  .t454__leftwrapper, .t454__rightwrapper, .rightmenuwrapper {
      background:#e2ddcb;position: absolute !important;
  }}
  
  @media screen and (max-width: 980px) {
  .t454__leftwrapper a, .t454__rightwrapper a, .rightmenuwrapper a{font-size:18px;}}
  
  
  
      @media screen and (max-width: 980px) {
   .t454__rightwrapper {top:78px;}}
      
      @media screen and (max-width: 980px) {
  .t454__leftwrapper{top: 0px !important;}}
      
      
@media (max-width: 768px) {
    .t-container {
        background-color: #e2ddcb;
        padding: 0; /* Remove padding on mobile devices */
    }
}

@media (min-width: 769px) {
    .t-row {
        background: white;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .t-row {
        background-color: #e2ddcb;
        padding: 20px; /* Adjust padding for mobile */
    }
}

.bg {
    background: #e2ddcb; /* Consistent background color */
    height: auto;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content-wrap {
    width: 100%;
    zoom: 1.156; /* Apply zoom effect */
}

.titl {
    color: #9b596d;
    font-size: 20px;
    font-family: 'FreeSetCTT', Arial, sans-serif;
    line-height: 1.55;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 940px;
    padding: 20px;
    background-color: #bdbdbc;
    margin: auto;
    box-sizing: border-box;
}

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

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 210px; /* Width of each image */
    margin: 0 10px; /* Gap between images */
    height: 297px; /* Fixed height for slides */
}

@media (max-width: 480px) {
    .slider-container {
        padding: 0;
    }

    .slide {
        flex: 0 0 calc(100% - 20px); /* Ensure one image visible at a time */
        margin: 10px; /* Add gap between images */
    }
}

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

.arrow {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 40px;
    background-color: rgb(232, 232, 232);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
    border: none;
    font-size: 0;
}

.arrow.left {
    left: -50px;
}

.arrow.right {
    right: -50px;
}

.arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.arrow.left::before {
    border-width: 7px 12px 7px 0;
    border-color: transparent #000 transparent transparent;
}

.arrow.right::before {
    border-width: 7px 0 7px 12px;
    border-color: transparent transparent transparent #000;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.lightbox.active {
    display: flex;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .arrow {
        width: 20px;
        height: 30px;
    }

    .arrow.left {
        left: -30px;
    }

    .arrow.right {
        right: -30px;
    }
}

@media (max-width: 480px) {
    .arrow {
        width: 20px;
        height: 30px;
    }

    .arrow.left {
        left: -30px;
    }

    .arrow.right {
        right: -30px;
    }
}



.tn-elem[data-elem-id="1729186059199"] {opacity:0.2;}
