
.lefthandsidep {
    width: 50%;


    display: flex;
    flex-direction: column;
}
.mainsection {
    display: flex;
    flex-direction: row;
    margin-top: 90px;
}
.righthandsidep {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.topleft {
    height: 60%;
}

.mapp {
    width: 70%;
    max-width: 800px;

    height: 90%;
    min-height: 350px;
    max-height: 400px;
    
    border: 0px;
    display: flex;

    border-radius: 20px;  
    float: left;  

    justify-content: center;
    margin: 40px auto auto 50px;
}

.contact-item a {
    color: black;
}

.whitetext {
    color: #f5f5f5 !important;
}
.kavoon-regular {
    margin-top: 0;
    font-size: 55px;
    margin-bottom: 30px;
}

/* form itself */
.formbackground {
    background-color: #1E90FF;
    width: 80%;

    min-width: 470px;
    max-width: 600px;

    height: 75%;

    display: flex;
    float: right;
    margin: auto;

    border-radius: 20px;
    box-shadow: 5px 5px 20px black;
    flex-direction: column;
}

form {
    width: 80%;
    margin:auto;
}


.name-fields {
    display: flex;
    gap: 10px;
    margin: auto;
    justify-content: center;
}

label {
    font-size: 20px;
    display: block;
    margin-top: 10px;
    margin-right: auto;
    width: fit-content;
}

input,
textarea {
    width: 100%;
    font-size: 20px;
    padding: 8px;
    margin-top: 5px;
    border: none;
    border-radius: 10px;
    outline: none;
    color: #333;
}

textarea {
    resize: none;
    height: 140px;
}

.submit-btn {
    display: block;
    width: 45%;
    margin: 20px auto auto auto;

    padding: 10px;
    background-color: #0077e6;
    color: white;

    max-width: 190px;
    min-width: 170px;

    border: none;
    border-radius: 10px;

    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background-color: #005bb5;
}

@media only screen and (min-width: 300px) {
    .mainsection {
        display: flex;
        flex-direction: column-reverse;
        margin-top: 180px;
    }
    .lefthandsidep {
        width: 100%;
    }
    .righthandsidep {
        width: 100%;
    }

    /* form */
    .formbackground {
        min-width: 320px;
        padding-bottom: 20px;
    }
    .kavoon-regular {
        margin-top: 30px;
        font-size: 40px;
    }
    /* maps */
    .mapp {
        float: unset;
        margin: 70px auto auto auto;
        min-width: 320px;
        width: 80%;
    }
}

@media only screen and (min-width: 600px) {
    .kavoon-regular {
        font-size: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .lefthandsidep {
        width: 50%;
    }
    .righthandsidep {
        width: 50%;
    }
    .mainsection {
        flex-direction: row;
        margin-top: 90px;
    }
}