.hero-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;

    background-color: #000;
}

.hero-wrapper .splide__arrow {
    background-color: transparent;
    transform: scale(2.2);
}
.hero-wrapper .splide__arrow--prev {
    left: 2em;
}
.hero-wrapper .splide__arrow--next {
    right: 2em;
}

.hero-wrapper .splide {
    width: 100%;
    height: 100%;
}

.hero-wrapper .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper .media-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-wrapper .media-container .hero_details {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.hero-wrapper .media-container .hero_details .hero_details_inner {
    width: 100%;
    height: 100%;
    padding-left: 10vw;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column;
    font-size: 2vw;
}

.hero-wrapper .media-container .hero_details .hero_details_inner * {
    color: #fff;
}
.hero-wrapper .media-container .hero_details .hero_details_inner .heroDetails_buttons {
    padding-top:20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
}
.hero-wrapper .media-container .hero_details .hero_details_inner .heroDetails_buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 40px;
    margin-right:40px;
    border: solid 1px #fff;
    text-decoration: none;
    font-size: 1em;
    text-transform: uppercase;
    border-radius: 50px;
}
.hero-wrapper .media-container .hero_details .hero_details_inner .heroDetails_buttons a:hover {
    background-color: #fff;
    color: #000;
}

.hero-wrapper .media-container .heroOverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.4;
    z-index: 1;
}

.hero-wrapper .media-container .hero_bg {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.media-container .hero_bg.mc_youtubeVideo>iframe {
    transform: scale(1.3);
}

.hero-wrapper .media-container .hero_bg img,
.hero-wrapper .media-container .hero_bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-wrapper .media-container .heroDetails_text p {
    padding: 0;
    margin: 0;
}