.sbc-hero-with-text-and-video {
    position: relative;

    min-height: 500px;
    display: flex;
    align-items: center;
}

.sbc-hero-with-text-and-video__deskop-image,
.sbc-hero-with-text-and-video__mobile-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sbc-hero-with-text-and-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.sbc-hero-with-text-and-video__content {
    flex-basis: 100%;
    position: relative;
    z-index: 10;
    padding: 80px 0;
}

.sbc-hero-with-text-and-video__content__title h1,
.sbc-hero-with-text-and-video__content__text {
    font-family: 'roboto', sans-serif;
    font-weight: 900;
    font-size: 64px;
    line-height: 1.2;
}

.sbc-hero-with-text-and-video__content__title h1 .text-red {
    color: #D91A10;
}

.sbc-hero-with-text-and-video__content__text {
    font-size: 32px;
    font-weight: 700;
    margin-top: 8px;
}

.sbc-hero-with-text-and-video__content__text * {
    color: inherit;
}

.sbc-hero-with-text-and-video__content__text p {
    margin-bottom: 6px;
}

.sbc-hero-with-text-and-video__content__text .text-900 {
    font-weight: 900;
}

.sbc-hero-with-text-and-video__content__play {
    margin-top: 40px;
}

.sbc-hero-with-text-and-video__content__play--simple {
    height: 60px;
    width: 60px;
    background-color: #fff;
    border-radius: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-decoration: none !important;
    transition: all .3s ease;
    margin: 0 auto;
    color: #0056b3 !important;
}   

.sbc-hero-with-text-and-video__content__play--simple:hover {
    transform: scale(1.2);
}

a.btn-primary {
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: #263540;
    background-color: #F0AB00;
    padding: 5px 40px;
    min-height: 40px;
    min-width: 195px;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-radius: 25px;
    border: 1px solid #F0AB00 !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px 0 rgba(76, 106, 129, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

a.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0%;
    transition: all 0.5s ease;
    background-color: #fff;
    z-index: -1;
}

a.btn-primary:hover {
    color: #263540;
    background: #F0AB00;
}

a.btn-primary:hover::before {
    width: 100%;
}

.sbc-hero-with-text-and-video__content__play--complex i {
    margin-right: 15px;
}

@media(min-width: 1680px){
    .sbc-hero-with-text-and-video .container.sbc-hero-with-text-and-video__container {
        max-width: 1600px !important;
    }
}

@media(max-width: 1199px){
    .sbc-hero-with-text-and-video__content__title h1,
    .sbc-hero-with-text-and-video__content__text {
        text-align: center;
    }

    .sbc-hero-with-text-and-video__content__title {
        margin-bottom: 30px;
    }

    .sbc-hero-with-text-and-video__content__text {
        font-size: 26px;
    }
}

@media(max-width: 767px){
    .sbc-hero-with-text-and-video__content__title h1 {
        font-size: 48px;
    }

    .sbc-hero-with-text-and-video__content__text {
        font-size: 24px;
    }
}

@media(max-width: 575px){
    .sbc-hero-with-text-and-video__content__title h1 {
        font-size: 38px;
    }

    .sbc-hero-with-text-and-video__content__text {
        font-size: 20px;
    }
}