.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    height: 60px;
}

.header .containerLeft {
    display: flex;
    align-items: center;
}

.header .containerLeft .logo {
    margin-right: 20px;
    background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/5ef5c94e4d04467cbd59d0a72c847390_mergeImage.png);
    width: 120px;
    height: 34px;
    background-size: contain;
}

.header .navbar {
    display: flex;
}

.header .navbarItem {
    padding: 5px 20px;
    border-radius: 50px;
    margin: 0 15px;
    cursor: pointer;
    font-family: 'Poppins-Medium';
}

.navbar .check {
    background: #f1f4f9;
}

.contactBtn {
    background: #6145f1;
    color: #fff;
    padding: 6px 30px;
    border-radius: 50px;
    box-shadow: 0px 5px 10px 4px rgba(153, 153, 153, 0.24);
    font-size: 15px;
    font-family: 'Poppins-SemiBold';
    cursor: pointer;
}

.header .contactBtn:hover {
    background: #533ACD;
}

main {
    background: #f1f4f9 !important;
}

.content {
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f1f4f9;
}

.content .title {
    font-size: 88px;
    display: flex;
    justify-content: center;
}

.content .title div {
    font-family: 'Poppins-Bold';
}

.content .text {
    background: linear-gradient(to right, #6949f0, #ffb4bc);
    -webkit-background-clip: text;
    color: transparent;
}

.content .desc {
    font-family: 'Poppins-Regular';
    font-size: 20px;
    max-width: 60%;
    margin: 0 auto;
}

.content .desc a,
.content .desc span{
    text-decoration: none !important;
}

footer{
    position: fixed;
    width: 100%;
    bottom: 0;
}

@media screen and (max-width:500px) {
    .content {
        padding: 140px 0;
        /* min-height: 650px;
        height: auto; */
        display: block;
    }

    .content .title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .content .desc{
        font-size: 15px;
        text-align: left;
        max-width: 100%
    }

    .tm{
        font-size: 20px;
        margin-top: 5px;
        margin-right: 5px
    }
}