#hero .bg-tint {
    --tint-opacity: 0.85
}

#hero .content-col {
    gap: 20px;
}

#hero  > .container > div {
    align-content: center;
}

#hero  > .container > .img-col {
    position: relative;
    min-height: 400px;
}

#hero .fg-img {
    position: absolute;
    left: 0;
    top: 0;
    min-height: 50px;
    height: 100%;
    width: 100%;
    border-radius: calc(var(--border-radius) * 4);
}

#hero .fg-img.img-contain {
    object-fit: contain;
    filter: drop-shadow(0 40px 10px rgb(0,0,0,.25))
}

#hero .button-wrapper {
    flex-wrap: wrap;
}

@media screen and (max-width: 749px) {
    #hero {
        padding-top: calc(var(--header-height) + var(--padding-v) - 20px);
    }
    
    #hero .content-col {
        order: 2;
        text-align: center;
    }
    
    #hero .section-title-wrapper {
        justify-content: center;
    }
    
    #hero .button-wrapper {
        justify-content: center;
    }
    
    #hero > .container > .img-col {
        min-height: 33vh;
    }
}

/* –––––––––––––––––––––––––––––––––––––––––––––––––––––––– */

@media screen and (min-width: 1000px) {
    #landingpage-form {
        grid-template-columns: repeat(6, 1fr);
    }
    
    #landingpage-form > .w-100 {
        grid-column: span 6;
    }
    
    #landingpage-form > .w-50 {
        grid-column: span 3;
    }
    
    #landingpage-form > .w-33 {
        grid-column: span 2;
    }
}

#landingpage-form button[type="submit"] {
    margin-top: 10px;
}