.sales-info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 1vw;
}

.introductory-paragraph {
    width: 90vw;
    font-family: 'Montserrat', sans-serif;
}

.selling-points-list {
    font-family: 'Montserrat', sans-serif;
    list-style-type: circle;
    max-width: 90vw;
}


.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80vw;
    max-width: 80vw;
    background: rgba(10,10,10,0.25);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 2vh;
}

.explanation-caption {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.fading-image-container {
    width: 50vw;
    min-width: 50vw;
    display: flex;
}

.step-image {
    width: 50vw;
    min-width: 50vw;
    max-width: 50vw;
    height: auto;
}

#step1-image2 {
    z-index: 3;
    position: relative;
    right: 100%;
}

#step2-image2 {
    z-index: 3;
    position: relative;
    right: 100%;
}

#step3-image2 {
    z-index: 3;
    position: relative;
    right: 100%;
}

.closing-statement-landing {
    width: 90vw;
    max-width: 90vw;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.iep-helper-image {
    padding: 4px;
    background: rgb(60,60,60);
    margin: 8px;
    width: 60vw;
    max-width: 60vw;
}

.closing-sentence {
    padding-bottom: 10vh;
    width: 90vw;
    max-width: 90vw;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.sign-up-button-landing {
    margin: 20px;
    background: rgb(120,20,20);
    padding: 10px 32px;
    font-size: larger;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 3px 3px 5px black;
    transition-duration: 80ms;
}

.sign-up-button-landing:hover {
    box-shadow: 2px 2px 3px black;
    transform: translateY(1px);
    background: rgb(110,22,22);
}