.banner {
    --fs-title:  24px;
    --fs-p:      14px;
    --fs-p-spec: 11px;
}

.banner {
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    
    background-color: var(--myBackgroundColor);

    overflow: hidden;
}

.banner, .banner-inner, .banner-inner > * {
    max-width: 100%;
}

.banner > span.banner-background-overlay {
    position: absolute;
    height: 200%;
    width: 70%;
    
    border-radius: 0 50% 50% 0;
    
    background-color: var(--myOverlayColor);
    z-index: 0;
}

.banner-inner {
    display: flex;
    flex-wrap: nowrap;

    width: 100%;

    container-type: inline-size;
    container-name: banner-inner;

    z-index: 1;
}

.banner-inner img {
    max-width: 100%;
}

.banner .h2,
.banner p,
.banner .btn.btn-secondary {
    color: white !important;
}

.banner .left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;

    width: 50%;
    
    margin-block: 5%;
    margin-left: min( 5%, 40px );
    margin-right: 0;
    padding: min( 1rem, 1% );

    gap: 2rem;
}

.banner :is(h1, h2, h3, h4, h5, h6, .h2, p) {
    line-height: 1.2 !important;
    margin: 0 !important;
}

.banner .h2 {
    font-size: var(--fs-title) !important;
}

.banner p {
    font-size: var(--fs-p) !important;
}

.banner p.banner-special-paragraph {
    font-size: var(--fs-p-spec) !important;
}

.banner .buttons-wrap {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

.banner .buttons-wrap .btn {
    white-space: nowrap;
    font-size: var(--fs-p) !important;
}

.banner .left-column .btn-icon-right img {
    max-width: var(--fs-p);
}

.banner .buttons-wrap .btn.btn-transparent {
    background: transparent !important;
}

.banner .buttons-wrap .btn.btn-transparent:hover {
    color: #fff;
}

.banner .banner-inner .btn:focus {
    box-shadow: none !important;
}

.banner .right-column {
    display: flex;
    justify-content: flex-end;
    align-items: end;

    margin-block: 5% 2%;
    padding-block: 0;
    padding-inline: 2% 0;
    width: 60%;

    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
}

.banner-inner .right-column img {
    position: absolute;
    width: 15%;
    max-width: 100px;
    bottom: 0;
}
.banner-inner .right-column img.img-left {
    right: min( 17%, 120px );
}
.banner-inner .right-column img.img-right {
    right: min( 5%, 20px );
}

.banner-inner .right-column img:first-child:nth-last-child(1) {
    width: 35%;
    max-width: 150px;
    right: min( 5%, 20px ) !important;
}

@media only screen and (min-width: 1700px) {
    .banner .right-column {
        background-position: right center;
        background-size: contain;
    }
}

@media only screen and (max-width: 600px) {
    .banner-inner {
        flex-direction: column;
        min-height: 250px;
    }

    .banner > .background-overlay-img {
        object-fit: cover;
        width: 100%;
    }

    .banner-inner > .left-column,
    .banner-inner > .right-column {
        width: 100%;
    }

    .banner-inner > .left-column {
        width: 100%;
        padding: 7%;
        margin: 0;
        gap: 2rem;
    }

    .banner-inner > .left-column {
        margin: 0;
    }

    .banner .buttons-wrap {
        flex-direction: column;
        justify-content: space-between;
    }

    .banner .buttons-wrap .btn.btn-transparent {
        min-height: unset;
    }

    .banner-inner > .right-column {
        margin-block: 0 !important;
        margin-inline-start: 0;
    }

    .banner-inner > .right-column img.img-left {
        display: none;
    }

    .banner-inner > .right-column img.img-right {
        --img_width: min(40%, 150px);

        position: absolute;
        width: var(--img_width);
        right: calc(( 93% - var(--img_width) - 112px ) / 2) !important;
        top: auto;
        left: auto;
        bottom: -15%;
    }

}

@media only screen and (max-width: 460px) {
    .banner-inner > .right-column img.img-right {
        bottom: -18vw;
    }

}

@container banner-inner (min-width: 400px) {
    .banner .right-column {
        margin-block: 15px;
        background-position: right center !important;
        background-size: contain !important;
    }
}