.hydra-related {
    margin: 0 auto;
    width: 100%;
    display: block;
    max-width: 1600px;
    overflow: hidden;
    --FONT-SIZE: 14px;
    --FONT-CLARINS: "ClarinsRegular", "Clarins";
    --FONT-GOTHAM-XLIGHT: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
    --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
    font-family: var(--FONT-GOTHAM-BOOK);
    color: #333333;
    --WIDTH-ANIM: 1600px;
    position: relative;
}

@media(max-width:1600px) {
    .hydra-related {
        --WIDTH-ANIM: calc(100vw - 20px);
    }
}

@media(max-width:1024px) {
    .hydra-related {
        --WIDTH-ANIM: 100vw;
    }
}

@media(max-width:761px) {
    .hydra-related {
        --WIDTH-ANIM: 100vw;
    }
}

/*********************************************************/

.hydra-related__content {
    padding: calc(70 / 1600 *var(--WIDTH-ANIM));
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;

}

.hydra-related__background {
    display: block;
    width: 100%;
    height: 775px;
    overflow: hidden;
}

.hydra-related__background img {
    display: block;
    width: 1600px;
    position: absolute;
    top: 0;
    left: calc(50% - 800px)
}

.hydra-related__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: calc(35 / 1600 *var(--WIDTH-ANIM));
    line-height: 1em;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: calc(10 / 1600 *var(--WIDTH-ANIM));
    text-align: center;
    color: #004f6c;
}

.hydra-related__title strong {
    font-size: calc(48 / 1600 *var(--WIDTH-ANIM));
    font-weight: normal;
    /*font-family: var(--FONT-GOTHAM-MEDIUM);*/
    line-height: 1.2em;
}

.hydra-related__text {
    display: flex;
    flex-direction: column;
    font-size: calc(14 / 1600 *var(--WIDTH-ANIM));
    line-height: 1.4em;
    line-height: 2em;
    margin: 0;
    margin-top: 0.5em;
    text-align: center;
    color: #004f6c;
    letter-spacing: 0.15em;
}


.hydra-related__slider {
    top: calc(250 / 1600 *var(--WIDTH-ANIM)) !important;
    position: absolute !important;
    width: 1350px !important;
    left: calc(50% - 675px) !important;
}

.hydra-related__card {}


.hydra-related__card-visual {
    width: calc(100% + 40px);
    margin: -20px;
    margin-bottom: 20px;
    background-color: #fff;
    overflow: hidden;
}

.hydra-related__card-visual img {
    width: 100%;
    display: block;
    transition: transform ease-in-out 0.5s;
}

.hydra-related__card:hover img {
    transform: scale(1.1);
}

.hydra-related__card a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    width: 294px;
    height: 454px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    margin: 0 auto;
}

.hydra-related__card-title {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    margin-bottom: 8px;
}

.hydra-related__card-text {
    margin: 0;
    font-size: 14px;
    flex: 1;
    line-height: 1.4em;
}

.hydra-related__card-link {
    margin: 0;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.4em;
    font-family: var(--FONT-GOTHAM-MEDIUM);
    color: #333;
    text-transform: uppercase;
    text-decoration: underline;
}

@media(max-width:1350px) {
    .hydra-related__slider {
        position: absolute !important;
        width: calc(100% - 20px) !important;
        left: 10px !important;
        padding-bottom: 40px !important;
    }

    .hydra-related__card a {
        width: calc(25vw - 25px);
        height: 37vw;
    }

    .hydra-related__slider .slick-slide {
        padding: 10px;
    }
}


@media(max-width:1023px) {
    .hydra-related__slider {
        position: absolute !important;
        width: 100% !important;
        left: 0 !important;
        padding-bottom: 40px !important;
    }

    .hydra-related__card a {
        width: 33vw;
        height: 55vw;
    }

    .hydra-related__slider .slick-slide {
        padding: 0px;
        margin-bottom: 20px;
    }
}

@media(max-width:761px) {

    .hydra-related__background {
        display: block;
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .hydra-related__background img {
        display: block;
        width: 100vw;
        position: relative;
        top: 0;
        left: 0;
    }

    .hydra-related__slider {
        top: calc(200 / 375 *var(--WIDTH-ANIM)) !important;
    }

    .hydra-related__content {
        padding: calc(40 / 375 *var(--WIDTH-ANIM)) calc(20 / 375 *var(--WIDTH-ANIM));
    }

    .hydra-related__title {
        font-size: calc(24 / 375 *var(--WIDTH-ANIM));
        margin-bottom: calc(10 / 375 *var(--WIDTH-ANIM));
    }

    .hydra-related__title strong {
        font-size: calc(35 / 375 *var(--WIDTH-ANIM));
    }

    .hydra-related__text {
        font-size: calc(12 / 375 *var(--WIDTH-ANIM));
        margin-top: calc(20 / 375 *var(--WIDTH-ANIM));
        width: calc(180 / 375 *var(--WIDTH-ANIM));
    }



    .hydra-related__card-title {
        margin: 0;
        font-size: 14px;
        font-weight: normal;
        font-family: var(--FONT-GOTHAM-MEDIUM);
        margin-bottom: 8px;
    }

    .hydra-related__slider {
        position: absolute;
        width: 100%;
        left: 0;
        padding-bottom: 40px;
    }

    .hydra-related__card a {
        width: 100%;
        height: calc(370 / 375 *var(--WIDTH-ANIM));
    }

}

/*********************************************************/

.hydra-related__slider.slick-dotted {
    margin-bottom: 0;
}

.hydra-related__slider .slick-dots {
    position: absolute;
    display: flex;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    justify-content: center;
    margin: 0;
}

.hydra-related__slider .slick-dots li button {
    opacity: 0;
}

.hydra-related__slider .slick-dots li {
    background-color: #004f6c;
    padding: 0;
    margin: 3px;
    width: 10px;
    height: 10px;
    overflow: hidden;
    border-radius: 5px;
    display: block;
    cursor: pointer;
}

.hydra-related__slider .slick-dots li.slick-active {
    background-color: #fff;
}