.info13_flex_item_wrapper {
    min-height: 200px;
}
.info13_flex_item_img {
    position: relative;
    width: 100%;
}

.info13_flex_item_content {
    position: absolute;
    width: 1200px;
    margin-left: -600px;
    top: 50%;
    transform: translateY(-50%);
    left: 50%;
    display: flex;
}
.info13_flex_item_content_direction {
    display: flex;
    flex-direction: column;
}
.info13_align_left {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.info13_align_center {
    justify-content: center;
    align-items: center;
    text-align: center;
}
.info13_align_right {
    justify-content: flex-end;
    align-items: flex-end;
    text-align: right;
}
.info13_title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}
.info13_desc {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 30px;
}
.info13_button {
    width: 120px;
    padding: 8px 12px;
    color: #fff;
    border-radius: 4px;
    text-align: center;
}
.info13_button:hover {
    color: #fff;
    text-decoration: none;
}
@media (max-width: 768px) {
    .info13_flex_item_content {
        width: 80vw;
        margin-left: -40vw;
    }
    .info13_flex_item_img {
        height: 600px;
        object-fit: cover;
    }
    .info13_title {
        font-size: 32px;
    }
    .info13_desc {
        font-size: 16px;
        line-height: 26px;
    }
}
