.em-hero {
    position: relative;
    width: 100%;
    margin: 0;
    background: #111;
    overflow: hidden;
}
.em-hero__track {
    position: relative;
    width: 100%;
    min-height: 70vh;
    height: 70vh;
}
@media screen and (min-width: 960px) {
    .em-hero__track {
        min-height: 800px;
        height: 800px;
    }
}
@media screen and (max-width: 767px) {
    .em-hero__track {
        min-height: 500px;
        height: 62vh;
    }
}
.em-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
    z-index: 1;
    pointer-events: none;
}
.em-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
}
.em-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.em-hero__overlay {
    display: none;
}
.em-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 40px 30px 40px 60px;
    color: #fff;
}
.em-hero__headline {
    margin: 0 0 30px;
    color: #fff;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: normal;
    max-width: 18em;
}
.em-hero__sub {
    margin: -10px 0 30px;
    color: #fff;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.3;
    max-width: 28em;
}
.em-hero__cta {
    display: inline-block;
    margin-top: 0;
    padding: 0.8em 1.5em;
    border: 2px solid #fff;
    border-radius: 99px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 1199px) {
    .em-hero__content {
        padding: 40px 30px 40px 40px;
    }
    .em-hero__headline {
        font-size: 24px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 700px) {
    .em-hero__content {
        padding: 40px 25px;
    }
    .em-hero__headline {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .em-hero__sub {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .em-hero__cta {
        font-size: 13px;
    }
}
.em-hero__cta:hover,
.em-hero__cta:focus {
    background: #111;
    color: #fff;
}
.em-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.45);
}
.em-hero__arrow:hover {
    color: #fff;
}
.em-hero__arrow::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.em-hero__arrow--prev {
    left: 12px;
}
.em-hero__arrow--prev::before {
    transform: rotate(-135deg);
    margin-left: 10px;
}
.em-hero__arrow--next {
    right: 12px;
}
.em-hero__arrow--next::before {
    transform: rotate(45deg);
    margin-left: 8px;
}
.em-hero__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    z-index: 5;
    text-align: center;
}
.em-hero__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 4px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(150, 150, 150, 0.55);
    cursor: pointer;
    transition: background 0.2s ease;
}
.em-hero__dot.is-active {
    background: #fff;
}
body.em-trade .trade-hero-slider .em-hero,
body.em-trade .trade-hero-slider .em-hero__track {
    display: block;
    width: 100%;
}
body.em-trade .trade-hero-slider .em-hero__track {
    min-height: 70vh;
}
