.help-home{
    .help-home-banner{
        display: flex;
        justify-content: stretch;
        align-items: center;
        background-color: var(--quintiary-color);
        .img{
            width: 659px;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            img{
                width: 100%;
                height: auto;
            }
        }
        .info{
            width: 781px;
            .info-text{
                h2{
                    color: white;
                    text-align: center;
                    font-size: 32px;
                    font-style: normal;
                    font-weight: 500;
                    line-height: 36px;
                    max-width: 500px;
                    margin: 0 auto;
                }
                .info-text__buttons{
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 20px;
                    margin-top: 40px;
                    .btn{
                        width: 209px;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .help-home{
        .help-home-banner{
            flex-direction: column;
            padding-bottom: 40px;
            .img{
                width: 100%;
                height: auto;
                margin-bottom: 20px;
                img{
                    width: 100%;
                    height: auto;
                }
            }
            .info{
                width: 100%;
                .info-text{
                    h2{
                        font-size: 24px;
                        line-height: 28px;
                    }
                    .info-text__buttons{
                        flex-direction: column;
                        gap: 10px;
                        .btn{
                            width: auto;
                        }
                    }
                }
            }
        }
    }
    
}