.banner-container {
    display: flex;
    height: 228px;
    padding: 0px 48px;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-radius: 8px;
    background: #DFEBFF;
    margin: 24px 0;
    cursor: pointer;
    position: relative;
    top: 4px;
    direction: ltr;
}
.banner-inner-container {
    display: flex;
    width: 723px;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.banner-container .image-container {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;        
}
.banner-action-section .size-2{
    border-radius: 100px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    background-color: #4285F5;
    color: #FFF;
    padding-left: 16px;
}
.banner-action-section:hover {
    background-color: #417fe8;
    border-radius: 100px;
}
.banner-action-section svg {
    width: 24px;
    height: 24px;
}
.banner-content-container {
    display: flex;
    max-width: 500px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
    direction: rtl;            
}

.banner-upper-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;        
}

.banner-title {
    color: var(--black-03, #030303);
    text-align: right;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;        
}

.banner-title .higlighted-text {
    color: #4285F5;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.banner-description {
    color: rgba(3, 3, 3, 0.80);
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;        
}

@media (max-width: 767px){
    .banner-container {
        padding: 0px 16px;
        gap: 16px;
        height: auto;
        margin: 12px -15px;
        border-radius: 0;
    }

    .banner-inner-container {
        max-width: 500px;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
        flex: 1 0 0; 
    }

    .banner-container .image-container {
        width: 125px;
        height: 117.816px;
        background-size: 102px;
    }

    .banner-content-container {
        padding: 16px 0px;
        gap: 16px;         
    }

    .banner-upper-section {
        gap: 4px; 
    }

    .banner-title {
        font-size: 16px;
        font-style: normal;
        letter-spacing: -0.25px;  
    }

    .banner-title .higlighted-text {
        font-size: 16px;
        font-style: normal;
        letter-spacing: -0.25px;             
    }

    .banner-description {
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal; 
    }
}