.edilh_slideshow {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.edilh_slides {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 300ms ease;
    will-change: transform;
}
.edilh_slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}
.edilh_slide_content {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    max-width: 800px;
}
.edilh_pager {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.edilh_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}
.edilh_dot.active {
    background: #fff;
}
.edilh_prev, .edilh_next {
    position: absolute;
    top: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transform: translateY(-50%);
}
.edilh_prev {
    left: 10px;
}
.edilh_next {
    right: 10px;
}

a.edil_email-link {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.edil_email-link {
    font-family: 'adobe-garamond-pro';
    font-size: 20px;
    width: 20%;
    position: absolute;
    bottom: 0px;
    right: 0;
    background: #fff;
    color: #000 !important;
    padding: 12px 20px;
    border-radius: 0px;
    text-decoration: none;
    font-weight: inherit;
    font-size: inherit;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.15); */
    z-index: 100;
    transition: all 0.3s ease;
    border: 0px solid rgba(0,0,0,0.1);
    white-space: nowrap;
}