.gallery-container {
    margin: 0;
    background: #000000;
    display: grid;
    place-items: center;
    max-width: 100%;
    overflow: hidden;
}

.gallery {
    display: flex;
    width: 100%;
    min-height: 55rem;
    max-width: 60rem;
}

.gallery img,
.gallery div.video {
    min-width: 0;
    flex: 1 1 5px;
    object-fit: cover;
    opacity: 0.5;
    transition: 0.5s;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
a {
    cursor: pointer;
}

.gallery img:hover {
    flex: 1 1 300px;
    opacity: 1;
}
.gallery div.video:hover {
    flex: 1 1 350px;
    opacity: 1;
}
.reset-button {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
}
.btn.btn-theme {
    color: #181c32;
    border-color: #ffc952;
    background-color: #ffc952;
}

.btn.btn-theme:hover:not(.btn-active),
.show > .btn-theme {
    color: #181c32;
    border-color: #febc2b;
    background-color: #febc2b !important;
}
.mt-36 {
    margin-top: 10rem;
}
.collapse.show {
    visibility: visible;
}
