.c-header {
    height: 25vh;
    position:relative;
}
.c-logo {
    position: absolute;
    padding: 20px;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    max-width: 80%;
}

.c-slider {
    overflow: hidden;
    height: 50vh;
}

.c-slider__item {
    display: block;
    height: 50vh;
    width: 33.333333%;
    background-color: #314149;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;

}

.c-slider__mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #314149;
    opacity: 0.7;
    z-index: 1;
    transition: all 0.4s ease;
}
.c-slider__item:hover .c-slider__mask,
.c-slider__item.slick-current .c-slider__mask {
    opacity: 0.94;
}

.c-slider__info {
    font-family: Arial, "sans-serif";
    line-height: 1.4;
    padding: 50px 40px 0px 50px;
    z-index: 10;
    opacity: 0;
    transition: all 0.4s ease;
    color: #fff;
    position: absolute;
    top:0;
    left:0;
    overflow: hidden;
}
.c-slider__item:hover .c-slider__info,
.c-slider__item.slick-current .c-slider__info {
    opacity: 1;
}

.c-slider__heading {
    font-size: 2.4vh;
    padding-bottom: 16px;
    font-weight:bold;
}

.c-slider__text {
    margin-bottom: 20px;
    font-size: 1.8vh;
    line-height:1.4;
}

.c-slider__domain {
    font-size: 2.2vh;
    text-decoration: underline;
}

.c-slider__logo {
    z-index: 3;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.c-footer {
    position: relative;
    height: 25vh;
    color: #535353;
    font-family: Arial, sans-serif;
}
.c-footer__text {
    position: absolute;
    padding: 20px;
    width: 100%;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    font-size: 2vh;
    line-height:1.4;
}
.c-footer a {
    color: #535353;
}
