#gpm-contact-main{
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.gpm-contact-form{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 90%;
    margin: auto;
    margin-top: 2em;
}
.gpm-contact-form h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

.gpm-contact-form h2 .gpm-heading-main {
    color: #c21717;
}

.sectionHeader{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 1.1rem;
    color: #1976d2;
    margin-bottom: .5em;
}

.heading,.sub-heading{
    margin-bottom: .5em;
    font-weight: bold;
}

.heading{
    font-size: 2.5em;
}

.sub-heading{
    text-align: left;
}

.contactForm{
    display: grid;
    gap: 3em;
}
.para{
    color: black;
    font-size: 1.1rem;
    line-height: 1.5em;
    margin-bottom: 1em;
}

.para2{
    text-align: left;
}

.input{
    width: 100%;
    border: none;
    font-size: .9rem;
    padding: 1em;
    outline: none;
    background-color: white;
    color: black;
    border-radius: 10px;
    border: 1px solid #1976d2;
    margin-bottom: 1em;

}

.input:focus{
    border: 1px solid #1976d2;
}

.input::placeholder{
    text-transform: capitalize;
}
.map-container{
    position: relative;
    width: 100%;
    height: 500px;
}
#submit-button-contact{
    width: 100%;
}
.mapBg{
    position: absolute;
    background-color: white;
    top: 0;
    right: 0;
    width: 200px;
    height: 90%;
    border-radius: 20px;
}

.map{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.contactMethod{
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    text-align: left;
}

.method{
    display: flex;
    align-items: center;
}

.contactIcon{
    font-size: 2rem;
    color: #c21717;
    width: 70px;
}

@media screen and (min-width:800px) {
    .contactForm{
        grid-template-columns: 1fr 1fr;
    }   

    .contactMethod{
        flex-direction: row;
        justify-content: space-between;
    }
}