/* STYLE DLA STRONY "O NAS" */

.onas-saya {
    margin: 100px 0;
}
.onas-saya h2 {
    margin-bottom: 40px;
}
.onas-saya p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 60px;
}
.onas-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.onas-image-single {
    max-width: 32%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}
.onas-image-single img {
    height: 300px;
    min-width: fit-content;
}

.onas-zalety {
    margin: 120px 0 150px;
}
.onas-zalety .special-text {
    font-size: 30px;
}
.onas-zalety h2 {
    margin-bottom: 40px;
}
.onas-powody {
    justify-content: space-evenly;
}
.onas-powody-single img {
    width: 120px;
    margin-bottom: 20px;
}
.onas-powody-single h3 {
    font-size: 30px;
    font-weight: 400;
}

/*Tutaj zaczyna się CSS dla tabletów*/
@media only screen and (min-width: 767px) and (max-width: 992px) {
    .onas-zalety h2 {
        margin-bottom: 50px;
    }
}
@media only screen and (max-width: 992px) {
    .onas-powody-single img {
        width: 100px;
    }
    .onas-powody-single h3 {
        font-size: 25px;
    }
}

/*Tutaj zaczyna się CSS dla komórek*/
@media only screen and (max-width: 767px) {
    .onas-saya .special-text, 
    .onas-zalety .special-text {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .onas-saya p {
        font-size: 16px;
    }
    .onas-powody-single {
        margin-bottom: 25px;
    }
    .onas-powody-single p {
        max-width: 80%;
        margin: auto;
    }
}