*,*:after, *:before{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    margin: 0;
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-height: 100vh;
}
.form-container{
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    color: #9a9a9a;
    background: #f0f0f0;
    
}
.input-row{
    margin-bottom: 10px;
    
}
.input-row label{
    display: block;
    margin-bottom: 3px;
}

.input-row input,
.input-row textarea{
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 3px;
    outline: 0;
    margin-bottom: 3px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #7d7d7d;
}
.input-row textarea{
    height: 100px;
}
.input-row input[type="submit"]{
    width: 100px;
    display: block;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background: #2f2f2f;
}
.success{
    background: rgba(203, 240, 83, 0.815);
    padding: 5px 10px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    font-synthesis: 14px;
    margin-top: 10px;
}

.map{
    position: relative;
    width: 80%;
    margin: 30px auto;
    margin-top: 80px;
    display: flex;
    
}

@media (max-width:600px) {

    body{
        display: inline-block;
        align-items: center;
        justify-content: space-around;
        
    }
    .navbar .logo img{
        width:30vw;
        margin-left: 10px;
        margin-top: 10px;
    }


    /* Preloader*/

#preloader{
    background: #fff url(img/Loading_icon.gif) no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;position: fixed;
    z-index: 100;
}

    

}