.free-move-x{
    overflow: hidden;
    /* background: #ffffff; */
    }
.free-move-x > div{
    position: relative;
    }
.free-move{
    padding-top: 80px;
    padding-bottom: 50px;
    }
.ven-btn{
    display: block;
    position: absolute;
    margin: auto;
    top: 121px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: fit-content;
    background: #ffffff;
    border-radius: 200px;
    -webkit-box-shadow: inset 0px 0px 15px 4px rgb(0 0 0 / 20%);
    box-shadow: 0px 0px 15px 4px rgb(0 0 0 / 20%);
    }
.ven-btn > div{
    position: relative;
    padding: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    }
.ven-btn > div > h3{
    font-weight: 600;   
    }
.ven-btn > div > a{
    text-decoration: none;
    font-size: larger;
    color: var(--color-button1, #123f5b);
    -webkit-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    transition: all 200ms ease;
    }
.ven-btn > div > a:focus,
.ven-btn > div > a:active,
.ven-btn > div > a:hover{
    color: var(--color-button2, #009640);   
    }
.ui-draggable{
    cursor: pointer;
    }
.fm-itms{
    width: fit-content;
    height: 300px;
    margin: auto;
    margin-left: 0px;
    margin-top: 0px;
    top: 0px;
    left: 0px;
    /* -webkit-transition: all 100ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear; */
    }
.fm-itms > img{
    width: auto;
    height: 100%;
    transform: scale(1);
    -webkit-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    }
.fm-itms:hover > img{
    transform: scale(1.05);
    }