#sign-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px !important;
    margin: 25px auto;
    gap: 10px;
}

.sign-left{
    width: calc(60% - 10px);
    display: flex;
    align-items: center;
}

.sign-left img{
    border-radius: 5px;
    width: 100%;
}

.sign-right{
    display: flex;
    align-items: center;
    width: 40%;
}

.sign-right > div{
    width: 100%;
}

.bottom-links{
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 15px;
    justify-content: center;
}

.bottom-links span{ 
    color: #202020;
    font-size: 13px;
}

@media only screen and (max-width:1024px){
    .sign-left, .sign-right{
        width: 100%;
        max-width: 800px;
        margin: auto !important;
    }
}