html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.carousel-indicators li::before,
.carousel-indicators li::after,
.carousel-indicators li::marker {
    content: '';
}

.offer-btn {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

    .offer-btn span {
        color: white;
        font-size: 1.5rem;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
    }


    .offer-btn:hover {
        -moz-transform: scale(0.9,0.9);
        -webkit-transform: scale(0.9,0.9);
        transform: scale(0.9,0.9);
        cursor: pointer;
    }

.product-image {
    max-height: 400px;
    object-fit: cover;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

    .thumbnail:hover, .thumbnail.active {
        opacity: 1;
    }

.calendar a {
    text-decoration: none;
    color: #2C3E50;
}

.nav-item {
    font-size: 1.2rem !important;
}

.hero-section h1 {
    padding: 0px 0 8px;
    position: relative;
    text-align: center; /* Upewnia się, że tekst jest na środku */
    display: inline-block; /* Dopasowuje szerokość do tekstu */
    margin: 0 auto; /* Centruje h2 w obrębie rodzica */
}

.hero-section {
    text-align: center; /* Zapewnia, że cały kontener hero-section jest wycentrowany */
}

    .hero-section h1::before {
        content: "";
        position: absolute;
        left: 29%;
        bottom: 10px;
        width: 100px;
        height: 14px;
        transform: translateX(-50%) skew(-12deg);
        background: rgba(255,204,0);
        z-index: -1;
    }

.hero-section-equipment h1 {
    padding: 0px 0 8px;
    position: relative;
    text-align: center; /* Upewnia się, że tekst jest na środku */
    display: inline-block; /* Dopasowuje szerokość do tekstu */
    margin: 0 auto; /* Centruje h2 w obrębie rodzica */
}

.hero-section-equipment {
    text-align: center; /* Zapewnia, że cały kontener hero-section jest wycentrowany */
}

    .hero-section-equipment h1::before {
        content: "";
        position: absolute;
        left: 42%;
        bottom: 10px;
        width: 260px;
        height: 14px;
        transform: translateX(-50%) skew(-12deg);
        background: rgba(255,204,0);
        z-index: -1;
    }

.nav-item i {
    margin-right:10px
}

.img-services {
    height: 248px;
    width: 100%;
    object-fit: cover;
}

.hero-section-services h1 {
    padding: 0px 0 8px;
    position: relative;
    text-align: center; /* Upewnia się, że tekst jest na środku */
    display: inline-block; /* Dopasowuje szerokość do tekstu */
    margin: 0 auto; /* Centruje h2 w obrębie rodzica */
}

.hero-section-services {
    text-align: center; /* Zapewnia, że cały kontener hero-section jest wycentrowany */
}

.hero-section-services h1::before {
    content: "";
    position: absolute;
    left: 49%;
    bottom: 10px;
    width: 120px;
    height: 14px;
    transform: translateX(-50%) skew(-12deg);
    background: rgba(255,204,0);
    z-index: -1;
}

.lead {
    font-size: 18px;
}

.services-element{
    font-size: 2rem;
    font-weight:500;
}

.hero-section-contact h1 {
    padding: 0px 0 8px;
    position: relative;
    text-align: center; /* Upewnia się, że tekst jest na środku */
    display: inline-block; /* Dopasowuje szerokość do tekstu */
    margin: 0 auto; /* Centruje h2 w obrębie rodzica */
}

.hero-section-contact {
    text-align: center; /* Zapewnia, że cały kontener hero-section jest wycentrowany */
}

    .hero-section-contact h1::before {
        content: "";
        position: absolute;
        left: 47%;
        bottom: 10px;
        width: 120px;
        height: 14px;
        transform: translateX(-50%) skew(-12deg);
        background: rgba(255,204,0);
        z-index: -1;
    }

.contact-details p {
    font-size: 1.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
}

    .cookie-banner button {
        background-color: #4CAF50;
        color: white;
        border: none;
        padding: 10px 20px;
        margin-left: 10px;
        cursor: pointer;
    }
