main.page-wrapper.yachting {
    position: relative;
}

section.hero-intro-section {
    display: flex;
    align-items: center;
    height: 760px;
    position: relative;
    top: -28px;
}

.hero-intro-media {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.hero-intro-media:hover {
    margin: 0;
}

.hero-intro-media .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.10) 50%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 2;
    -webkit-transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    transition: all ease-in-out 0.5s;
}

.hero-intro-media video, .hero-intro-media img {
    width: 100%;
    height: 760px;
    object-fit: cover;
}

.hero-intro-content {
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 60%;
    z-index: 3;
}

.hero-intro-btn {
    margin-top: var(--spacing-med);
}


/* CRUMBS */

.yachting .breadcrumb-wrapper {
    position: relative;
    z-index: 3;
}

.yachting #crumbs a {
    color: var(--color-white);
}

.yachting #crumbs svg path {
    stroke: var(--Medium-Grey);
}

.yachting #crumbs span.current {
    color: var(--Medium-Grey);
}

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 576px) { 

    .hero-intro-content {
        width: 100%;
    }

    .hero-intro-btn {
        width: 100%;
        text-align: center;
    }

}