.banner-card-bg-1 {
    background-image: url('../../../assets/img/banner-1.png');
    padding: 50px 30px 50px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    z-index: 100;
    overflow: hidden;
    height: 300px;
}

.banner-card-bg-2{
    background-image: url('../../../assets/img/banner-2.png');
    padding: 50px 30px 50px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    z-index: 100;
    overflow: hidden;
    height: 300px;
}

.before-banner {
    position: relative;
    background-color: #121212;
    overflow: hidden;
    border-radius: 10px;
}

.before-banner:before{
    height: 450px;
    width: 450px;
    position: absolute;
    content: '';
    right: -80px;
    bottom: -50px;
    background-color: #525050;
    border-radius: 50%;
    z-index: 90;
}

.banner-section{
    padding: 50px 0;
}

.banner-content{
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}


.banner-subtitle {
    line-height: 26px;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
}

.banner-title{
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: bold;
}

.banner-btn, .banner-btn:hover {
    background: linear-gradient(to right, #E52727, #E52727);
    display: inline-block;
    padding: 12px 50px;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
}

