#container {
    width: 100%;
    height: 56rem;
}
.contact-us{
    padding-top: 100px;
}

.swiper-slide .item {
    left: 50%;
}
.swiper-slide .item .title{
    font-size: 6rem;
    line-height: 6rem;
}
.swiper-slide .item .text{
    font-weight: 300;
    margin-top: 0;
    margin-left: 12rem;
}
.list-menu {
    width: 100%;
    padding: 8rem 20rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.list-menu .item {
    height: 23rem;
    border: 1px solid #ccc;
    width: 23%;
    margin-right: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    box-sizing: border-box;
}

.list-menu .item:last-child {
    margin-right: 0;
}
.list-menu .item .title{
    font-size: 1.6rem;
    color: #999999;
}
.list-menu .item .text{
    font-size: 1.8rem;
    color: #000;
    text-align: center;
}
@media screen and (max-width:1200px) {
    .list-menu{
        padding: 8rem 2rem;
    }
}
@media screen and (max-width:750px) {
    .contact-us{
        padding-top: 0;
    }
    .swiper-slide .item .title {
        font-size: 1.6rem;
        line-height: normal;
    }

    .swiper-slide .item .text {
        font-size: 1.4rem;
        margin-left: 2rem;
    }

    .list-menu{
        padding: 4rem 1rem;
        flex-wrap: wrap;
    }
    .list-menu .item{
        width: 48%;
        margin-bottom: 1rem;
        height: 18rem;
    }
    .list-menu .item:nth-child(2n){
        margin-right: 0;
    }
    #container{
        height: 36rem;
    }
    .list-menu .item .text{
        font-size: 1.4rem;
    }
    .list-menu .item .title{
        font-size: 1.2rem;
        padding: 2px 0px;
    }
}