.tail {
    margin-top: 64px;
}

.tail .tail__inner {
    position: relative;
}

.tail .content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 32px 46px;

    display: flex;
    justify-content: space-between;
    align-items: end;
}

.tail .content .text{
    display: flex;
    flex-direction: column;
    font-size: 108px;
    font-weight: bolder;
    background-image: linear-gradient(to right, #29c2e1 0%, #afedf8 20%, #afedf8 30%, #29c2e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 0.9;
}
.tail .content .logo{
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: end;
}
.tail .content .logo img{
    height: 100%;
    object-fit: cover;
}
.tail .content .logo span{
    cursor: pointer;
    margin-left: 16px;
    height: 26px;
    border-radius: 30px;
    border: 1px solid #819eb5;
    padding: 0 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #afedf8;
}
.tail .content .logo span i{
    margin-left: 4px;
    font-size: 10px;
}

@media screen and (min-width: 1400px) {
    .tail .content .text{
        font-size: 138px;
    }
}

@media screen and (max-width: 992px) {
    .tail .content .text{
        font-size: 68px;
    }
}
@media screen and (max-width: 724px) {
    .tail .content .text{
        font-size: 42px;
    }
}