/* STYLE DLA STRONY "REZERWACJE" */

.rezerwacje-cont {
    margin-bottom: 100px;
    text-align: center;
}
.rezerwacje-cont p {
    font-size: 25px;
}
.rezerwacje-cont p:first-of-type {
    font-weight: 900;
}
.rezerwacje-cont .link-btn {
    display: inline-block;
    padding: 0;
    margin-top: 25px;
    background-color: unset;
    color: #212529 !important;
    font-size: 32px;
}
.rezerwacje-cont .link-btn:hover {
    color: #BD1220 !important;
}
.rezerwacje-grafika {
    max-height: 250px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 50px;
}
.rezerwacje-grafika img {
    margin-top: -100px;
}


/*Tutaj zaczyna się CSS dla tabletów*/
@media only screen and (min-width: 767px) and (max-width: 992px) {
    .rezerwacje-cont p:first-of-type {
        font-size: 28px;
    }
}

/*Tutaj zaczyna się CSS dla komórek*/
@media only screen and (max-width: 767px) {
    .rezerwacje-cont p {
        font-size: 20px;
    }
    .rezerwacje-cont p:first-of-type {
        font-size: 22px;
    }
    .rezerwacje-cont .link-btn {
        font-size: 28px;
    }
    .rezerwacje-grafika {
        max-height: unset;
    }
    .rezerwacje-grafika img {
        margin-top: 0;
    }
}