.main-content{
    display: flex;
}

.map, .main-left{
    width: 50%;
}

@media (max-width: 500px){
    .main-content{
        flex-direction: column-reverse;
    }
    .map, .main-left{
        width: 100%;
    }
    .map{
        height: 300px;
    }
}

.contact-form{
    width: 304px;
}

@media(max-width: 400px){
    .contact-form{
        width: 270px;
    }
    .g-recaptcha>div, .g-recaptcha>div>div>iframe{
        width: 271px!important;
    }
}



.contact-form-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    height: 495px;
    background-color: #dadada;
}

.contact-form-container h1{ margin: 10px 0; }
.contact-form-container h2{ margin: 5px 20px; }

.contact-form input, .contact-form textarea{
    display: block;
    border: 0;
}

.contact-form textarea{
    resize: none;
}

.contact-form input:not(:last-child), .contact-form textarea{
    padding: 15px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea{
    height: 56px;
}

.contact-form input:last-child{
    margin: 20px auto 10px auto;
    width: 50%;
    padding: 20px 40px;
    border-radius: 30px;
    background-color: #8e8e8e;
    color: white;
    font-weight: bolder;
    font-size: 16px;
}


.contact-form input:not(:last-child):hover, .contact-form textarea:hover{
    background-color: #000000;
    color: white;
}
.contact-form input:last-child:hover{
    background-color: #323232;
    cursor: pointer;
}