.title-sec{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-sec.inverse{
    flex-direction: row-reverse;
}

.title-sec .sec-left{
    flex: 5;
    max-width: 568px;
}
.title-sec .sec-m {
    flex: 1;
}
.title-sec .sec-right{
    flex: 5;
    max-width: 480px;
}

.title-sec .sec-right_img {
    width: 100%;
}

.page-title{
    text-align: center;
    margin-top: 160px;
}

.card-sec{
    display: flex;
    margin-top: 64px;
}

.card-item{
    flex: 1;
    position: relative;
    background-color: #141933;
    border-radius: 16px;
    padding:40px 0px 48px 48px;
}

.card-gap{
    width: 40px;
    height: 40px;
}

.card-item_logo {
    width: 100px;
}

.card-item_dot{
    position: absolute;
    width: 138px;
    right: 0px;
    top: 0px;
    z-index: 2
}

.card-item_desc{
    margin-top: 24px;
    padding-left: 36px;
    position: relative;
    color: var(--secondary-text);
    font-size: 16px;
    min-height: 72px;
    font-weight: 400;
    line-height: 24px;
}

.card-item_desc:before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 4px;
    background-color: #252B45;
}



.h2-p{
    font-size: 20px;
    line-height: 28px;
    color: #808AB8;
    margin-top: 24px;
}
.tapes-button .icon {
    transition: all .3s
}
.tapes-button:hover .icon {
    transform: translate(5px, 0);
}

.services-sec{
    display: flex;
    flex-wrap: wrap;

    margin-top: 64px;

}

.services-item{
    max-width: 336px;
    margin-top: 0px;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    transition: background .3s;
}

.services-item:hover{
    background: #141933;
}

.services-item:hover .item-icon {
    box-shadow: 0 8px 24px 0 #4F3DF5;
}

.services-item .item-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 0px;
    background-color: var(--primary);
    border-radius: 50%;
    transition: all .3s;
    background-image: -webkit-gradient(linear, left top, right top, from(#4F3DF5), to(#7D66F2));
    background-image: -o-linear-gradient(left, #4F3DF5 0%, #7D66F2 100%);
    background-image: linear-gradient(90deg, #4F3DF5 0%, #7D66F2 100%);
}

.services-item .item-icon_img {
    width: 40px;
    vertical-align: middle;
}

.services-item .item-title {
    margin-top: 24px;
}

.services-item .h3-p {
    color: var(--secondary-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 8px;
}


.business-sec{
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -40px;
}

.business-card{
    height: 192px;
    width: calc(50% - 20px);
    background-color: #141933;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 32px;
    margin-bottom: 40px;
    box-sizing: border-box;
    text-align: left;
    transition: all .3s;
}

.business-card:hover{
    box-shadow: 0 0 0 2px #7D66F2;
}

.business-card .card-left{
    text-align: center;
    font-size: 0px;

    padding: 0 48px 0 16px
}

.business-card .card-img {
    width: 40px;
}

.business-card .card-right {
    flex:1;
}

.business-card .card-right_desc{
    font-size: 16px;
    color: var(--secondary-text);
    line-height: 24px;
    font-weight: 400;
    margin-top: 16px;
}

.bottom-tapes{
    background-image: linear-gradient(90deg, #4F3DF5 0%, #EC4899 100%);
}

.index-h2_p{
    margin-top: 16px;
    text-align: center;
}

@media (max-width: 800px) {
    .card-sec {
        display: block;
    }

    .title-sec {
        flex-direction: column;
        justify-content: center
    }
    .title-sec.inverse{
        flex-direction: column;
    }

    .title-sec .sec-m {

        height: 64px;
        flex:none;
    }
}

.join-sec{
    margin-top: 88px;
    display: flex;
    justify-content: space-between;
}

.join-item{
    flex: 1;
    text-align: center;
}

.join-gap {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background-color: #252B45;
    margin-top: 118px;
}

.join-item_img {
    width: 80px;
    vertical-align: middle;
}

.join-item_title {
    font-size: 24px;
    line-height: 33px;
    color: #fff;
    margin-top: 24px;
    font-weight: bolder;
}

.join-item_desc{
    font-size: 16px;
    line-height: 24px;
    margin-top: 8px;
    color: var(--secondary-text);
}

@media (max-width: 950px) {
    .business-card{
        width: 100%;
    }

    .join-sec{
        flex-direction: column;
        align-items: center;
    }

    .join-gap{
        margin: 20px;
        height: 80px;
        width: 4px;
    }
}

@media (max-width: 480px) {

    .business-card{
        width: 100%;
        padding-top: 24px;
        display: block;
        height: auto;
    }

    .card-left{
        margin-bottom: 16px;
    }

    .card-right_title{
        text-align: center;
    }
}