.aleks-gallery {
    padding: 0 1.125rem;
}

.aleks {
    background: rgba(24, 24, 27, 0.79);
    padding: 6.3em 1.5rem;
}

.aleks-title {
    font-family: JoselinSansBold, sans-serif;
    font-size: 5rem;
    color: #f7eedd;
    text-align: center;
    margin-bottom: 1.2em;
}

.aleks h2 {
    font-size: 2rem;
    color: #a27845;
    text-align: center;
    margin-bottom: 2rem;
}

.aleks-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 5rem;
    padding-top: 3.9em;
    gap: 2rem;
}

.aleks-image {
    max-width: 100%;
    height: auto;
}

.aleks-description {
    width: 50%;
    min-width: 18.75rem;
}

.aleks-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 1rem;
}

.aleks-text-bottom {
    font-family: JoselinSansBold, sans-serif;
    font-size: 1.25rem;
    line-height: 1.75;
    color: #fff;
    margin-top: 2rem;
}

.gallery-title {
    font-size: 4.375rem;
    color: #f7eedd;
    margin-top: 6.44rem;
    margin-bottom: 8rem;
    text-align: center;
}

.images {
    display: flex;
    flex-direction: column;
    gap: 1.6em;
    margin: 0 auto 8em;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
}

.image {
    flex: 1 1 calc(25% - 1rem);
    max-width: 13.75rem;
    box-shadow: 4px 3px 10px 0 rgba(247, 238, 221, 0.25);
}

.images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 3/4;
    /*box-shadow: 4px 3px 10px 0 rgba(247, 238, 221, 0.25);*/
    cursor: pointer;
    transition: transform 0.3s ease;
}

.images img:hover {
    transform: scale(1);
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* The Modal (background) */
.modal-artists {
    display: none;
    position: fixed;
    z-index: 11111;
    padding-top: 1.125rem;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.99);
}

/* Modal Content */
.modal-content-aleks {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 50%;
    max-width: 1200px;
}

.mySlides img {
    max-height: 97vh;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: -8px;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1rem;
    margin-top: -3.125rem;
    color: white;
    font-weight: bold;
    font-size: 3.125rem;
    transition: 0.6s ease;
    border-radius: 3px 0 0 3px;
    user-select: none;
    -webkit-user-select: none;
}

.prev {
    left: -4.063rem
}


.next {
    right: -4.063rem;
    border-radius: 0 3px 3px 0;
}

.prev:hover {
    background: linear-gradient(270deg, #461111 0%, rgba(172, 42, 42, 0.8) 100%);
}

.next:hover {
    background: linear-gradient(90deg, #461111 0%, rgba(172, 42, 42, 0.8) 100%);
}

.numbertext {
    color: #f2f2f2;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    position: absolute;
    top: 0;
}

.caption-container {
    text-align: center;
    background-color: black;
    padding: 0.125rem 1rem;
    color: white;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* DOTS */
.dot-container {
    text-align: center;
    padding: 2rem 0;
    display: none;
}

.dot {
    height: 0.75rem;
    width: 0.75rem;
    margin: 0 0.3rem;
    background-color: #f7eedd66;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Dot activo (seleccionado) */
.dot.active {
    background-color: #f7eedd;
}

/* Hover (solo cambia si no es activo) */
.dot:not(.active):hover {
    background-color: #f7eeddcc;
}

