#hero {
    height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    background-image: url(../img/hero.jpg);
}

#heroSubtitle {
    padding-top: 80px;
    color: #3E1F21;
    font-family: Libre Baskerville;
    font-size: 60px;
    font-style: italic;
    line-height: 96%; /* 57.6px */
    margin-bottom: 5px;
}

#heroTitle {
    color: #3E1F21;
    font-size: 80px;
    font-style: normal;
    line-height: 99%; /* 99px */
    text-transform: uppercase;
    margin-bottom: 20px;
}

#heroChoices {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 50px;
}

.heroChoicesItem {
    display: flex;
    gap: 10px;
    align-items: center;
    cursor: pointer;
    padding: 0;
}

.heroChoicesItemRadio {
    width: 30px;
    height: 30px;
    border: 2px solid #3E1F21;
    border-radius: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heroChoicesItem.active .heroChoicesItemRadio::after {
    content: "";
    width: 20px;
    height: 20px;
    background: #3E1F21;
    border-radius: 100%;
}

.heroChoicesItemText {
    font-size: 40px;
    text-align: left;
    padding-top: 2px;
    color: #3E1F21;
    line-height: 1;
}

#heroButton {
    color: white;
    text-align: center;
    font-size: 34px;
    font-style: normal;
    line-height: 100%; /* 38.7px */
    border-radius: 8.6px;
    background: #3E1F21;;
    padding: 18px 20px 14px;
    max-width: 300px;
    width: 100%;
}

@media (max-width: 800px) {
    #hero {
        justify-content: flex-start;
        background-image: url(../img/hero-mobile.jpg);
        padding-top: 100px;
    }

    #heroSubtitle {
        padding-top: 0;
        font-size: 34px;
    }

    #heroTitle {
        font-size: 40px;
        max-width: 300px;
        width: 100%;
    }

    #heroChoices {
        margin-bottom: 20px;
    }

    .heroChoicesItem {

    }

    .heroChoicesItemRadio {
        width: 24px;
        height: 24px;
    }

    .heroChoicesItem.active .heroChoicesItemRadio::after {
        width: 16px;
        height: 16px;
    }

    .heroChoicesItemText {
        font-size: 30px;
    }

    #heroButton {
        font-size: 24px;
        padding: 10px 50px 7px;
        border-radius: 5px;
        width: fit-content;
    }
}