.large-banner-container{
    position: relative;
    height: 930px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.large-banner-container.smaller{
    height: 450px;
    margin-bottom: 80px;
}
.large-banner-container *:first-child{
    object-position: top;
}
.large-banner-container *:not(:first-child){
    z-index: 3;
}
.large-banner-container::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(160,160,160,1) 0%, rgba(80,80,80,1) 100%);
    mix-blend-mode: multiply;
}
.large-banner-container h1{
    font-size: 86px;
    max-width: 850px;
    padding: 0 10px;
    color: #fff;
}
.large-banner-container p{
    font-weight: 500;
    max-width: 640px;
    padding: 0 10px;
}
.large-banner-container .btn{
    margin-top: 30px;
}
@media screen and (max-width:1199px) {
    .large-banner-container{
        height: 600px;
    }
    .large-banner-container h1{
        font-size: 72px;
    }
}
@media screen and (max-width:767px) {
    .large-banner-container{
        height: 500px;
        padding-top: 77px;
    }
    .large-banner-container h1{
        font-size: 54px;
    }
}
.embedded-video {
    overflow: hidden;
    position: relative;
}
.embedded-video iframe {
    background-color: #2c2e37;
    width: 100%;
    height: 100%;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 90;
}