.whatscall {
    background-image: linear-gradient(var(--main-background) ,var(--second-background-lo), var(--main-background)), url("../img/homeWhatscall.png");
    background-position: center;
    background-size: cover;
    height: 405px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 50px 70px;
}

.whatscall.reverse {
    flex-direction: row-reverse;
}

.whatscall.solid {
    background-image: none;
    background-color: transparent;
}

.whatscall-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.whatscall img {
    width: 380px;
    height: 380px;
}

@media (max-width: 980px) {
    .whatscall {
        height: auto;
        justify-content: center;
        padding: 50px 35px;
    }

    .whatscall-content {
        align-items: center;
    }

    .whatscall.solid {
        flex-direction: column;
    }
}