* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "SF Pro SC", "HanHei SC", "SF Pro Text", "Myriad Set Pro", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-size: 10px;
}

.container {
    max-width: 98rem;
    margin: 0 auto;
    padding: 0 2.2rem;
}

.container a {
    display: block;
    text-decoration: none;
}

header {
    position: fixed;
    top: 0;
    z-index: 1400;
    width: 100%;
    height: 4.4rem;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(2rem);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -1rem;
}

.nav-list-larger .nav-item:nth-of-type(2) {
    margin-left: 400px;
}

.nav-list-mobile {
    display: none;
}

.nav-link {
    font-size: 1.4rem;
    color: #fff;
    padding: 0 1rem;
    transition: opacity .5s;
}

.nav-link:hover {
    opacity: .7;
}

.nav-link-apple {
    width: 1.6rem;
    height: 4.4rem;
    background: url("./svg/sharechat.svg") center no-repeat;
    background-size: contain;
}

.nav-link-search {
    width: 1.6rem;
    height: 4.4rem;
    background: url("./svg/search.svg") center no-repeat;
}

/*------------------------navgation bar------------------------*/

.contact-hero{
    height: 60vh;
    background: url("./images/contact-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.contact h1{
    padding-top: 30px;
    text-align: center;
    font-size: 67px;
}
.contact .icon-text{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 100px auto;
    width: 1000px;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
}
.contact .icon-text .webchat-icon{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: url("./svg/add-webchat.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text .email-icon{
    width: 45px;
    height: 45px;
    margin: 0 auto;
    background: url("./svg/email.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text .location-icon{
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background: url("./svg/location.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text ,
.webchat-add,
 .location ,
 .send-email{
    margin-top: 25px;
}
/*------------------------ huabei hero ------------------------*/

footer{
    width: 100%;
    height: 360px;
    background-color: #000000CC;
}
.footer-content{
    width: 1390px;
    height: 298px;
    margin: 0 auto;
    padding: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.footer-content .logo{
    height: 50px;
    background: url("./svg/sharechat.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.footer-content p{
    margin-top: 40px;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
}
.share{
    display: flex;
}
.youtube{
    height: 30px;
    width: 30px;
    background: url("./svg/youtube.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.twitter{
    height: 30px;
    width: 30px;
    background: url("./svg/twitter.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}
.facebook{
    height: 30px;
    width: 30px;
    background: url("./svg/facebook.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 10px;
}
.quick-link h5{
    text-align: center;
    font-size: 18px;
    color: #F5F5F5;
    opacity: .8;
}
.quick-link a{
    text-align: center;
    font-size: 15px;
    color: #F5F5F5;
    display: block;
    text-decoration: none;
    margin-top: 6px;
    opacity: 0.7;
}
.quick-link a:hover{
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.footer-right{
    justify-self: center;
}
.footer-right h5{
    color: #F5F5F5;
    font-size: 18px;
    font-weight: 400;
    opacity: .8;
}
.footer-right h6{
    color: #F5F5F5;
    font-size: 15px;
    font-weight: 400;
    opacity: .7;
    margin-top: 6px;

}
.add-webchat{
    margin: 10px 0;
    display: flex;
    width: 100px;
    height: 100px;
    background: url("./svg/webchat-qr.svg");
    background-color: white;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
}
.webchat-logo{
    width: 28px;
    height: 28px;
    background: url("./svg/WeChat\ logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
footer hr{
    border: 0.1px rgb(80, 80, 80) solid;
}
.copyright{
    font-size: 14px;
    color: #F5F5F5;
    opacity: .7;
    text-align: center;
    padding: 20px;
}


@media screen and (max-width: 767px) {
    header {
        height: 4.8rem;
        transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),
            height .56s cubic-bezier(0.32, 0.08, 0.24, 1);
    }

    header .container {
        padding: 0;
    }

    .nav-list {
        margin-top: 0;
    }

    .nav-list-mobile{
        display: flex;
        padding: 0 15px;
    }

    .nav-item {
        width: 4.8rem;
        height: 4.8rem;
        display: flex;
        justify-content: center;
    }

    .nav-item-hidden {
        display: none;
    }

    .mobile-menu {
        position: relative;
        z-index: 1500;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-menu .line {
        position: absolute;
        width: 1.7rem;
        height: 1px;
        background-color: white;
        transition: margin-top .3192s cubiz-bezier(0.04, 0.04, 0.12, 0.96);
    }

    .mobile-menu .line-top {
        margin-top: 3px;
    }

    .mobile-menu .line-bottom {
        margin-top: -0.4rem;
    }

    .active .line-top {
        margin-top: 0;
        transform: rotate(45deg);
        transition: transform .3192s .1s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    }



    .active .line-bottom {
        margin-top: 0;
        transform: rotate(-45deg);
        transition: transform .3192s .1s cubic-bezier(0.04, 0.04, 0.12, 0.96);
    }

    .active {
        height: 100%;
        background-color: #000;
    }

    .nav-link-apple {
        width: 1.8rem;
        height: 4.8rem;
        position: relative;
        z-index: 1500;
    }

    .nav-link-search {
        width: 1.6rem;
        height: 4.8rem;
        transition: opacity 3s;
    }

    .nav {
        position: relative;
    }

    .nav-link {
        font-size: 1.7rem;
        padding: 0;
        margin: auto 0;
    }

    .nav-list-larger {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        display: block;
        padding: 10.5rem 5rem;
        z-index: 1000;
        opacity: 0;
        box-sizing: border-box;
        transition: opacity;
    }

    .active .nav-list-larger {
        width: 100%;
        height: 100vh;
        opacity: 1;
    }

    .active .nav-link-search {
        opacity: 0;
        transition: opacity .3s;
    }

    .nav-list-larger .nav-item {
        width: 100%;
        justify-content: flex-start;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list-larger .nav-item:nth-child(8) {
        border-bottom: none;
    }

    .nav-list-larger .nav-item:nth-child(9) {
        border-bottom: none;
    }

    .nav-list-larger .nav-item:nth-of-type(2) {
        margin-left: 0;
    }

    .active .nav-list-larger .nav-item {
        animation: fadeIn 1s ease-in;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }

    }

.contact-hero{
    height: 30vh;
    background: url("./images/contact-background.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.contact h1{
    padding-top: 0;
    text-align: center;
    font-size: 30px;
}
.contact .icon-text{
    display: grid;
    grid-template-columns: 1fr;
    margin: 50px auto;
    padding: 20px;
    width: 100vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.contact .icon-text .webchat-icon{
    width: 45px;
    height: 45px;
    margin: 0 auto ;
    margin-top: 20px;
    background: url("./svg/add-webchat.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text .email-icon{
    width: 35px;
    height: 35px;
    margin: 0 auto;
    margin-top: 20px;
    background: url("./svg/email.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text .location-icon{
    width: 45px;
    height: 45px;
    margin: 0 auto;
    margin-top: 20px;
    background: url("./svg/location.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.contact .icon-text ,
.webchat-add,
 .location ,
 .send-email{
    margin-top: 20px;
}

footer {
    width: 100%;
    height: 420px;
    background-color: #000000CC;
}

.footer-content {
    width: 100vw;
    height: 350px;
    margin: 0 auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr;
}

.footer-content .logo {
    height: 30px;
    width: 30px;
    margin: 0 auto;
    background: url("./svg/sharechat.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.footer-content p {
    margin-top: 10px;
    margin-bottom: 0px;
    color: white;
    font-size: 14px;
    text-align: center;
}

.footer-center {
    display: none;
}

.share {
    display: none;
}

.quick-link {
    display: none;
}

.footer-right {
    display: block;
    justify-self: center;
    align-items: center;
}

.footer-right h5 {
    display: none;
    color: #F5F5F5;
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
}

.footer-right h6 {
    color: #F5F5F5;
    font-size: 15px;
    font-weight: 400;
    opacity: 1;
    margin-top: 6px;

}

.add-webchat {
    margin: 10px 0;
    display: flex;
    width: 120px;
    height: 120px;
    background: url("./images/server-webchat.png");
    background-color: white;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
}

.webchat-logo {
    display: none;
    width: 28px;
    height: 28px;
    background: url("./svg/WeChat\ logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

footer hr {
    border: 0.1px rgb(80, 80, 80) solid;
}

.copyright {
    font-size: 14px;
    color: #F5F5F5;
    opacity: .7;
    text-align: center;
    padding: 20px;
}
}



