/*-- -------------------------- -->
<---          Landing           -->
<--- -------------------------- -*/
.white-space {
    height: 80px; /* Specify the height of the block */
}


#landing {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#landing picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#landing img {
    width: 100%;
    height: 100%;
}

#landing .content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 550px;
    margin: auto;
    z-index: 2;
}

#landing .cs-title{
    margin: 25px;
    color: #fff;
}

@media screen and (min-width: 1024px) {
    
    .white-space {
        height: 140px; /* Specify the height of the block */
    }    
}
/*-- -------------------------- -->
<---        schedule-tour             -->
<--- -------------------------- -*/

#schedule-tour {
    padding-top: 50px;
    position: relative;
}

#schedule-tour #purple-circle{
    position: absolute;
    left: -10px;
}

#schedule-tour #yellow-star{
    position: absolute;
    top: -20px;
    right: 20%;
}

#schedule-tour #blue-trinagle{
    position: absolute;
    bottom: 0px;
    right: 5%;
}

#schedule-tour .cs-title{
    text-align: center;
}

.contact-input {
    color: var(--bodyText);
    font-size: 16px;
    margin-bottom: 16px;
    width: 100%;
    border: 1px solid #1E1E1E;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
}

textarea {
    height: 100px;
    font: 400 12px/16px "Open Sans",Helvetica,Arial,sans-serif;
    resize: none;
    margin-bottom: 30px;
    max-width: 100%;
}

#schedule-tour .cs-h2{
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--primary);
}

#schedule-tour .input-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
}

#schedule-tour .input-half {
    width: 100%;
}

#schedule-tour .input-half:last-child {
    margin-right: 0;
}

#schedule-tour p {
    text-align: center;
}

#contact-submit {
    display: block;
    margin: 0 auto;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    #schedule-tour .input-row {
        flex-direction: row;
    }

    #schedule-tour .input-half {
        width: calc(50% - 10px); /* subtracting for margin-right */
        margin-right: 10px;
    }
}




