.row1Section{
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.row1Picture{
    justify-content: center;
    align-items: center;
}
.rowImage{
    width: 65%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    margin-top: 20px;
}
.row1InfoText{
    background-color: var(--blueClrOp21);
    padding: 5px 15px ;
    border-radius: 7px;
    width: fit-content;
}
.row1Title{
    margin-top: 20px;
    position: relative;
}
.row1MainText{
    margin-top: 20px;
}
.row1InfoDiv{
    overflow: hidden;
    order: 2;
}
.row1Title::after{
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background-image: linear-gradient(to right , transparent , var(--bgClr) , transparent);
    opacity: .7;
    animation: shine 3s linear infinite;
}
@media screen and (min-width:769px) {
    .row1Section{
     grid-template-columns: 1fr 1fr;  
     gap: 20px;
    }
    .row1InfoDiv{
        max-width: 500px;
    }
    .row1Picture{
        justify-content: flex-end;
        order: 2;
    }
    .rowImage{
        max-height: 500px;
        object-position: left center;
        margin: 0 auto 0 0 ;
    }
}
/* needInfoSection */
.needInfoSection{
    margin-top: 40px;
    padding: 20px 0;
}
.needInfoHeader{
    padding-right: 40px;
}
.needInfoBody{
    margin-top: 5px;
}
.infoGrid{
    gap: 15px;
    margin-top: 30px;
}
.infoItem{
    padding: 7px 15px 7px 45px;
    background-position: left 7px top 7px;
    background-repeat: no-repeat;
    background-size: 22px;
    background-image: url("/static/assets/icons/done.svg");
}
.lastInfoItem{
    margin-top: 35px;
    padding: 15px 15px 15px 45px;
    position: relative;
    background-color: var(--blackOp3);
    width: fit-content;
    border-radius: 5px;
}
.lastInfoItem::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--blueClr2);
    border-radius: 50%;
    position: absolute;
    right: 15px ;
    top: 50%;
    transform: translateY(-50%);
    animation: opacity 1s linear infinite reverse;
}
@media screen and (min-width:769px) {
    .needInfoSection::after{
        content: "";
        position: absolute;
        left: 0;
        bottom: -30px;
        width: 260px;
        height: 260px;
        opacity: .4;
        background-image: url("/static/assets/images/coworking-crypto-trading-and-market-research.webp");
        background-repeat: no-repeat;
        background-position: 0;
        background-size: 260px;
    }
    .infoGrid{
        grid-template-columns: 1fr 1fr;
        padding-left: 60px;
    }
}
@keyframes opacity {
    from{
        opacity: .2;
    }
    to{
        opacity: .6;
    }
}
/* attentionSection */
.attentionSection{
    margin-top: 20px;
    padding: 20px 0;
    background-color: var(--blackOp3);
}
.attentionText{
    line-height: 1.9em;
    padding: 10px 20px;
    text-indent: 29px;
}
.attentionText::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--clrPrimary2);
    border-radius: 50%;
    position: absolute;
    left: 23px;
    top: 19px;
    animation: blank3 1s linear infinite alternate-reverse;
}
/* benefitsSection */
.benefitsSection{
    margin-top: 40px;
    padding: 40px 0;
}
.benefitInfoText{
    background-color: var(--blueClrOp21);
    padding: 5px 15px ;
    border-radius: 7px;
    width: fit-content;
}
.benefitTitle{
    margin-top: 20px;
}
.benefitsGrid{
    margin-top: 40px;
    gap: 25px;
    padding: 0 25px;
}
.benefitItem{
    height: 110px;
    padding: 0 100px 0 15px;
    background-color: var(--bgClr);
    border-radius: 5px;
    box-shadow: 0 0 35px 3px var(--blueClrOp21);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: right 30px center;
}
.benefitItem.analyze{
    background-image: url("/static/assets/icons/analyze.svg");
    background-size: 45px;
}
.benefitItem.data{
    background-image: url("/static/assets/icons/data.svg");
    background-size: 42px;
}
.benefitItem.time{
    background-image: url("/static/assets/icons/time2.svg");
    background-size: 42px;
}
.benefitItem.rank{
    background-image: url("/static/assets/icons/rank.svg");
    background-size: 40px;
}
.benefitItem.manage{
    background-image: url("/static/assets/icons/manage.svg");
    background-size: 40px;
}
.benefitItem.access{
    background-image: url("/static/assets/icons/access.svg");
    background-size: 40px;
}
.benefitItem.upgrade{
    background-image: url("/static/assets/icons/upgrade.svg");
    background-size: 40px;
}
@media screen and (min-width:769px) {
    .benefitsGrid{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (min-width:1100px) {
    .benefitsGrid{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
/* stepsSection */
.stepsSection{
    margin-top: 60px ;
}
.stepsPagination{
    margin: 30px auto 0;
    width: 94%;
}
.stepsPagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background-color: var(--bgClr);
    border-radius: 50%;
    border: 2px solid var(--blueClr3);
    z-index: 10;
    position: relative;
}
.stepsPagination .swiper-pagination-bullet-active{
    border: 2px solid var(--blueClr2);
}
.stepsPagination .swiper-pagination-bullet:after{
    position: absolute;
    left: 0;
    top: 10px;
    transform: translate(-50% ,50%);
    white-space: nowrap;
    font: .95em 'faFont',Arial ;
    color: var(--blueClr3);
}
.stepsPagination .swiper-pagination-bullet:nth-child(1)::after{
    content: "Step 1";
}
.stepsPagination .swiper-pagination-bullet:nth-child(2)::after{
    content: "Step 2";
}
.stepsPagination .swiper-pagination-bullet:nth-child(3)::after{
    content: "Step 3";
}
.stepsPagination .swiper-pagination-bullet-active::after{
    color: var(--blueClr2);
}
.stepsPagination::after{
    content: "";
    height: 0;
    width: 98%;
    position:absolute;
    left: 1%;
    top: 5px;
    border-top: 2px dashed var(--blueClr3);
    z-index: 0;
}
.stepSwiper{
    margin-top: 50px;
    width: 100%;
    height: 320px;
    max-height: 320px;
}
.stepWrapper{
    margin-top: 20px;
    font-size: .9em;
    padding: 10px 0 !important;
}
.stepItem{
    padding: 30px 20px 110px;
    border-radius: 7px;
    background-color: var(--bgClr);
    position: relative;
}
.stepItem.swiper-slide-active{
    border: 2px solid var(--blackOp2);
}
.stepItem::before{
    content: "";
    position: absolute;
    left: 5px;
    bottom: 5px;
    height: 128px;
    width: 128px;
    background-size: 120px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
    opacity: .2;
}
.stepItem p ,.stepItem h3{
    z-index: 10;
}
.stepItem1::before{
    background-image: url("/static/assets/icons/analyizePrice.svg");
}
.stepItem2::before{
    background-image: url("/static/assets/icons/user.svg");
    background-size: 100px;
}
.stepItem3::before{
    background-image: url("/static/assets/icons/credit.svg");
    background-size: 100px;
}
.stepItem4::before{
    background-image: url("/static/assets/icons/check.svg");
    background-size: 95px;
}
.stepItem::after{
    width: 70px;
    height: 70px;
    background-color: var(--clrPrimary5);
    border-radius: 50%;
    position: absolute;
    right: 10px;
    bottom: 10px;
    color: var(--bgClr);
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    font: 3em 'poppins',Arial;
    opacity: .5;
}
.stepItem1::after{
    content: "1";
}
.stepItem2::after{
    content: "2";
}
.stepItem3::after{
    content: "3";
}
.stepItem4::after{
    content: "4";
}
@media screen and (min-width:850px) {
    .stepWrapper{
        padding: 20px 15px !important;
    }
    .stepItem.swiper-slide-active{
        box-shadow: 0 0 5px 3px var(--blackOp3);
    }
    .stepItem{
        box-shadow: 0 0 5px 3px transparent;
    }
}
/* payWaysSection */
.payWaysSection{
    margin-top: 50px;
    padding: 40px 0;
}
.payWaySwiper{
    width: 100%;
    margin-top: 30px;
}
.payWayItem{
    width: 100%;
    padding: 40px 0;
}
.payWayTitle{
    margin-top: 10px;
}
.payWayImage{
    width: 50%;
    height: auto;
    aspect-ratio: 2/1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    margin: 0 auto;
}