.vertical-line {
  width: 1px;               
  background-color: #282829;   
  height: 40%;             
  min-height: 100px;       
}

.offerBorder {
    position: relative;
    padding-bottom: 4px;
}

.offerBorder::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0; 
    width: 60%;
    border-bottom: 1px solid #000;
}

.sessionBorder {
    border-bottom: 1px solid #000;
}

.sessionType:hover {
    cursor: pointer;
    color: #999;
}

.priceListBox {
    background-color: #eee;
}

.btnOutlineDark {
  background-color: transparent;
  color: black;
  border: 1px solid black;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.btnOutlineDark:hover {
  background-color: #282829;
  color: white;
}

.backgroundFirstBox {
    background-color: #eee !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.offer-gallery {
    position: relative;
    width: 100%;
    /* height: 90vh; lub dopasowane do obrazów */
    overflow: hidden;
}

.offer-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.offer-photo.active {
    opacity: 1;
    z-index: 1;
}

.offer-photo img {
    /* max-height: 90vh; */
    width: auto;
    max-width: 100%;
    transform: translateX(-75px);
}

@media (max-width: 1400px) {
    .offer-photo img {
        transform: none;
    }
}

.sessionType h6 {
    font-size: 15px;
}

@media (min-width: 768px) and (max-width: 1200px) {
    .sessionType h5 {
        font-size: 15px;
    }

    .sessionType h6 {
        font-size: 12px;
    }
}

@media (max-width: 767px) {
    .sessionType h5 {
        font-size: 16px;
    }

    .sessionType h6 {
        font-size: 14px;
    }

    #quoteDiv h2, #quoteDiv h3 {
        font-size: 20px;
    }

    #effectDiv h5 {
        font-size: 16px;
    }

    .backgroundFirstBox {
        padding-top: 0px !important;
        padding-bottom: 20px !important;
    }

    h2, h4 {
        font-size: 20px;
    }
}