#my_ankets{
    margin: 50px 0;
}

.my_ankets{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, 440px);
    grid-auto-rows: 790px
}

.my_anket{
    background: #282828;
    border-radius: 25px;
    overflow: hidden;
    padding-bottom: 30px;
    box-shadow: 0px 5px 20px 9px rgba(0, 0, 0, 0.05);
}

.my_photo{
    height: 240px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
}

.service_price_my {
    width: 50%;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 25px;
    color: #5A5A5A;
}

.service_price_my span{
    color: #F5F5F6;
}

.girl_price{
    border-width: 1px;
}

.btn_transparent{
    border: 2px solid #E61560;
    border-radius: 10px;
    padding: 12px 0 11px;
    font-size: 20px;
    transition: 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.btn_transparent:hover{
    background-color: #E61560;
    color: #fff;
}

.anket_btns{
    display: grid;
    text-align: center;
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
}

.add_anket{
    background: #282828;
    box-shadow: 0px 5px 20px 9px rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #F5F5F6;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    flex-direction: column;
    transition: 0.3s ease;
}

.add_anket div{
    width: 100%;
    margin-top: 20px;
}

.add_anket:hover{
    box-shadow: 0px 5px 20px 9px rgb(230 21 96 / 27%);
}

.mobile_tiltle_block{
    display: none;
}

@media (max-width: 980px){
    .my_ankets{
        grid-template-columns: repeat(auto-fill, 420px);
    }
    .add_anket{padding: 200px 0;}

    .mobile_tiltle_block{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .mob_title{
        font-weight: 600;
        font-size: 26px;
    }

    .add_anket_mob{
        color: #B5B5B9;
        font-size: 20px;
        display: flex;
        align-items: center;
    }

    .add_anket_mob img{
        margin-left: 15px;
        width: 30px;
    }

    #my_ankets{
        margin: 30px 0;
    }
}

@media (max-width: 460px){
    .my_ankets{
        grid-template-columns: auto;
        grid-auto-rows: auto;
    }

    .my_photo {
        height: 50vw;
    }

    .my_anket{
        padding-bottom: 0;
    }

    .add_anket_mob{
        font-size: 14px;
    }

    .add_anket_mob img{
        margin-left: 10px;
        width: 20px;
    }

    .mob_title{
        font-size: 20px;
    }
}