.hero {
    background-image: url(/assets/1OnYork/Outside.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100dvw;
    height: 80dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-h1 {
    font-size: 7rem;
    color: #fff;
    text-shadow: 5px 5px #000;
}

hr {
    color: #fff;
    width: 60%;
    font-weight: 800;
}

.hero-p {
    width: 70%;
    margin-top: 9rem;
    color: #fff;
    font-size: 3rem;
    text-align: center;
}

.prop-man-keys {
    /* background-color: green; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0 6rem 0;
}

.prop-man-keys-h2 {
    font-size: 4rem;
}

.prop-man-keys-row {
    background-color: var(--ligthGrey);
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
}

.prop-man-keys-block {
    width: 50%;
    height: 350px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* .big {
    height: 300px;
} */

.prop-man-keys-block-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.prop-man-keys-block-heading {
    width: 90%;
    padding: 0 1rem;
    font-size: 3rem;
}

.prop-man-keys-block-content {
    width: 80%;
}

.contactSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 0;
}

.formBlock {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ligthGrey);
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.contactForm {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    padding-bottom: 8rem;
}

.formIntroBlock {
    width: 60%;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

.contactformInput {
    width: 500px;
    font-size: 2rem;
    line-height: 2;
    padding-left: 1rem;
}

.formRowBlock {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contactFormSubmitButton {
    background-color: #2187C2;
    width: 40%;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    color: #fff;
}

.facilitiesBlock {
    width: 100%;
    padding: 0 2rem;
}

.blockHeader {
    border-top: 1px solid #000;
    width: 100%;
    text-align: center;
    font-size: 3rem;
    padding: 2rem 0;
}

.optionBlock {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 5%;
    row-gap: 2rem;
}

.options {
    width: 30%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.options-label {
    text-wrap: nowrap;
}

.options-input {
    width: 20%;
}

.seasonsRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* column-gap: 5%; */
    
}

.priceBlock {
    /* width: 200px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
}

.priceLabel {
    width: 30%;
    padding-right: 1rem;
}

.priceInput {
    width: 150px;
}

.additionalBlock {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.additionalInput {
    font-size: 2rem;
    line-height: 2;
    padding-left: 1rem;
}

.submitButton {
    background-color: #2187C2;
    padding: 1rem 2rem;
    font-size: 2rem;
    box-shadow: #000 5px 5px 5px;
    border-radius: 10px;
    color: #fff;
}