main {
    width: 100%;
    height: 200vh;
    background-image: url(mechanicBcgd.png);
    background-repeat: repeat;
    background-position:inherit;
    background-size:contain;
    margin: 0 0 -17vh 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#contactDiv {
    width: 90%;
    height: 100vh;
    background-color: hsl(0, 0%, 100%, 90%);
    margin-top: 5vh;
    padding-bottom: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contactParDiv {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 5vh 0vh 3vh 0vh;
}

.contactPar {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #343434;
    font-size: 1vw;
    text-align: center;
    align-self: center;
    margin: 2px;
}

.contactParHeader {
    font-size: 1.5vw;
}

.contactRaw {
    display: flex;
    width: 45%;
    height: 5vh;
    justify-content: space-between;
    align-items: center;
    background-color: #ffff;
    padding: 2%;
    margin: 1%;
}

.contactImg {
    width: 8vh;
}

.imgParent {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15%;
}

.parParent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 80%;
}

#mapDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    height: 70vh;
    width: 90%;
}

#embeddedMap {
    width: 100%;
    height: 90%;
}

footer {
    margin-top: 4vh;
}

#responsiveMenu .itemSm,
#responsiveMenu #menuBtnSm {
    display: none;
}

#responsiveMenu.open .itemSm,
#responsiveMenu.open #menuBtnSm {
    display: block;
}


@media screen and (max-width: 845px) {
    main {
        height: 110vh;
    }

    #contactDiv {
        height: 50vh;
    }

    #mapDiv {
        height: 40vh;
    }

    #contactParDiv {
        margin: 2vh 0vh 2vh 0vh;
    }

    .contactImg {
        width: 4vmax;
    }

    .contactRaw {
        width: 70%;
    }

    .contactPar {
        font-size: 2vw;
    }
}

@media screen and (max-width: 600px) {
    #contactDiv {
        margin-top: 12vh;
    }

    main {
        height: 120vh;
    }

        #headerInfo {
        display: none;
    }
    
 nav {
        display: none;
    }


    #responsiveMenu {
        display: flex;

    }
    
}

@media screen and (max-width: 500px) {
    main {
        height: 110vh;
    }

    #contactDiv {
        height: 40vh;
    }
}




