.sub-region2 {
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 16px; 
    display: flex;
}

.row {
    position: relative; 
    top: 100px; 
    align-self: stretch; 
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 16px; 
    display: inline-flex;
}

.block1 {
    width: 120px; 
    height: 120px;  
    background: linear-gradient(0deg, #F2F2F2 0%, #F2F2F2 100%), linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%); 
    border-radius: 8px; 
    overflow: hidden; 
    flex-direction: column; 
    justify-content: space-between; 
    align-items: flex-end; 
    display: inline-flex
}

.block2 {
    width: 120px; 
    height: 120px; 
    background: linear-gradient(0deg, #F2F2F2 0%, #F2F2F2 100%), linear-gradient(45deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.10) 100%); 
    border-radius: 8px; 
    overflow: hidden; 
    justify-content: flex-end; 
    align-items: flex-start; 
    gap: 20px; 
    display: flex;
}

.drag-drop {
    position: relative; 
    top: 0px; 
    padding: 10px; 
    border: 3px #D9D9D9 dotted; 
    display: inline-flex;
    transition: transform 0.3s ease;
    width: 120px; 
    height: 120px; 
    background: transparent;
    overflow: hidden; 
    align-items: center;
    justify-content: center; 
    gap: 20px; 
}

.drag-drop:hover {
    transform: scale(1.1);
    border-radius: 10px;
}

.drag-drop img {
    width: 30px; 
    height: 30px; 
    left: 32px; 
    top: 45px; 
    position: absolute;
}

.text-2 div {
    top: 90px;
}

.region_3 {
    position: relative;
    top: 30px;
    justify-content: flex-start; 
    align-items: flex-start; 
    gap: 24px; 
    display: inline-flex;
}