.gallery-photos_1{
    position: relative;
    height: 71vh;
    min-height: 480px;
    max-height: 750px;
    width: 100%;
    margin: 0 auto 25px;
}
.carousel-section-vertical {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.carousel-section-horizontal {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.carousel-section__image {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
}

.carousel-section__track-container {
    /* background: lightgreen; */
    background: white;
    height: 100%;
    overflow: hidden;
}

.carousel-section__track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;  
}
.carousel-section__slide {
    position: absolute;
    width: 100%;
    height: 100%;
}
.progress-section-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px; 
    width: 0;
    background-color: var(--primary-color); 
    transition: width 4.5s ease;
}
.carousel-section__slide a {
    position: absolute;
    bottom: 25px;
    color: var(--primary-color);
    background-color: #fff;
    font-family:'Montserrat', 'sans-serif';
    font-size: 1.4rem;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px);
    right: calc(50vw - 90px);
}
.animate-section-button--complementary {
    animation: slideUp 1s ease-out 1s forwards;
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.carousel-section__slide a:hover{
    color: #fff;
    background-color: var(--primary-color);
}
.carousel-section__button{
    border: 0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.849);
    display: none;
}
.carousel-section__button--left{
    position: absolute;
    border-radius: 10px;
    top: calc(50% - 40px);
    left: 10px;
}
.carousel-section__button--right{
    position: absolute;
    border-radius: 10px;
    top: calc(50% - 40px);
    right: 10px;
}
.carousel-section__button img{
    width: 30px;
}

.carousel-section__nav--vertical{
    /* background: pink; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-block-start: 15px;
}
.carousel-section__nav--horizontal{
    /* background: pink; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-block-start: 15px;
}

.carousel-section__indicator--vertical:hover, .carousel-section__indicator--horizontal:hover{
    background: #999595b7;
}
.carousel-section__indicator--vertical.current-section-slide h4{
    font-size: 1.2rem;
    font-weight: 700;
    font-family:'Montserrat', 'sans-serif';
    color: var(--primary-color);
}
.carousel-section__indicator--horizontal.current-section-slide, .carousel-section__indicator--vertical.current-section-slide{
    background-color: var(--primary-color);
}
.carousel-section__indicator--horizontal, .carousel-section__indicator--vertical{
    border: none;
    border-radius: 10px;
    background: #cfcdcd94;
    cursor: pointer;
    width: 7px;
    height: 7px;
    margin: 7px;
}

.carousel-section__controls {
    position: absolute;
    bottom: 10px;
    right: 0%;
    transform: translateX(-20%);
    display: flex;
    gap: 10px;
}

.carousel-section__controls button {
    background: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    cursor: pointer;
}
