/* s-lets-talk */
.s-lets-start {
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.lets-start-content {
    display: grid;
    width: 100%;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: repeat(auto-fill, minmax(0, 1fr));
    position: relative;
    gap: max(3vw, 20px);
    margin: max(8vw, 20px) 0;
}

.lets-start-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width : 991px) {

    .lets-start-content {
        display: block;
        margin: max(3vw, 10px) 0;
    }

    .lets-start-content .lets-start-btn {
        margin-top: 20px;
    }

}