.hero {
    background-position:center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero.startPage h1,.hero.startPage h2, .hero.startPage h3, .hero.startPage h4, .hero.startPage h5, .hero.startPage p {
    color: var(--white);
}

.min-lg-vh-50 {
    min-height: 50vh;
}

.min-lg-vh-75 {
    min-height: 75vh;
}

.min-lg-vh-100 {
    min-height: 100vh;
}

.hero.overlay {
    position: relative;
}

.hero.overlay:after {
    content: "";
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
}

.hero.overlay .text {
    position:relative;
    z-index: 1;
}

.hero p {
    font-size: clamp(1.25rem, 1.118rem + 0.4225vw, 1.625rem);
    line-height: 2rem;
}

.hero.overlay > div {
    position:relative;
    top: 5%;
}

.startPage .hero.overlay:after {
    content: "";
    position:absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--primary), transparent 13%);
}

.startPage .hero .container-fluid {
    background: linear-gradient(105deg, transparent 50%, var(--primary) 10%);
}

.startPage .startPage .heroTextWrapper {
    display:flex;
    align-items:center;
    justify-content: center;
    text-align:center;
    width: 100%;
}

.startPage .startPage .heroTextWrapper .buttons {
    justify-content: center;
}

.startPage .startPage .heroTextWrapper > div {
    width: 1170px;
    max-width: 100%;
}

.hero.splitTextAndImage {
    background-position: right;
    background-size: contain;
}

.hero.splitTextAndImage h1, .hero.splitTextAndImage h2, .hero.splitTextAndImage h3, .hero.splitTextAndImage h4, .hero.splitTextAndImage p {
    color: var(--white);
}

.hero.splitTextAndImage .heroTextWrapper {
    background: radial-gradient(circle, rgba(250, 113, 7, 1) 0%, rgba(189, 46, 5, 1) 100%);
    position:relative;
    margin: 0 !important;
    display:flex;
    align-items:center;
    width: 50% !important;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    padding-right: 6rem;
    
}

.hero.splitTextAndImage > div {
    padding: 0 !important;
}

.hero.splitTextAndImage > div > div {
    margin: 0;
}

@media (max-width:820px) { 
    
    .hero.splitTextAndImage .heroTextWrapper {
        clip-path: none;
        width: 100% !important;
        padding-right: 1rem;
        text-align:center;
        justify-content: center;
        
    }
    
    .hero .heroTextWrapper {
        padding-top: 5rem;
    }
    
    .min-lg-vh-75 {
        min-height: 50vh;
    }
}