.welcome_grid {
    display: grid;
    gap: 40px;
    justify-content: center;
    grid-template-columns: 1fr 1.4fr 1.4fr;
    align-items: end;
}
.welcome_item_wrap .welcome_info {
    border-radius: 12px;
    border: 1px solid #D0D0D0;
    background: var(--White, #FFF);
    padding: 32px;
}
.welcome_item {
    margin: 0 auto;
    padding-bottom: 20px;
}
.welcome_btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.welcome_btns .or_text {
    position: relative;
    text-align: center;
}
.welcome_btns .or_text p {
    position: relative;
    width: 50px;
    background: #fff;
    z-index: 1;
    color: #4E4E4E;
}
.welcome_btns .or_text:after {
    content: '';
    height: 1px;
    width: 100%;
    min-width: 230px;
    background: #D0D0D0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.welcome_info .qure__product-title{
    font-size: 28px;
    font-weight: 300;
    line-height: 32px;
}
.download_btn{
    background: #F6F6F7;
    color: #212428; 
    border: 0;
}


@media(min-width:768px){
    .welcome_item_wrap .welcome_info {
        min-height: 350px;
    }
}

@media(max-width:991px){
    .welcome_grid{
        grid-template-columns: 1fr;
    }
    .welcome_item_wrap .welcome_info{
        padding: 24px;
    }
}