.sbi-apollo-hero .sbi-apollo-hero__wrapper {
    height: 600px;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__hero-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 2;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__hero-image__overlay,
.sbi-apollo-hero__wrapper__hero-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, #000 0%, #434343 24%, #5D5D5D 32%, #A2A2A2 37%, #B7B7B7 100%);
    opacity: .8;
    mix-blend-mode: multiply;
    z-index: 5;
}

.sbi-apollo-hero__wrapper__hero-video__overlay {
    background-image: linear-gradient(0deg, #000 0%, #B7B7B7 100%);
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__container {
    position: relative;
    z-index: 10;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__title {
    font-size: 70px;
    line-height: 84px;
    color: #fff;
    margin-bottom: 25px;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__subtitle {
    font-size: 21px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 0;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__container__content {
    padding-bottom: 60px;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__container__content__button {
    margin-top: 35px;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__hero-video {
    overflow: hidden;
    position: relative;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__hero-video video {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.sbi-apollo-hero .sbi-apollo-hero__wrapper__container__content__video {
    display: flex;
    align-items: flex-end;
}

.sbi-apollo-hero__wrapper__hero-video__buttons {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}

.sbi-apollo-hero__wrapper__hero-video__buttons .container {
    position: relative;
}

.sbi-apollo-hero .sbi-apollo-hero__pause-button,
.sbi-apollo-hero .sbi-apollo-hero__play-button {
    background-color: transparent;
    appearance: none;
    border-radius: 5px;
    border: none;
    width: 50px;
    height: 50px;

    justify-content: center;
    align-items: center;
    cursor: pointer;

    position: absolute;
    right: 0;
    top: 25px;

    display: none
}

.sbi-apollo-hero .sbi-apollo-hero__pause-button.sbi-apollo-hero__button--visible,
.sbi-apollo-hero .sbi-apollo-hero__play-button.sbi-apollo-hero__button--visible {
    display: flex;
}

.sbi-apollo-hero .sbi-apollo-hero__pause-button:hover,
.sbi-apollo-hero .sbi-apollo-hero__play-button:hover {
    background-color: #025FAC;
}

.sbi-apollo-hero .sbi-apollo-hero__pause-button img,
.sbi-apollo-hero .sbi-apollo-hero__play-button img {
    display: block;
    width: 30px;
    height: 30px;
}

@media (max-width: 991px){
    .sbi-apollo-hero .sbi-apollo-hero__wrapper__title {
        font-size: 56px;
        line-height: 64px;
    }

    .sbi-apollo-hero .sbi-apollo-hero__wrapper__subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 767px){
    .sbi-apollo-hero .sbi-apollo-hero__wrapper__title {
        font-size: 48px;
        line-height: 52px;
    }
}

@media ( max-width: 575px ){
    .sbi-apollo-hero .sbi-apollo-hero__pause-button, 
    .sbi-apollo-hero .sbi-apollo-hero__play-button {
        right: 15px;
        top: 15px;
    }
}