:root {
    --store-hero-height: 200px !important;
}

.hero {
    height: var(--store-hero-height);
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero .boxed{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    z-index: 5;
    position: relative;
    width: 1440px;
    padding: 0px 20px;
}

.hero .preload-image{
    width: 100%;
    height: var(--store-hero-height);
    object-position: center;
    object-fit: cover;
    position: absolute;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(to right, rgba(4, 38, 83, 0.612) 0%, rgba(4, 38, 83, 0) 60%),
        linear-gradient(to right, rgba(0, 0, 0, 0.44) 29%, rgba(0, 0, 0, 0) 59%);
}

.hero h1 {
    font-family: montserrat;
    font-weight: 600;
    color: white;
    font-size: 64px;
    margin: unset;
}

.hero h2 {
    font-family: montserrat;
    font-weight: 400;
    color: white;
    font-size: 48px;
    margin: unset;
}

.hero p {
    font-family: montserrat;
    font-weight: 400;
    max-width: 535.53px;
    color: white;
    font-size: 16px;
    margin: 20px 0px;
}

.button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
