.top-banner{
    position: relative;
}

.top-banner-item{
    line-height: 0;
}

.top-banner-image{
    position: relative;
    width: 100%;
    border-radius: 189px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .top-banner-image{
        min-width: 67%;
        border-radius: 0;
    }
}

.top-banner-image img{
    max-width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

@media (min-width: 768px) {
    .top-banner-image img{
        aspect-ratio: auto;
    }
}

.top-banner-text{
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--background-color);
    padding: 16px 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .top-banner-text{
        font-size: 18px;
        line-height: 22px;
    }
}

@media (min-width: 768px) {
    .top-banner-text > div{
        width: 120%;
    }
}

.top-banner-title{
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    line-height: 25px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .top-banner-title{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}

.top-banner-line{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1
}

.top-banner-text .btn {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .top-banner-text .btn{
        max-width: 211px;
        margin-top: 30px;
    }
}

.top-banner-line img{
    max-width: 100%;
    object-fit: contain;
}