.contactPageMain{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:5%;
    height:70vh;
    padding:2%;
    /* background-color: lightcoral; */

}
.mapLocation{
    width:60%;

}
.mapLocation iframe{
    width:100%;
    height:100%;
}


.contactDetails{
    display: flex;
    flex-direction: column;
    width:30%;
    gap:30px;
}

.detailType{
    font-size: 30px;
    color:#00b5ad;
    font-family: league system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}
.detailData{
    font-size:20px;
}

.detailData a{
    text-decoration: none;
    color: black;
}
@media(max-width:600px){

  .contactPageMain{
    flex-direction: column-reverse;
    align-items: center;
    height: auto;
  }
  .mapLocation, .contactDetails{
    width: 80%;
  }
  .mapLocation iframe{
    height: 20vh;
  }
  .contactDetails{
    align-items: center;
    text-align: center;
    margin-bottom:20%;
    margin-top:20%;
  }
  .detailData{
    font-size:16px;
  }
  .mapLocation{
    margin-bottom:20%;
  }
}
