.main-banner-slide{
    position: relative;
    display: flex;
    width: 100%;
    min-height: 420px;
    background: var(--heading-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main-banner-slide-dark{
    background: transparent;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media(min-width: 768px){
    .main-banner-slide{
        min-height: 480px;
    }
}

@media(min-width: 768px){
    .main-banner-slide{
        aspect-ratio: 4.8 / 1.85;
    }   
}

.main-banner-slide:not(.main-banner-slide-dark):before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.23), rgba(0, 0, 0, 0));
    z-index: 1;
}

.main-banner-slide a:not(.btn){
    display: inline-block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.main-bannes-info{
    position: relative;
    width: 100%;
    min-height: 100%;
    z-index: 2;
}

.main-bannes-info img{
    margin-bottom: -1px;
}

.main-bannes-info-text{
    padding: 25px 0;
}

.main-banner-title{
    font-size: 28px;
    font-weight: 700;
    line-height: 39.2px;
    letter-spacing: 0.005em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.main-banner-slide-dark .main-banner-title{
    color: var(--heading-color);
}

@media(min-width: 1200px) {
    .main-banner-title{
        font-size: 48px;
        font-weight: 600;
        line-height: 60px;
        margin-bottom: 20px;
    }
}

.main-banner-desc{
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
}

.main-banner-slide-dark .main-banner-desc{
    color: var(--heading-color);
}

@media(min-width: 1200px) {
    .main-banner-desc{
        font-size: 20px;
        line-height: 32px;
    }    
}

@media(min-width: 768px) {
    .main-bannes-info .btn{
        margin-top: 34px;
    }
}