@charset "UTF-8";
:root {
  --cassiopeia-color-primary:#008000;
  --cassiopeia-color-link:#224faa;
  --link-color:#224faa;
  --link-color-rgb:34,79,170;
  --cassiopeia-color-hover:#424077;
  --link-hover-color:#424077;
  --link-hover-color-rgb:66,
  64,
  119
}

.footer {
  color: #fff;
  background-color: var(--cassiopeia-color-primary);
  background-image: linear-gradient(135deg,var(--cassiopeia-color-primary)100%,var(--cassiopeia-color-hover)100%);
  margin-top: 1em;
}


body {
    background: url('/images/tlo-02_1_bg.png') center center fixed;
    background-size: cover;
}

.site-grid {
    max-width: 1300px;
    margin: 0 auto;
    background: #ffffff;
}

.container-header {
    z-index: 10;
    background-color: #008000;
    background-image: linear-gradient(135deg, var(--cassiopeia-color-primary) 100%, var(--cassiopeia-color-hover) 100%);
    position: relative;
    box-shadow: inset 0 5px 5px #00000008;
}

.service-icon {
    font-size: 48px;
    color: #008000;
    margin-bottom: 15px;
}

.service-box {
    text-align: center;
    padding: 20px;
}

a {
    color: #00C200;
}

a:hover {
    color: #008000;
}

.container-bottom-a {
    background-color: #17191B;
}

.card {
    background-color: #17191B;
    border-color: #17191B;
}

.btn-primary {
    background-color: rgb(0, 138, 0);
}

.obracaj {
    display: inline-block;
    transition: transform 0.8s;
}

.obracaj:hover {
    transform: rotate(360deg);
}

/* aby menu nie znikało przy przewiajniu strony */
.container-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/*na dole strony ikona powrotu do góry */
#backToTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
    transition: all .3s ease;
}

#backToTop:hover {
    background: #0b5ed7;
    transform: scale(1.1);
}

/* dolny przycisk powrotu na gore  */
.me-2 {
    margin-right: 0 !important;
}
/*
.mb-2 {
    margin-bottom: 5.5rem !important;
}
*/

/*likwidacja podkreslenia linkuna glownej stronie*/
.glowna-link {
    text-decoration: none;
}

/* zmiana punktorow na symbol play*/
.fa-list {
    list-style: none; /* usuń domyślne punktory */
    padding-left: 15px;
}

.fa-list li::before {
    content: "\f0da";          /* fa-caret-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;          /* wymagane dla fa-solid */
    margin-right: 8px;
    color: #000;
}

/* ikona i tekst obok siebie na glownej */
.kontener {
    display: flex;
    gap: 20px; /* odstęp między sekcjami */
}

.lewy {
    width: 30px;
}

.prawy {
    width: 500px;
}

