.splash{
    position: relative;
    height: 400px;
}

.splash > img{
    position: absolute;
    width: 100%;
    height: 100%;
}

.splash_content_holder{
    position: absolute;
    width: 45%;
    height: 100%;
    left: 55%;
    background-color: rgba(255, 255, 255, 0.85);
}

.splash_content_holder::before{
    content: "";
    position: absolute;
    width: 15vw;
    height: 100%;
    left: -15vw;
    background-color: rgba(255, 255, 255, 0.85);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.splash_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    height: 300px;
    width: 40%;
    top: 50px;
    left: 25%;
}

.splash_content > p{
    margin-top: 20px;
}

.map_contianer > h2{
    margin-bottom: 10px;
}
.gmap_canvas {
    position: relative;
    height: 550px;
}

.mapa{
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.forma > h2{
    position: relative;
    left: 5%;
}

.input{
    position: relative;
    width: 90%;
    height: 50px;
    left: 5%;
    margin-bottom: 20px;
    padding: 0 10px;
    background-color: #F3F3F3;
    border: none;
    border-radius: 5px;
    font-weight: 400;
}

.textArea{
    position: relative;
    width: 90%;
    height: 150px;
    left: 5%;
    margin-bottom: 20px;
    padding: 5px 10px;
    background-color: #F3F3F3;
    border: none;
    border-radius: 5px;
    font-weight: 400;
}

.inputLabel{
    position: relative;
    font-size: var(--fntsize-default);
    font-weight: 600;
    left: 5%;
    margin-bottom: 5px;
}

.submitButton{
    position: relative;
    width: 90%;
    height: 50px;
    left: 5%;
    margin-bottom: 20px;
    padding: 0 10px;
    background-color:var(--clr-mediumBlue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: var(--fntsize-medium);
    font-weight: 500;
    letter-spacing: 0.05rem;
    transform: scale(0.9);
    transition: all 250ms;
}

.submitButton:hover{
    transform: scale(1);
    transition: all 250ms;
}

