/*--- main page ---*/
#pierwszaSekcja {
    margin-top: 40px;
}

/*--- maps section ---*/
.mapsSection {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--sectionColor);
    color: white;
}

.mapsSection iframe {
    display: block;
    width: 60%;
    height: 500px;
    border: none;
    padding: none;
    margin: none;
}

.rightMapsSection {
    width: 35%;
    padding: 2%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rightMapsSection h1 {
    margin: 0 auto 15px 0;
}
#godzinyPerDzien {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 50px;
    border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}
#godzinyPerDzien:last-of-type {
    border: none;
}
#godzinyPerDzien p {
    font-size: 20px;
}
.infoSection {
    width: 80%;
    margin: 20px auto 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    min-height: 250px;
}
.sideOne {
    width: 40%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sideOne img {
    display: block;
    width: 38%;
    aspect-ratio: 1/1;
}
.upperOne {
    width: 50%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.upperTwo {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.upperOne img {
    display: block;
    width: 38%;
}
.sideTwo {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.branza {
    width: 60%;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    
}
.branza h1 {
    font-weight: 100;
    font-size: 65px;
}
.alets {
    width: 70%;
    margin: 0 auto 0 auto;
    min-height: 50px;
    
}
/*
#alertRow {
    width: 80%;
    margin: 10px auto 0 auto;
    min-height: 50px;
    border-radius: 18px;
    background-color: brown;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    overflow: hidden;
}*/

@keyframes przesuwanieTekstu {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}
/*
.przelatujacy-tekst {
    white-space: nowrap;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}*/
.oferta {
    width: 80%;
    margin: 40px auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    /* Pozwala na przenoszenie elementów do nowej linii */
    gap: 60px;
}

.SectionRow {
    width: 80%;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.SectionRow h1 {
    font-size: 38px;
}
.oneOffer {
    display: flex;
    flex: 0 0 calc(33.333% - 60px);
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffffd8;
    border: 1px solid #ccc;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    font-size: 23px;
    /* Uwzględnia padding w szerokości */
    border-radius: 36px;
    -webkit-box-shadow: 0px 0px 15px -3px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 15px -3px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 15px -3px rgba(66, 68, 90, 1);
}
@media screen and (max-width: 1200px) {
    .alets {
        width: 100%;
    }
    .alertRow {
        width: 95%;
    }
    .branza {
        width: 100%;
        text-align: center;
    }
    .infoSection {
        width: 100%;
        flex-direction: column;
    }
    .sideOne {
        width: 100%;
    }
    .mapsSection {
        flex-direction: column;
        height: 700px;
    }
    .mapsSection iframe, .rightMapsSection {
        width: 100%;
        padding: 0;
    }
    #godzinyPerDzien {
        width: 100%;
    }
    .upperOne, .upperTwo {
        width: 100%;
    }
    .oferta {
        flex-wrap: nowrap;
        flex-direction: column;
    }
}