.hero-glide__arrows {
    -webkit-touch-callout: none;
    user-select: none;
    position: absolute;
    top: 3rem;
    right: 2rem;
    transition: all .3s ease-in-out;
    opacity: 0;
}

.hero-glide:hover .hero-glide__arrows {
    opacity: 1;
}

.hero-glide__arrow {
    background: #e0f95e;
    border-radius: 50%;
    /* border: 2px solid #e0f95e; */
    border: 0px;
    width: 2.75rem;
    height: 2.75rem;
    font-weight: lighter;
    font-size: 2rem;
    transition: all .3s ease-in-out;
}

.hero-glide__arrow:hover {
    border: 1px solid black;
    background-color: transparent;
    cursor: pointer;
}

.hero__content {
    align-self: end;
    color: #f4f3e7;
    grid-column: 1/-1;
    grid-row: 1;
    padding: 0 0 75px 150px;
    position: relative;
    z-index: 2;
}

@media (max-width: 700px) {
    .hero__content {
        padding: 0 0 100px 20px;
    }
}

.hero__pretitle {
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero__heading {
    font-size: 60px;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 36px;
}

.hero__link {
    margin-top: 1.25em;
}

.hero-glide__bullets {
    -webkit-touch-callout: none;
    user-select: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-glide__bullet {
    background: #ffffff62;
    border: 0;
    cursor: pointer;
    height: 15px;
    width: 15px;
    border-radius: 50%;
}

.glide__bullet--active {
    background: #ffffffc4;
}

#hero-section {
    margin-top: 70px;
}

@media (max-width: 768px) {
    #hero-section {
        margin-top: 50px;
    }
}