.title{
    grid-area: 1 / 1 / 1 / 1;
    z-index: 1;
    margin-block: 10vh;
    display: grid;
    grid-template-columns: 1fr;
    color: white;
}

.title h1{
    font-size: 4em;
    text-align: left;
    padding-left: 5vw;
}

.title p{
    text-align: left;
    line-height: 1.7em;
    font-size: 1.3em;
    padding-left: 5vw;
}

.hero-img{
    grid-area: 1 / 1 / 1 / 1;
    z-index: -1;
}

.hero-img img{
    width: 100%;
    filter: brightness(.9);
    border-radius: 20px;
}

.spacer{
    margin-block: 2vh;
}

/*
.intro{
    padding-inline: 5vw;
}
*/

article h3{
    margin-block: 1rem;
    font-size: 2rem;
}

article p{
    margin-bottom: 1rem;
    line-height: 2em;
}

/*
.text-section{
    padding-inline: 5vw;
    padding-block: 5vh;
}
*/

.boxes{
    padding-inline: 5vw;
    padding-block: 5vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.box{
    background: var(--primary-2);
    border-radius: 20px;
    padding: 1.5em;
}


.box:nth-child(odd){
    background: var(--primary-1);
}

.box:first-child{
    background: var(--accent-color-2);
}

.box>h3{
    margin-bottom: 1.5vh;
    font-size: 1.5rem;
}

.box>p{
    font-size: 1rem;
}

.process-section .box:first-child{
    background: var(--primary-1);
}

.content h3{
    margin-block: 1rem;
}

/* Call to action */

.call-to-action{
    padding-block: 10vh;
    text-align: center;
}

.img-centered{
    margin-bottom: 5vh;
}

.img-centered>img{
    width: 9%;
}

.payoff{
    text-align: center;
    line-height: 1.7em;
    font-size: 1.3em;
    margin-bottom: 1em;
}

.submit-button {
    background-color: var(--primary-3);;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    width: 50%;
}

.submit-button:hover {
    background-color: var(--primary-3);;
}

@media (max-width: 1024px) {
    .title h1{
        font-size: 3rem;
    }
}

@media (max-width: 800px) {
    .boxes {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 480px) {
    .title h1{
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .title p{
        font-size: 1rem;
    }    
}