*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    list-style:none;
    text-decoration: none;
}

body
{
    background-color: #b4d8f2;
}

main
{
    width: 1280px;
    margin:0 auto;
    background-color: white;
}


nav
{
    width: 100%;
}

nav li
{
    width: 33.3333%;
    float: left;
    background-color: #BD7569;
    text-align: center;
}

nav li a
{
    display: block;
    width: 100%;
    color:white;
    padding: 18px 0;
}

nav li a:hover
{
    background-color: #b85444;
    cursor: pointer;
}

footer
{
    background-color: #BD7569;
    width: 100%;
    text-align: center;
    color:white;
    padding: 12px 0;
}

.banner
{
    width: 100%;
}
.banner img
{
    width: 100%;
}

.title
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin:24px auto;
}

.title span
{
    margin:0 20px;
    font-size: 20px;
}

.title hr
{
    width: 220px;
    height: 2px;
    border: none;
    background-color: black;
}

.info
{
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    border: 1px solid #ccc;
    margin: 10px;
}

.info img
{
    width: 42%;
    height: 360px;
}

.info .info-text
{
    width:55%;
}

.info .info-text .info-title
{
    background-color: #BD7569;
    padding: 8px 12px;
    width: 120px;
    text-align: center;
    color: white;
    font-size: 18xp;
    margin-bottom: 12px;
}

.info .info-text .info-p
{
    font-size: 18xp;
    line-height: 35PX;
    text-indent: 2em;
}

.limglist
{
    width:100%;
    display: flex;
    margin-top: 12px;
    margin-bottom: 10px;
}

.limglist img
{
    width:20%;

}

.contact
{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 0 18px;
    
}

.contact form
{
    width: 64%;
}

.contact img
{
    width: 33%;
}

.contact .input-group
{
    display: flex;
    flex-direction: column;
}

.contact .contact-title
{
    margin-bottom: 15px;
    background-color: #BD7569;
    width: 120px;
    text-align: 8px 12px;
    color: white;
    border-radius: 4px;
}

.contact .input-group input
{
    margin-bottom: 12px;
    height: 36px;
    border: #706c6c 1px solid;
    border-radius: 2px;
    outline: none;

}

.contact .input-group textarea
{
    width: 100%;
    height: 120px;
}

.contact button
{
    margin-top: 15px;
    background-color: #BD7569;
    width: 180px;
    text-align: center;
    color: white;
    border-radius: 4px;
    border: none;
    padding: 8px 0;
    font-size: 20px;
}

.contact button:hover
{
    background-color: #b85444;
    cursor: pointer;
}

.contact input
{
    padding-left: 12px;
}

.contact textarea
{
    outline: none;
    padding-left: 12px;
    padding-top: 8px;
}