@charset "UTF-8";
/* CSS Document */

.dydSliderContainer {
    min-height: 400px;
}
.dydSlider {
    background-color: #fff;
}
.dydSlider .carousel-cell {
    width: 100%;
    height: 70vh;
    counter-increment: gallery-cell;
    position: relative;
    overflow: hidden;
}
.dydSlider .carousel-cell figure {
    height: 70vh;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 1;
    width: 100%;
}
.dydSliderTitle {
    position: absolute;
    z-index: 3;
    bottom: 10vh;
    right: 5vw;
    font-size: 2rem;
    width: 55vw;
    text-align: right;
    color: rgba(255,255,255,.75);
    font-weight: 700;
    padding: 0;
}
@media (max-width: 750px){ 
    .dydSliderTitle {
        font-size: 1.5rem;
        padding: 0 1.2em;
    }
}
.dydSlider .carousel-cell .overFigure {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: 0;
    background-color: rgba(117,196,219,0.5);
    transition: all ease 1.2s;
}
.dydSlider .carousel-cell a:hover .overFigure {
    width: 50%;
}
.dydSlider .flickity-page-dots {
  bottom: 22px;
}
.dydSlider .flickity-page-dots .dot {
  height: 4px;
  width: 40px;
  margin: 0;
  border-radius: 0;
  background: #fff;
}
.dydSliderContainer .buttonRow {
    text-align: right;
    padding-right: 30px;
}
.dydSliderContainer .button {
    border: none;
    background-color: transparent;
    color: #004f3f;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all ease-in-out .5s;
}
.dydSliderContainer .button:hover {
    color: #95c11f;
}
.dydSlider .flickity-button {
    background-color: transparent !important;
    border: none;
    padding: 0;
}
.dydSlider .flickity-button .flickity-button-icon {
    display: none !important;
}
.dydSlider .flickity-prev-next-button {
    top: 0 !important;
    width: 20% !important;
    height: 100% !important;
    border-radius: 0px !important;
    transform: none !important;
}
.dydSlider .flickity-prev-next-button.next {
    right: 0 !important;
}
.dydSlider .flickity-prev-next-button.previous {
    left: 0 !important;
}
