.slick-slide img {
    border-radius: 0 15px 0 15px;
    border: 2px solid #ff8c14b3;
}

.desc__text, .container {
    min-width: 0;
    max-width: 100%;
}

@media(max-width: 900px) {
    .table-wrap {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        min-width: 0;
        max-width: 100%;
    }
    .desc__table {
        min-width: 500px;
    }
}


.welcome__link {
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 1.3em;
    color: #e9e9e9;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    margin-top: 20px;
}

.welcome__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #9b602c;
    transition: width .25s ease;
}

.welcome__link:hover::after {
    width: 100%;
}

.welcome__link img {
    width: 30px;
    margin-right: 8px;
}