.title{
    font-size: clamp(28px, 2.08vw, 40px);
    text-align: left;
}
.description{
    text-align: left;
}

.main-content{
    max-width: var(--iw);
    margin: 0 auto;
}



.contact{
    margin-top: 60px;
    display: flex;
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.16);
    height: 400px;
    align-items: center;
}
.contact .contact-list{
    width: 40%;
    padding: 0 60px;
}
.contact .contact-list .contact-item{
    margin-bottom: 30px;
    font-size: 18px;
    color: #333333;
}
.contact .contact-list .contact-item:last-child{
    margin-bottom: 0;
}
.contact .contact-list .contact-item a{
    color: #333333;
}
.contact .contact-map{
    width: 60%;
    height: 100%;
    position: relative;
}
.contact .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .contact{
        margin-top: 50px;
        height: 360px;
    }
    .contact .contact-list{
        padding: 0 40px;
    }
    .contact .contact-list .contact-item{
        margin-bottom: 20px;
        font-size: 16px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1000px) {
    .contact{
        margin-top: 40px;
        height: 320px;
    }
    .contact .contact-list{
        padding: 0 20px;
    }
    .contact .contact-list .contact-item{
        margin-bottom: 10px;
        font-size: 14px;
    }
}
@media only screen and (max-width: 768px) {
    .title{
        font-size: 24px;
    }
    .contact{
        margin-top: 30px;
        height: auto;
    }
    .contact .contact-list{
        padding: 20px;
        width: 100%;
    }
    .contact .contact-map{
        display: none;
    }
    .contact .contact-list .contact-item{
        margin-bottom: 10px;
        font-size: 14px;
    }
}



/**
 * quote styles
 **/
.quote{
    margin: 0 auto;
    padding-top: 80px;
}
.quote .quote-title{
    font-weight: bold;
    font-size: 26px;
    color: var(--c);
}
.quote .quote-line{
    width: 100%;
    height: 4px;
    background: var(--c);
    margin-top: 10px;
}
.quote .quote-desc{
    font-size: 16px;
    color: #666666;
    margin-top: 40px;
}
.quote .quote-form{
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.quote .quote-form .quote-item{
    width: 32%;
    margin-top: 20px;
}
.quote .quote-form .quote-item .quote-item-title{
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
}
.quote .quote-form .quote-item .quote-item-title span{
    color: var(--c);
}
.quote .quote-form .quote-item .quote-item-input{
    width: 100%;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #E0E0E0;
    font-size: 16px;
    outline: none;
    padding-left: 14px;
    background: transparent;
}
.quote .quote-form .quote-content{
    width: 100%;
}
.quote .quote-form .quote-content .quote-item-content{
    width: 100%;
    height: 300px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    outline: none;
    resize: none;
    padding: 10px 14px;
    font-size: 16px;
    background: transparent;
}
.quote .quote-form .quote-item .quote-item-input::placeholder,
.quote .quote-form .quote-item .quote-item-content::placeholder{
    color: #999999;
}
.quote .quote-form .quote-btn {
    width: 100%;
    margin-top: 14px;
}



@media only screen and (min-width: 1000px) and (max-width: 1400px) {
    .quote .quote-title{
        font-size: 22px;
    }
    .quote .quote-line{
        margin-top: 8px;
    }
    .quote .quote-desc{
        font-size: 15px;
        margin-top: 30px;
    }
    .quote .quote-form{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item .quote-item-title{
        font-size: 15px;
        margin-bottom: 8px;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 15px;
    }
    .quote .quote-form .quote-content .quote-item-content{
        height: 240px;
        font-size: 15px;
    }
    .quote .quote-form .quote-btn{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .quote .quote-title{
        font-size: 18px;
    }
    .quote .quote-line{
        margin-top: 6px;
    }
    .quote .quote-desc{
        font-size: 14px;
        margin-top: 20px;
    }
    .quote .quote-form{
        margin-top: 0;
    }
    .quote .quote-form .quote-item{
        margin-top: 10px;
    }
    .quote .quote-form .quote-item .quote-item-title{
        font-size: 14px;
        margin-bottom: 6px;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 14px;
    }
    .quote .quote-form .quote-content .quote-item-content{
        height: 200px;
        font-size: 14px;
    }
    .quote .quote-form .quote-btn{
        margin-top: 6px;
    }
}
@media only screen and (max-width: 768px) {
    .quote{
        padding: 40px 10px 40px;
    }
    .quote .quote-form .quote-item{
        width: 100%;
    }
    .quote .quote-form .quote-item .quote-item-input{
        font-size: 12px;
        padding-left: 5px;
    }
}