.contactContent{
    display:flex;
    justify-content:center;
}
.contactContentMap{
    width:500px;
    height:300px;
    overflow:hidden;
}
.contactContentMap img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.contactContentList,.contactContentMap{
    margin:0 50px;
}
.contactContentListItem{
    display:flex;
    padding:10px 0;
}
.contactContentList{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contactContentListItem>div:nth-child(1){
    margin-right:20px;
    white-space: nowrap;
}
@media screen and (max-width: 992px) {
    .contactContent{
        flex-direction: column-reverse;
    }
    .contactContentList,.contactContentMap{
        margin:0;
    }
    .contactContentMap{
        width:100%;
        height:auto;
    }
}