:root {
    /* --indian-red: #eb5757; */
    --indian-red: #ab4040;
    --white-smoke: #f9f9f9;
    --calaba: #14140c;
    --calabazaoscuro: #d17603;
    --calabaza: #da8f02;
    --dim-grey: #525252;
    --brown: #ab4040;
    --gold: #ffde03;
    --red: #e53935;
    --steel-blue: #1976d2;
    --medium-sea-green: #20c788;
    --conversion-flow-library--medium-purple: #b16cea;
    --conversion-flow-library--light-coral: #ff5e69;
    --conversion-flow-library--sandy-brown: #ffa84b;
    --cafeoscuro: #3b1a0b;
    --fontName: Tropikal;
    --font2Name: Nunito;
    --navbar-bck: #880702 ;
    --navbar-bck-hover: #4d180a;
  
  }
  
  /* @font-face {
    font-family: 'Sage';
    src: url(../assets/webfonts/sage-webfont.ttf) format('truetype');
  } */
  
  @font-face {
    font-family: 'Tropikal';
    src: url(/assets/webfonts/Tropikal-Bold.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Nunito';
    src: url(/assets/webfonts/Nunito-VariableFont_wght.ttf) format('opentype');
    font-weight: normal;
    font-style: normal;
  }

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    font-family: var(--fontName2);
}
.gallery-item {
    width: 280px;
    margin: 10px;
    border: 1px solid #a8a8a8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f5f5f5;
}
.gallery-media-container {
    position: relative;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
}
.gallery-image, .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.carousel-button {
    position: absolute;
    bottom: 5%;
    transform: translateY(-50%);
    background-color: rgba(100, 149, 237, 0.7);
    color: white;
    border: none;
    padding: 2px;
    cursor: pointer;
    font-size: 2px;
    border-radius: 50%;
    z-index: 10;
}
.carousel-button.prev {
    left: 10px;
}
.carousel-button.next {
    right: 10px;
}
.gallery-caption {
    padding: 15px;
    font-size: 12px;
    height: 120px;
    overflow-y: auto;
    background-color: #e9f7ef;
    color: #2c3e50;

}
.gallery-caption::-webkit-scrollbar {
    width: 1vw;
}
.gallery-caption::-webkit-scrollbar-track {
    
    border-radius: 10px;
}
.gallery-caption::-webkit-scrollbar-thumb {
    background-color: #e5e7e7;
    border-radius: 5px;
}
.carousel-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(100, 149, 237, 0.7);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    z-index: 10;
}
