.bannerChat {
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0;
    visibility: hidden;
    background: #EDEFF7;
    overflow: visible;
  
}
/* .bannerChat .center {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
} */

.bannerChat .content{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    padding: 6.25rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    gap: 5rem;
    overflow: hidden;
    position: relative;
    min-height: 20rem;
}
.bannerChat .content img{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}
.bannerChat .content .center{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.bannerChat .content .leftContent{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: min(100%, 54rem);
}
.bannerChat .content .rightContent{
    display: flex;
    flex-direction: column;
    width: auto;
    flex-shrink: 0;
}

.bannerChat .content .rightContent.hubeetChatTrigger {
    cursor: pointer;
    border-radius: 6.25rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bannerChat .content .rightContent.hubeetChatTrigger .ph {
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.bannerChat .content .rightContent.hubeetChatTrigger:hover .ph,
.bannerChat .content .rightContent.hubeetChatTrigger:focus-visible .ph {
    background: #7efad0;
    color: #111834;
    box-shadow: 0 0 0 3px rgba(155, 253, 217, 0.3);
}

.bannerChat .content .rightContent.hubeetChatTrigger:active .ph {
    background: #05f29b;
}

.bannerChat .content .rightContent.hubeetChatTrigger:focus {
    outline: none;
}

.bannerChat .content .rightContent.hubeetChatTrigger.is-disabled {
    cursor: not-allowed;
}

.bannerChat .content .rightContent.hubeetChatTrigger.is-disabled .ph {
    background: #d9d9d9;
    color: #777777;
    box-shadow: none;
}

.bannerChat .content .rightContent .ph {
    font-size: 3rem;
    display: flex;
    color: #191E38;
    justify-content: center;
    align-items: center;
    width: 5.75rem;
    height: 5.75rem;
    background: #9BFDD9;
    border-radius: 6.25rem;
    z-index: 2;

}

.bannerChat .content h2{
    color: var(--primary-50, #EDEFF7);
   
    font-family: "Space Grotesk";
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 86.4px */
    width: 100%;
    margin: 0;
}
.bannerChat .content h4{
    color: var(--primary-50, #EDEFF7);
    font-family: "Space Grotesk";
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 60px */
    width: 100%;
    text-align: center;
    margin: 0;
}



@media only screen and (min-width: 1800px) {

    .bannerChat .content img {
        width: 100%;
        height: auto;
    }
   

}

@media only screen and (max-width: 1040px) {
    .bannerChat .content {
        padding: 5rem 4rem;
        gap: 3rem;
    }
    .bannerChat .content .center {
        gap: 2.5rem;
    }
}

@media only screen and (max-width: 820px) {
    .bannerChat .content {
        padding: 4rem 2.5rem;
    }
    .bannerChat .content .center{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
    }
    .bannerChat .content .leftContent{
        align-items: center;
        width: 100%;
    }
    .bannerChat .content h2{
        font-size: clamp(2.25rem, 8vw, 3.25rem);
        text-align: center;
    }
    .bannerChat .content h4{
        font-size: clamp(1.75rem, 6vw, 2.2rem);
        /* text-align: left; */
    }
    .bannerChat .content .rightContent{
        width: 100%;
        align-items: center;
    }
}

@media only screen and (max-width: 600px) {
    .bannerChat .content {
        padding: 3rem 1.5rem;
        min-height: 16rem;
    }
    .bannerChat .content .leftContent{
        gap: 1rem;
    }
    .bannerChat .content .rightContent .ph {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }
}