.banner-section {
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.banner-section .banner-content {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: #fff;
    text-align: right;
}

.banner-section .banner-badge {
    margin-bottom: 20px;
}

.banner-section .banner-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-section .banner-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-section .layui-btn-custom {
    background-color: #141543;
    border-color: #141543;
}

.banner-section .layui-btn-custom:hover {
    background-color: #0d47a1;
    border-color: #0d47a1;
}

.banner-section .layui-btn-outline {
    background-color: transparent;
    border-color: #141543;
    color: #141543;
}

.banner-section .layui-btn-outline:hover {
    background-color: #141543;
    color: #fff;
}
@media (max-width: 576px) {
    .banner-section .banner-content{
        right: 10px;
    }
    .banner-section .layui-btn-custom,.banner-section .layui-btn-outline{
        padding-left: 10px;
        padding-right: 10px;
    }
}