:root {
  --bs-body-font-family: 'Asap', sans-serif;
}
html {
  overflow-y: scroll;
}
body {
    font-family: 'Asap', sans-serif;
    background: white;
    color: #142648;
}
.container {
    max-width: 1280px;
    font-optical-sizing: auto;
}
h1 {
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 0;
}
h2 {
    font-weight: 700;
    font-size: 28px;
}
h3 {
    font-weight: 600;
    font-size: 22px;
}
footer {
    margin-top: 4em;
    padding: 2em 0;
    font-size: 0.9em;
    background: #142648;
    color: rgb(230, 230, 230);
    line-height: 1.5em;
}
footer a {
    display: inline-block;
    color: white;
    padding: 1px 3px;
    border-radius: 3px;
    text-decoration: none;
    border-bottom: 1px solid #799bda;
}
footer a:hover {
    border-bottom: 1px solid white;
    color: #142648;
    background: rgb(230, 230, 230);
}
.no-bullet {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.bg-orp {
    background-color: #142648;
}
.asap-bold {
  font-family: "Asap", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 90;
}
.separator {
    background:#B92E38;
    margin: 3em 1em;
    height: 5px;
    border-radius: 10px;
}
.text-justify {
  text-align: justify;
  hyphens: auto;
}
.check-list {
    list-style-type: none;
    padding-left: 0;
}
.check-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0;
    line-height: 1.95em;
}
.check-list li::before {
    content: "\f26e"; /* kod Unicode dla bi-check */
    font-family: "bootstrap-icons";
    font-size: 1.3em;
    color: #333;
    vertical-align: middle;
    line-height: 1.0em;
    position: absolute;
    left: 0;
    top: 0.23em;
}
.specs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    justify-content: center;
}
.spec {
    position: relative;
    overflow: hidden;
    display: block;
    width: auto;
    height: 180px;
    background: white;
    border: 2px solid black;
    border-radius: .75em;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.spec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .75em;
    transition: transform 0.6s ease;
}
.spec:hover img {
    transform: scale(1.2);
}
.spec-name {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    line-height: 1.2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}
.spec-name h3 {
    padding-left: .7em;
    padding-bottom: .6em;
    padding-top: 50px;
    margin: 0;
    font-size: 1.1em;
    font-weight: bold;
    text-shadow: 0 0 2px black;
}
.logo {
    width: 100px;
    min-width: 60px;
    margin-right: 50px;
    max-width: clamp(60px, 12vw, 100px);
    margin-right: clamp(10px, 5vw, 50px);
}
.BSW {
    text-align: center;
    font-weight: 700;
    font-size: clamp(14px, 5vw, 48px);
}
.step-icon {
    padding-right: 1.5em;
}
@media (max-width: 599px) {
    .step-icon {
        padding-right: 1em;
    }
    .step-icon img {
        width: 36px;
    }
}
