.welcome {
    position: relative;
    background-color: #fff5ed;
    height: 350px;
}

.welcome::before {
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;

}

.welcome .center {
    background-image: url(../images/bannerBG.png);
    background-size: 100% 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.wel_left {
    flex-basis: 60%;
    font-size: 19px;
}

.wel_left a {
    font-weight: 700;
    font-size: 38px;
    color: #000;
}

.wel_left a:hover {
    text-decoration: underline;
}

.wel_right {
    flex-basis: 40%;
}

@media screen and (max-width:769px) {
    .welcome .center {
        background-size: cover;
        background-position: right center;
        justify-content: center;
        padding: 0 15px;
        gap: 0;
    }

    .wel_left {
        flex-basis: 100%;
        margin: 0 auto;
    }

    .wel_right {
        flex-basis: 0;
    }
}