.row1Section{
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.row1Picture{
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.rowImage{
    width: 60%;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    transform: rotateY(180deg);
}
.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;
    }
}
/* benefitsSection */
.benefitsSection{
    margin-top: 60px;
    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;
    background-image: url("/static/assets/icons/speed.svg");
}
.benefitItem.security{
    background-image: url("/static/assets/icons/security.svg");
    background-size: 42px;
}
.benefitItem.transfer{
    background-image: url("/static/assets/icons/transfer.svg");
    background-size: 42px;
}
.benefitItem.money{
    background-image: url("/static/assets/icons/money.svg");
    background-size: 46px;
}
.benefitItem.support{
    background-image: url("/static/assets/icons/typeSupport.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 */
.stepsContainer{
    margin-top: 120px;
}
.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: "مرحله ۱";
}
.stepsPagination .swiper-pagination-bullet:nth-child(2)::after{
    content: "مرحله ۲";
}
.stepsPagination .swiper-pagination-bullet:nth-child(3)::after{
    content: "مرحله ۳";
}
.stepsPagination .swiper-pagination-bullet:nth-child(4)::after{
    content: "مرحله ۴";
}
.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;
    height: 100% !important;
    width: 100%;
}
.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;
    height: auto !important;
}
.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";
}
.stepItem div{
    height: 100% !important;
}
@media screen and (min-width:850px) {
    .stepSwiper{
        height: 100% !important;
    }
    .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;
    background-color: var(--blackOp3);
}
.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;
}
/* needInfoSection */
.needInfoSection{
    margin-top: 40px;
    padding: 20px 0;
}
.needInfoHeader{
    padding-left: 40px;
}
.needInfoBody{
    margin-top: 5px;
}
.infoGrid{
    gap: 15px;
    margin-top: 25px;
}
.infoItem{
    padding: 7px 45px 7px 15px;
    background-position: right 7px top 7px;
    background-repeat: no-repeat;
    background-size: 22px;
    background-image: url("/static/assets/icons/done.svg");
}
.lastInfoItem{
    margin-top: 35px;
    padding: 15px 45px 15px 15px;
    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: 220px;
        height: 220px;
        opacity: .4;
        background-image: url("/static/assets/icons/infoBg.webp");
        background-repeat: no-repeat;
        background-position: 0;
        background-size: 220px;
    }
    .infoGrid{
        grid-template-columns: 1fr 1fr;
    }
}
@keyframes opacity {
    from{
        opacity: .2;
    }
    to{
        opacity: .6;
    }
}
/* faqSection */
.faqSection{
    margin-top: 60px !important;
    background-color: var(--blackOp3);
    padding: 60px 0;
}
.faqList{
    margin-top: 40px;
    gap: 20px;
}
.questionDiv{
    background-color: var(--bgClr);
    border-radius: 7px;
    box-shadow: 0 0 15px 5px var(--blackOp2);
}
.checboxInput{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 35px;
    height: 35px;
    background-color: var(--clrPrimary2Op2);
    position: absolute;
    top: 15px;
    left: 15px;
    border-radius: 7px;
    pointer-events: none;
    background-image: url("/static/assets/icons/arowDownGold.svg");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: left 50% top 60% ;
    transition: transform .4s ,background-position .4s;
}
.checboxInput:checked{
    transform: rotateX(180deg);
    background-position: left 40% top 60%;
}
.questionLabel{
    cursor: pointer;
    padding: 20px;
    padding-left: 45px;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out , padding .6s;
    padding: 0 15px 0 45px ;
}
.checboxInput:checked + .answer{
    max-height: 300px;
    transition: max-height .3s ease-in , padding .6s;
    padding: 0 15px 20px 45px ;
}