body{
    background-color: #f4f4f4;
}

.body-page{
    top: 120px;
    position: relative;
}

.contact-title{
    width: 100%;
    height: 150px;
    display: flex;
    font-size: 60px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    background-color: #ffde59;
}

.contact-message{
    display: flex;
    padding-top: 5%;
}

.body{
    width: 70%;
    padding: 20px 80px;
}

.body b{
    font-size: 25px;
}

.info{
    font-size: 17px;
    margin-top: 30px;
    margin-bottom: 80px;
}


.address{
    width: 30%;
    padding-top: 20px;
}
.address b{
    font-size: 25px;
}

.address div{
    font-size: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.address p{
    font-size: 15px;
    margin-top: 30px;
}

.line{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.line .item{
    width: 50%;
    height: 35px;
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.line .item.left{
    padding-right: 30px;
}

.line .item.right{
    padding-left: 30px;
}

.line .item .image{
    width: 40px;
    height: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dcdcdc;
}

.line .item img{
    width: 100%;
}

.line .item input{
    width: 100%;
    height: 100%;
    outline: none;
    font-weight: 600;
    padding-left: 10px;
    border: 1px solid lightgrey;
    background-color: transparent;
}

.messageAndSave{
    width: 100%;
    display: flex;
    margin-top: 50px;
    align-items: flex-end;
    flex-direction: column;
    justify-content: flex-end;
}
.messageAndSave textarea{
    width: 100%;
    resize: none;
    padding: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    outline: none;
    border: 1px solid lightgrey;
    background-color: transparent;
}

.messageAndSave button{
    color: white;
    border: none;
    font-size: 18px;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: black;
}

.messageAndSave button:hover{
    cursor: pointer;
}

.mapouter{
    width: 100% !important;
    margin-bottom: 0px;
}

.gmap_canvas{
    width: 100%;
    height: 400px;
}

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


@media (max-width: 900px) {
    .address{
        display: none;
    }

    .body{
        width: 100%;
        padding: 0;
    }

    .body-page{
        top: 81px;
    }
}

@media (max-width: 500px) {
    .line{
        flex-direction: column;
    }

    .line .item{
        width: 100%;
        height: 50px;
        padding: 0!important;
    }

    .messageAndSave{
        width: 100%;
        margin-bottom: 20px;
    }

    .body b{
        display: flex;
        justify-content: center;
    }

    .info{
        text-align: justify;
    }

}