.contactSection{
    display: flex;
    justify-content: center;  
    align-items: flex-start;  
    
}
.contactBlock{
    text-align: left;
    margin-inline: 20px;
}
.contactSectionTitle{
    font-size: 35px;
    margin: 30px 0px;
    font-weight: 500;
}
.contactBlockHeader{
    margin: 20px 0px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: underline;
}
.mainContactBox{
    width: 30%;
}
.contactBlocktext {
    font-size: 14px;
    padding-left: 4px;
}

#contactMobileComment {
    display: none;
}


@media screen and (max-width: 600px) {

    .contactSection{
        display: block;
        width: 100%;
        text-align: center;
        border-top: 1px solid rgb(190, 190, 190);
        justify-content: center;  
        align-items: center; 
        
    }
    .contactBlock{
        text-align: left;
        margin-inline: 20px;
    }
    .contactSectionTitle{
        font-size: 30px;
        margin: 10px 0px;
        font-weight: 500;
        width: 100%;
    }
    .contactBlockHeader{
        margin: 20px 0px;
        font-weight: 300;
        font-size: 20px;
        text-decoration: underline;
    }
    .mainContactBox{
        width: 80%;
    }
    .contactBlocktext {
        font-size: 14px;
    }

    #contactLocation {
        display: none;
    }
    #contactEnq {
        display: none;
    }
    #contactMobileComment {
        display: block;
    }
}