.banner-inner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    border-radius: 4px;
    padding: 40px 60px;
    min-height: 350px;
    align-items: center;
    text-decoration: none;
}

.banner-content {
    max-width: 500px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
}

.banner-content h1,
.banner-content h2,
.banner-content h3,
.banner-content h4,
.banner-content h5,
.banner-content h6 {
    font-size: 35px;
    font-weight: 800;
    margin: 0;
}

@media (max-width:1100px) {
    .banner-inner {
        padding: 40px;
    }

    .banner-content h1,
    .banner-content h2,
    .banner-content h3,
    .banner-content h4,
    .banner-content h5,
    .banner-content h6 {
        font-size: 30px;
    }
}

@media (max-width:768px) {
    .banner-inner {
        padding: 20px;
    }
}

/* Banner Center */

.banner-inner.align-center {
    justify-content: center;
}

/* Banner Right */

.banner-inner.align-right {
    justify-content: right;
}

@media (max-width:768px) {
    .banner-inner.align-right {
        justify-content: center;
        text-align: center;
    }
}