#wrap .right {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#wrap .right .btn-row {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

#wrap .right .btn-row .btn {
    flex: 1;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #d0d0d0;
    height: 210px;
    width: 200px;
    position: relative; 
}

#wrap .right .btn-row .btn .right_left {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#wrap .right .btn-row .btn .right_left p {
    font-size: 22px;
    white-space: nowrap;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6rem; 
}

#wrap .right .btn-row .btn .right_left p span {
    font-size: 18px;
    font-weight: 700;
}

#wrap .right .btn-row .btn .right_right {
    width: 30%; 
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative; 
}

#wrap .right .btn-row .btn .right_right img {
    width: 70px;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media screen and (max-width: 900px) {

    #wrap  .right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
        width: 100%;
    }
    
    #wrap  .right .btn-row {
        display: contents; 
    }
    #wrap .right .btn-row .btn {
        padding: 1rem;
        border-radius: 5px;
        display: flex;
        justify-content: space-between;
        border: 1px solid #d0d0d0;
        height: auto;
        width: unset;
        position: relative;
    }
    #wrap .right .btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #f0f0f0;
        border: 1px solid #ccc;
        text-decoration: none;
        color: #333;
    }
    
    #wrap .right .right_left {
        flex-grow: 1;
    }
    
    #wrap .right .icon {
       width: 20%;
    }
    #wrap .right .btn-row .btn .right_right img {
        width: 50px;
        position: absolute;
        right: 0;
    }
    #wrap .right .btn-row .btn .right_left p {
        font-size: 18px;
    }
    #wrap .right .btn-row .btn .right_left p span {
        font-size: 17px;
    }
    #wrap .right .btn-row .btn .right_right {
        top: 5rem;
    }
 }