*{
    margin: 0;
    padding: 0;
}
body{
    font-size: 16px;
    font-family: Arial Bold;
    background-color: #ebebeb;
}
main{
    width: 1280px;
    margin: 0 auto;
    background: #FFFFFF;
}
header{
    width: 100%;
    height: 190px;
    background: #FFFFFF;
}
.logo{
    margin-left: 30px;
    display: inline-block;
    vertical-align: top;
    margin-top: 15px;
}
.logo img{
    width: 160px;
}
.header-title{
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 700;
    color: #006633;
    display: inline-block;
    width: 1000px;
    text-align: center;
    line-height: 100px;
    font-family: Arial Bold;
}
section{
    width: 100%;
    padding: 10px 0;
}
.container{
    width: 90%;
    margin: 0 auto;
}

.title{
    padding: 50px 0;
}
.title h1{
    text-align: center;
    font-weight: 600;
    font-size: 36px;
    font-variant: small-caps;
    color: #333333;
}
.item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
}
.item .left,.item .right{
    width: 50%;
}
.item h3{
    width: 60%;
    font-size: 24px;
    margin-bottom: 20px;
}
.item .text{
    width: 80%;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 500;
}
.item .text strong{
    margin-left: 10px;
    font-size: 24px;
}
.item .img{
    width: 500px;
    height: 300px;
    overflow: hidden;
}
.item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.location{
    background: #f9f9f9;
}
.contact{
    background: #006633;
    color: #FFFFFF;
}
.contact p{
    padding: 0 10px;
    font-size: 34px;
    font-weight: 600;
    font-family: Arial Bold;
}
footer{
    width: 100%;
    height: 50px;
    background: #333333;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
}
@media screen and (max-width: 720px) {
    main{
        width: 100%;
    }
    header{
        height: 80px;
    }
    .logo{
        display: block;
        text-align: center;
        margin: 0;
    }
    .logo img{
        margin-top: 10px;
        width:60px;
    }
    .header-title{
        display: none;
    }
    .title{
        padding: 20px 0;
    }
    .title h1{
        font-size: 20px;
    }
    .banner img{
        width: 100%;
    }
    .item{
        /* flex-direction: column; */
        padding: 10px 0;
    }
    .item h3{
        width: 100%;
        font-size: 14px;
    }
    .item .text{
        width: 100%;
        font-size: 18px;
        text-align:left;
        line-height: 16px;
        font-family: Arial Bold;
    }
    .item .left, .item .right{
        width: 50%;
    }
    .contact p{
        font-size: 14px;
    }
    .item .img{
        width: 90%;
        height: 150px;
        margin: 0 auto;
    }
    footer{
        height: 50px;
        line-height: 50px;
    }
}