.heroContainer {
    background: url(/themes/custom/brokerage/images/shutterstock_1763058089.png);
    background-position: top;
    background-size: cover;
    height: 90vh;
    padding-top: 63px;
    position: relative;
	width: 100%;
    max-width: 100vw;
}

.heroContainer::before {
    background: linear-gradient(to top, #fbfbfb 0%, rgba(249, 250, 251, .5) 50%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.heroContainer video {
    height: 100%;
    object-fit: cover;
    width: 100vw;
}

.heroContent {
    color: #222;
    left: 50%;
    padding-top: 100px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
}

.heroContent img {
    width: 250px;
}

.heroContent p {
    font-size: 1.4rem;
    letter-spacing: 5px;
}

.heroContent h1 {
    font-size: 2rem;
}

.heroBar {
    background-color: rgb(1, 38, 56);
    border: 10px solid #fafafa;
    border-radius: 20px;
    color: #fafafa;
    margin-top: -50px;
    padding: 3rem 1rem;
    position: relative;
}

.heroIcon {
    align-items: center;
    background-image: url(/themes/custom/brokerage/images/iconCircle.svg);
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    width: 96px;
}

.heroIconSvg {
    color: #0080bf;
    width: 96px;
}

@media (min-width: 768px) {
    .heroContainer {
        height: 75vh;
    }

    .heroContent {
        padding-top: 0;
    }

    .heroContent img {
        width: 400px;
    }

    .heroContent h1 {
        font-size: 3rem;
    }
}