.custom-banner
{
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px 30px;
    min-height: 350px;
    height: 100%;
}
.custom-banner-overlay
{
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.3;
    transition: all .3s;
}
.custom-banner-content 
{
    z-index: 2;
    max-width: 85%;
    position: relative;
}

.custom-banner-logo
{
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}
.custom-banner-logo img 
{
    max-height: 60px;
    width: 180px;
}
.custom-banner-title {
    font-size: var(--e-global-typography-primary-font-size);
    margin: 0 0 10px;
}
.custom-banner-title.medium-title {
    font-size: var(--e-global-typography-secondary-font-size);
}

.custom-banner-subtitle {
    font-size: var(--e-global-typography-accent-font-size);
    margin: 0 0 10px;
}

.custom-banner-description {
    font-size: var(--e-global-typography-9cb16d4-font-size);
    margin: 0;
}

.custom-banner-description.medium-desc
{
    font-size: var(--e-global-typography-5a8d07b-font-size);
}

.custom-banner-link {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.elementor-widget-widget_banner
{
    width: 100%;
}

.elementor-widget-widget_banner.banner-width-100 {
  width: 100%;
}

.elementor-widget-widget_banner.banner-width-60 {
  width: 60%;
}

.elementor-widget-widget_banner.banner-width-50 {
  width: 50%;
}


/*

.banner-width-100 {
  width: 100%;
}

.banner-width-60 {
  width: 60%;
}

.banner-width-50 {
  width: 50%;
}

.banner-width-50,
.banner-width-60,
.banner-width-100 {
  flex: 0 0 auto;
} */


.custom-banner:hover .banner-right-link:before
{
    width: 140px;
    height: 140px;
}
.custom-banner:hover .banner-right-link img
{
    transform: scale(1.05);
}
.custom-banner:hover .custom-banner-overlay
{
    opacity: 0.5;
}

.custom-banner .banner-right-link {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100px;
    width: 100px;
}
.custom-banner .banner-right-link::before {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 130px;
    height: 130px;
    background: #ffffff;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    z-index: 1;

    transition: all .3s;
}

.banner-right-link-plus,
.banner-right-link-icon {
  position: absolute;
  height: auto;
  transition: all .3s;
}

.banner-right-link-plus {
    bottom: 20px;
    left: 40px;
    z-index: 2;
    width: 28px;
}

.banner-right-link-icon 
{
    top: 25px;
    right: 7px;
    z-index: 1;
    rotate: 90deg;
    width: 40px;
}

@media screen and (max-width: 1024px)
{
    .custom-banner
    {
        min-height: 300px;
    }
} 

@media screen and (max-width: 800px)
{
    .custom-banner .banner-right-link::before
    {
        width: 100px;
        height: 100px;
    }
    .custom-banner:hover .banner-right-link:before
    {
        width: 110px;
        height: 110px; 
    }
    .banner-right-link-plus
    {
        bottom: 10px;
        left: 50px;
        width: 20px; 
    }
    .banner-right-link-icon
    {
        top: 45px;
        right: 8px;
        width: 30px;
    }
    .custom-banner-logo img
    {
        max-width: 100px;
        object-fit: contain;
    }
}
@media screen and (max-width: 800px)
{
    .custom-banner
    {
        min-height: 250px;
        padding: 20px;
    }
    .custom-banner-content
    {
        width: 90%;
    }
    .custom-banner-logo
    {
        top: 15px;
        right: 15px;
    }
}