* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(0, 0, 0, .30);
}

.navbar-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 35px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    width: 115px;
    height: 55px;
    object-fit: contain;
}

.navbar nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar nav a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .2s;
}

.navbar nav a:hover {
    color: #e00000;
}

.nav-button {
    padding: 11px 21px;
    border: 1px solid #e00000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-button:hover {
    background: #e00000;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {
    display: inline-block;
    padding: 15px 26px;
    border: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .2s;
}

.btn-red {
    background: #e00000;
    color: #fff;
}

.btn-red:hover {
    background: #b90000;
    transform: translateY(-2px);
}

.btn-light {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

.btn-light:hover {
    background: #fff;
    color: #111;
}

.btn-white {
    background: #fff;
    color: #111;
}

.btn-white:hover {
    background: #111;
    color: #fff;
}


/* =========================================
   GŁÓWNA - HERO
   ========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        url('/assets/img/hero.webp')
        center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.55),
            rgba(0,0,0,.30)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 70px;
}

.hero-small {
    display: block;
    color: #e00000;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
}

.hero h1 {
    margin-top: 18px;
    font-size: clamp(52px, 7vw, 90px);
    line-height: .92;
    letter-spacing: -4px;
    font-weight: 900;
}

.hero h1 span {
    color: #e00000;
}

.hero p {
    max-width: 600px;
    margin-top: 28px;
    color: #ddd;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}


/* =========================================
   SEKCJE
   ========================================= */

.section-title {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-title span,
.section-label {
    color: #e00000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.section-title h2 {
    margin-top: 12px;
    font-size: clamp(38px, 5vw, 60px);
    line-height: .95;
}

.section-title p {
    margin-top: 18px;
    color: #777;
}


/* =========================================
   USŁUGI NA STRONIE GŁÓWNEJ
   ========================================= */

.services {
    padding: 110px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 300px;
    padding: 32px;
    background: #f3f3f3;
    border-bottom: 3px solid transparent;
    transition: .25s;
}

.service-card:hover {
    background: #111;
    color: #fff;
    border-bottom-color: #e00000;
    transform: translateY(-4px);
}

.service-icon {
    color: #e00000;
    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    margin-top: 55px;
    font-size: 20px;
    line-height: 1.2;
}

.service-card p {
    margin-top: 14px;
    color: #777;
    font-size: 14px;
}

.service-card:hover p {
    color: #aaa;
}

.service-card a {
    display: inline-block;
    margin-top: 18px;
    color: #e00000;
    font-size: 10px;
    font-weight: 800;
}


/* =========================================
   O NAS NA STRONIE GŁÓWNEJ
   ========================================= */

.about {
    padding: 110px 0;
    background: #111;
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-content h2 {
    margin-top: 15px;
    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
}

.about-content h2 span {
    color: #e00000;
}

.about-content p {
    margin-top: 22px;
    color: #aaa;
    font-size: 16px;
}

.text-button {
    display: inline-block;
    margin-top: 28px;
    color: #e00000;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================
   DLACZEGO MY
   ========================================= */

.why {
    padding: 110px 0;
    background: #f3f3f3;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-item {
    padding-top: 22px;
    border-top: 2px solid #ddd;
}

.why-item strong {
    color: #e00000;
    font-size: 12px;
}

.why-item h3 {
    margin-top: 18px;
    font-size: 17px;
}

.why-item p {
    margin-top: 10px;
    color: #777;
    font-size: 14px;
}


/* =========================================
   CTA
   ========================================= */

.cta {
    padding: 75px 0;
    background: #e00000;
    color: #fff;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.cta h2 {
    margin-top: 12px;
    font-size: clamp(35px, 5vw, 55px);
    line-height: .95;
}


/* =========================================
   STARA SEKCJA KONTAKTU - GDYBY JESZCZE
   BYŁA W INDEX.PHP
   ========================================= */

.contact {
    padding: 110px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact h2 {
    margin-top: 15px;
    font-size: clamp(40px, 5vw, 58px);
    line-height: .95;
}


/* =========================================
   PODSTRONY O NAS / USŁUGI
   ========================================= */

.subpage {
    min-height: 100vh;
    background: #f5f5f5;
}

.subpage-hero {
    min-height: 480px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88),
            rgba(0,0,0,.42)
        ),
        url('/assets/img/hero.webp')
        center / cover no-repeat;

    padding-top: 80px;
}

.subpage-hero .container {
    width: min(1200px, 90%);
}

.subpage-hero span {
    color: #e00000;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.subpage-hero h1 {
    margin-top: 15px;
    font-size: clamp(55px, 8vw, 95px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.subpage-hero p {
    margin-top: 25px;
    color: #ddd;
    font-size: 18px;
}

.subpage-content {
    padding: 100px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.subpage-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.subpage-text h2 {
    margin-top: 15px;
    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
}

.subpage-text h2 strong {
    color: #e00000;
}

.subpage-text p {
    margin-top: 22px;
    color: #666;
    font-size: 16px;
}

.services-page {
    padding: 100px 0;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {
    padding: 45px 0;
    background: #080808;
    color: #fff;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer .logo {
    font-size: 20px;
    font-weight: 900;
}

.footer .logo span {
    color: #e00000;
}

.footer p {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}

.footer-right {
    text-align: right;
}


/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {

    .navbar nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid,
    .subpage-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-image img,
    .subpage-image img {
        height: 350px;
    }

    .subpage-hero {
        min-height: 420px;
    }

    .subpage-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        text-align: left;
    }

    .nav-button {
        display: none;
    }

    .site-logo {
        width: 100px;
        height: 50px;
    }
}

/* =========================================
   STRONA - USŁUGI
   ========================================= */

.services-page {
    background: #f5f5f5;
    min-height: 100vh;
}

.services-page-hero {
    min-height: 500px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.45)
        ),
        url('/assets/img/hero.webp')
        center / cover no-repeat;

    padding-top: 80px;
}

.services-page-hero span {
    color: #e00000;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.services-page-hero h1 {
    margin-top: 18px;

    font-size: clamp(55px, 8vw, 95px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.services-page-hero h1 strong {
    color: #e00000;
}

.services-page-hero p {
    max-width: 600px;

    margin-top: 28px;

    color: #ddd;

    font-size: 18px;
}


/* LISTA USŁUG */

.services-list {
    padding: 100px 0;
}


/* POJEDYNCZA USŁUGA */

.service-detail {
    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 50px;

    padding: 75px 0;

    border-bottom: 1px solid #ddd;
}

.service-detail:first-child {
    padding-top: 0;
}

.service-detail-number {
    color: #e00000;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-detail-content {
    max-width: 850px;
}

.service-detail-content > span {
    color: #e00000;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.service-detail-content h2 {
    margin-top: 12px;

    font-size: clamp(35px, 5vw, 58px);
    line-height: .95;
    letter-spacing: -2px;
}

.service-detail-content p {
    margin-top: 22px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.service-detail-content h3 {
    margin-top: 35px;

    font-size: 18px;
}

.service-detail-content ul {
    margin-top: 20px;

    padding-left: 25px;
}

.service-detail-content li {
    margin-bottom: 15px;

    padding-left: 8px;

    color: #666;

    font-size: 15px;
    line-height: 1.7;
}

.service-detail-content li::marker {
    color: #e00000;
}

.service-detail-content strong {
    color: #222;
}


/* MOBILE */

@media (max-width: 700px) {

    .services-page-hero {
        min-height: 430px;
    }

    .services-page-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .services-page-hero p {
        font-size: 15px;
    }

    .services-list {
        padding: 70px 0;
    }

    .service-detail {
        grid-template-columns: 1fr;

        gap: 20px;

        padding: 55px 0;
    }

    .service-detail-number {
        font-size: 12px;
    }

    .service-detail-content h2 {
        font-size: 38px;
    }

    .service-detail-content p,
    .service-detail-content li {
        font-size: 14px;
    }
}


/* =========================================
   PODSTRONA O NAS
   ========================================= */

.about-page {
    background: #fff;
    min-height: 100vh;
}

.about-page-hero {
    min-height: 480px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.45)
        ),
        url('/assets/img/about.webp')
        center / cover no-repeat;

    padding-top: 80px;
}

.about-page-hero span {
    color: #e00000;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.about-page-hero h1 {
    margin-top: 15px;

    font-size: clamp(55px, 8vw, 95px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.about-page-hero p {
    margin-top: 25px;

    color: #ddd;
    font-size: 18px;
}


/* TREŚĆ */

.about-page-content {
    padding: 110px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-page-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;
}

.about-page-text h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
    letter-spacing: -2px;
}

.about-page-text h2 strong {
    color: #e00000;
}

.about-page-text p {
    margin-top: 25px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.about-page-text p strong {
    color: #e00000;
}


/* WARTOŚCI */

.about-page-values {
    padding: 110px 0;

    background: #111;
    color: #fff;
}

.about-values-title {
    margin-bottom: 60px;
}

.about-values-title h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
}

.about-values-title h2 strong {
    color: #e00000;
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.about-value {
    padding-top: 25px;

    border-top: 1px solid #333;
}

.about-value > span {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.about-value h3 {
    margin-top: 20px;

    font-size: 18px;
}

.about-value p {
    margin-top: 12px;

    color: #999;

    font-size: 14px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 900px) {

    .about-page-content {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-page-image img {
        height: 400px;
    }
}

@media (max-width: 600px) {

    .about-page-hero {
        min-height: 420px;
    }

    .about-page-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .about-page-hero p {
        font-size: 15px;
    }

    .about-page-content {
        padding: 70px 0;
    }

    .about-page-image img {
        height: 330px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-page-text h2,
    .about-values-title h2 {
        font-size: 40px;
    }
}


/* =========================================
   REKRUTACJA / PRACA
   ========================================= */

.recruitment-content {
    padding: 110px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: start;
}

.recruitment-intro h2 {
    margin-top: 15px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: .92;
    letter-spacing: -2px;
}

.recruitment-intro h2 strong {
    color: #e00000;
}

.recruitment-intro > p {
    max-width: 600px;

    margin-top: 25px;

    color: #666;

    font-size: 17px;
    line-height: 1.8;
}

.recruitment-email {
    margin-top: 35px;
    padding: 25px;

    border-left: 4px solid #e00000;

    background: #f3f3f3;
}

.recruitment-email span {
    display: block;

    color: #777;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.recruitment-email a {
    display: block;

    margin-top: 8px;

    color: #e00000;

    font-size: 18px;
    font-weight: 700;
}


/* OFERUJEMY */

.recruitment-offer {
    padding: 40px;

    background: #111;
    color: #fff;
}

.recruitment-heading {
    display: flex;
    align-items: center;
    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid #333;
}

.recruitment-heading span {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.recruitment-heading h2 {
    font-size: 30px;
}

.recruitment-list {
    list-style: none;

    margin: 0;
    padding: 10px 0 0;
}

.recruitment-list li {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #292929;

    color: #ddd;

    font-size: 15px;
}

.recruitment-list li:last-child {
    border-bottom: 0;
}

.recruitment-list li span {
    color: #e00000;

    font-weight: 900;
}


/* POSZUKUJEMY */

.recruitment-positions {
    padding: 110px 0;

    background: #f3f3f3;
}

.positions-header {
    margin-bottom: 55px;
}

.positions-header h2 {
    margin-top: 12px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: .95;
}

.positions-header p {
    margin-top: 15px;

    color: #777;
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.position-card {
    position: relative;

    padding: 45px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.position-card-dark {
    background: #111;
    color: #fff;
}

.position-number {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.position-card > span {
    display: block;

    margin-top: 35px;

    color: #999;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.position-card h3 {
    margin-top: 10px;

    font-size: 34px;
    line-height: .95;
}

.position-line {
    width: 45px;
    height: 3px;

    margin: 30px 0;

    background: #e00000;
}

.position-card h4 {
    margin-bottom: 18px;

    font-size: 11px;
    letter-spacing: 2px;
}

.position-card ul {
    padding-left: 20px;
}

.position-card li {
    margin-bottom: 13px;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}

.position-card-dark li {
    color: #aaa;
}

.position-card li::marker {
    color: #e00000;
}

.position-card li small {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 12px;
}


/* CTA */

.recruitment-cta {
    padding: 100px 0;

    background: #e00000;
    color: #fff;
}

.recruitment-cta > .container > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.recruitment-cta h2 {
    margin-top: 15px;

    font-size: clamp(45px, 6vw, 75px);
    line-height: .9;
    letter-spacing: -3px;
}

.recruitment-cta p {
    margin-top: 25px;

    color: #350000;

    font-size: 16px;
}

.recruitment-mail-button {
    display: inline-block;

    margin-top: 25px;
    padding: 16px 25px;

    background: #111;
    color: #fff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: .2s;
}

.recruitment-mail-button:hover {
    background: #fff;
    color: #111;
}


/* MOBILE */

@media (max-width: 850px) {

    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .recruitment-content,
    .recruitment-positions {
        padding: 70px 0;
    }

    .recruitment-offer,
    .position-card {
        padding: 30px;
    }

    .position-card h3 {
        font-size: 30px;
    }

    .recruitment-cta {
        padding: 75px 0;
    }
}


/* =========================================
   PODSTRONA PRACA
   ========================================= */

.work-page {
    background: #fff;
    min-height: 100vh;
}


/* HERO */

.work-page-hero {
    min-height: 500px;

    display: flex;
    align-items: center;

    color: #fff;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.45)
        ),
        url('/assets/img/hero.webp')
        center / cover no-repeat;

    padding-top: 80px;
}

.work-page-hero span {
    color: #e00000;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.work-page-hero h1 {
    margin-top: 18px;

    font-size: clamp(55px, 8vw, 95px);
    line-height: .9;
    letter-spacing: -4px;
    font-weight: 900;
}

.work-page-hero h1 strong {
    color: #e00000;
}

.work-page-hero p {
    max-width: 600px;

    margin-top: 28px;

    color: #ddd;
    font-size: 18px;
}


/* TREŚĆ */

.work-content {
    padding: 110px 0;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.work-intro h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
}

.work-intro h2 strong {
    color: #e00000;
}

.work-intro p {
    margin-top: 25px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}


/* OFERTY */

.work-box {
    padding: 45px;

    background: #111;
    color: #fff;
}

.work-box > h2 {
    margin-bottom: 30px;

    font-size: 28px;
    line-height: 1;
}

.job-item {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-top: 1px solid #333;
}

.job-number {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.job-item h3 {
    font-size: 18px;
}

.job-item p {
    margin-top: 10px;

    color: #999;

    font-size: 14px;
    line-height: 1.7;
}


/* WYMAGANIA */

.work-requirements {
    padding: 110px 0;

    background: #f3f3f3;
}

.work-requirements-title {
    margin-bottom: 60px;
}

.work-requirements-title h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 60px);
    line-height: .95;
}

.work-requirements-title h2 strong {
    color: #e00000;
}

.requirements-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

.requirement {
    padding-top: 25px;

    border-top: 2px solid #ddd;
}

.requirement > span {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.requirement h3 {
    margin-top: 18px;

    font-size: 17px;
}

.requirement p {
    margin-top: 10px;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* CTA */

.work-cta {
    padding: 100px 0;

    background: #e00000;
    color: #fff;
}

.work-cta > .container > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.work-cta h2 {
    margin-top: 15px;

    font-size: clamp(45px, 6vw, 70px);
    line-height: .9;
}

.work-cta p {
    max-width: 600px;

    margin: 25px 0;

    color: #220000;

    font-size: 16px;
}


/* MOBILE */

@media (max-width: 900px) {

    .work-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .requirements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .work-page-hero {
        min-height: 420px;
    }

    .work-page-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .work-page-hero p {
        font-size: 15px;
    }

    .work-box {
        padding: 30px;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   REKRUTACJA / PRACA
   ========================================= */

.recruitment-content {
    padding: 110px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;
    align-items: start;
}

.recruitment-intro h2 {
    margin-top: 15px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: .92;
    letter-spacing: -2px;
}

.recruitment-intro h2 strong {
    color: #e00000;
}

.recruitment-intro > p {
    max-width: 600px;

    margin-top: 25px;

    color: #666;

    font-size: 17px;
    line-height: 1.8;
}

.recruitment-email {
    margin-top: 35px;
    padding: 25px;

    border-left: 4px solid #e00000;

    background: #f3f3f3;
}

.recruitment-email span {
    display: block;

    color: #777;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.recruitment-email a {
    display: block;

    margin-top: 8px;

    color: #e00000;

    font-size: 18px;
    font-weight: 700;
}


/* OFERUJEMY */

.recruitment-offer {
    padding: 40px;

    background: #111;
    color: #fff;
}

.recruitment-heading {
    display: flex;
    align-items: center;
    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid #333;
}

.recruitment-heading span {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.recruitment-heading h2 {
    font-size: 30px;
}

.recruitment-list {
    list-style: none;

    margin: 0;
    padding: 10px 0 0;
}

.recruitment-list li {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #292929;

    color: #ddd;

    font-size: 15px;
}

.recruitment-list li:last-child {
    border-bottom: 0;
}

.recruitment-list li span {
    color: #e00000;

    font-weight: 900;
}


/* POSZUKUJEMY */

.recruitment-positions {
    padding: 110px 0;

    background: #f3f3f3;
}

.positions-header {
    margin-bottom: 55px;
}

.positions-header h2 {
    margin-top: 12px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: .95;
}

.positions-header p {
    margin-top: 15px;

    color: #777;
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.position-card {
    position: relative;

    padding: 45px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

.position-card-dark {
    background: #111;
    color: #fff;
}

.position-number {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
}

.position-card > span {
    display: block;

    margin-top: 35px;

    color: #999;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.position-card h3 {
    margin-top: 10px;

    font-size: 34px;
    line-height: .95;
}

.position-line {
    width: 45px;
    height: 3px;

    margin: 30px 0;

    background: #e00000;
}

.position-card h4 {
    margin-bottom: 18px;

    font-size: 11px;
    letter-spacing: 2px;
}

.position-card ul {
    padding-left: 20px;
}

.position-card li {
    margin-bottom: 13px;

    color: #666;

    font-size: 14px;
    line-height: 1.6;
}

.position-card-dark li {
    color: #aaa;
}

.position-card li::marker {
    color: #e00000;
}

.position-card li small {
    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 12px;
}


/* CTA */

.recruitment-cta {
    padding: 100px 0;

    background: #e00000;
    color: #fff;
}

.recruitment-cta > .container > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
}

.recruitment-cta h2 {
    margin-top: 15px;

    font-size: clamp(45px, 6vw, 75px);
    line-height: .9;
    letter-spacing: -3px;
}

.recruitment-cta p {
    margin-top: 25px;

    color: #350000;

    font-size: 16px;
}

.recruitment-mail-button {
    display: inline-block;

    margin-top: 25px;
    padding: 16px 25px;

    background: #111;
    color: #fff;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: .2s;
}

.recruitment-mail-button:hover {
    background: #fff;
    color: #111;
}


/* MOBILE */

@media (max-width: 850px) {

    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .positions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .recruitment-content,
    .recruitment-positions {
        padding: 70px 0;
    }

    .recruitment-offer,
    .position-card {
        padding: 30px;
    }

    .position-card h3 {
        font-size: 30px;
    }

    .recruitment-cta {
        padding: 75px 0;
    }
}


/* =========================================
   HOME - HERO
   ========================================= */

.home-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
        url('/assets/img/hero.webp')
        center center / cover no-repeat;

    color: #fff;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90),
            rgba(0,0,0,.55),
            rgba(0,0,0,.25)
        );
}

.home-hero-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
}

.home-label {
    color: #e00000;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 5px;
}

.home-hero h1 {
    margin-top: 18px;

    font-size: clamp(55px, 8vw, 100px);
    line-height: .88;
    letter-spacing: -5px;
    font-weight: 900;
}

.home-hero h1 strong {
    color: #e00000;
}

.home-hero p {
    max-width: 600px;

    margin-top: 30px;

    color: #ddd;

    font-size: 18px;
    line-height: 1.7;
}

.home-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.btn-outline-white {
    border: 1px solid rgba(255,255,255,.7);
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #111;
}

.home-scroll {
    position: absolute;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    color: #aaa;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;

    text-align: center;
}

.home-scroll span {
    display: block;

    margin-top: 5px;

    color: #e00000;

    font-size: 18px;
}


/* =========================================
   HOME - O NAS
   ========================================= */

.home-about {
    padding: 120px 0;

    background: #fff;
}

.home-about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.home-about-image img {
    width: 100%;
    height: 560px;

    object-fit: cover;
}

.home-about-content h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .94;
    letter-spacing: -2px;
}

.home-about-content h2 strong {
    color: #e00000;
}

.home-about-content p {
    margin-top: 22px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.home-text-link {
    display: inline-block;

    margin-top: 30px;

    color: #e00000;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================
   HOME - USŁUGI
   ========================================= */

.home-services {
    padding: 120px 0;

    background: #f3f3f3;
}

.home-section-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 60px;
}

.home-section-heading h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .92;
}

.home-section-heading h2 strong {
    color: #e00000;
}

.home-section-heading > p {
    max-width: 420px;

    color: #777;

    font-size: 15px;
}

.home-services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.home-service {
    min-height: 360px;

    padding: 30px;

    background: #fff;

    border-bottom: 3px solid transparent;

    transition: .25s;
}

.home-service:hover {
    background: #111;

    color: #fff;

    border-bottom-color: #e00000;

    transform: translateY(-7px);
}

.home-service > span {
    color: #e00000;

    font-size: 11px;
    font-weight: 800;
}

.home-service h3 {
    margin-top: 55px;

    font-size: 22px;
    line-height: 1;
}

.home-service p {
    margin-top: 20px;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}

.home-service:hover p {
    color: #aaa;
}

.home-service strong {
    display: block;

    margin-top: 30px;

    color: #e00000;

    font-size: 9px;
    letter-spacing: 1px;
}

.home-services-button {
    margin-top: 45px;

    text-align: center;
}

.btn-dark {
    background: #111;
    color: #fff;
}

.btn-dark:hover {
    background: #e00000;
}


/* =========================================
   HOME - BEZPIECZEŃSTWO
   ========================================= */

.home-security {
    padding: 120px 0;

    background: #111;

    color: #fff;
}

.home-security-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.home-security-content h2 {
    margin-top: 15px;

    font-size: clamp(40px, 5vw, 62px);
    line-height: .92;
}

.home-security-content h2 strong {
    color: #e00000;
}

.home-security-content p {
    margin-top: 22px;

    color: #aaa;

    font-size: 15px;
    line-height: 1.8;
}

.home-security-content .btn {
    margin-top: 30px;
}

.home-security-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
}


/* =========================================
   HOME - PRACA
   ========================================= */

.home-career {
    padding: 110px 0;

    background: #e00000;

    color: #fff;
}

.home-career h2 {
    margin-top: 15px;

    font-size: clamp(45px, 6vw, 75px);
    line-height: .9;
}

.home-career h2 strong {
    color: #220000;
}

.home-career p {
    max-width: 550px;

    margin: 25px 0;

    color: #350000;

    font-size: 16px;
}


/* =========================================
   HOME - KONTAKT
   ========================================= */

.home-contact {
    padding: 80px 0;

    background: #080808;

    color: #fff;
}

.home-contact-inner {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;
}

.home-contact-inner > div > span {
    color: #e00000;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-contact h2 {
    margin-top: 12px;

    font-size: clamp(32px, 4vw, 50px);
    line-height: .95;
}

.home-contact h2 strong {
    color: #e00000;
}


/* =========================================
   HOME - MOBILE
   ========================================= */

@media (max-width: 1000px) {

    .home-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-about-grid,
    .home-security-grid {
        gap: 45px;
    }
}

@media (max-width: 800px) {

    .home-about-grid,
    .home-security-grid {
        grid-template-columns: 1fr;
    }

    .home-section-heading {
        display: block;
    }

    .home-section-heading > p {
        margin-top: 25px;
    }

    .home-contact-inner {
        display: block;
    }

    .home-contact-inner .btn {
        margin-top: 30px;
    }
}

@media (max-width: 600px) {

    .home-hero {
        min-height: 700px;
    }

    .home-hero h1 {
        font-size: 50px;
        letter-spacing: -2px;
    }

    .home-hero p {
        font-size: 15px;
    }

    .home-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-about,
    .home-services,
    .home-security {
        padding: 80px 0;
    }

    .home-about-image img,
    .home-security-image img {
        height: 350px;
    }

    .home-career {
        padding: 80px 0;
    }
}


/* =========================================
   CZYSTA STRONA GŁÓWNA
   ========================================= */

.home-main {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        url('/assets/img/hero.webp')
        center center / cover no-repeat;

    color: #fff;
}

.home-main-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.58) 48%,
            rgba(0,0,0,.25) 100%
        );
}

.home-main-content {
    position: relative;
    z-index: 2;

    padding-top: 80px;
}

.home-main-label {
    display: block;

    color: #e00000;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 5px;
}

.home-main h1 {
    margin-top: 18px;

    font-size: clamp(55px, 7vw, 100px);
    line-height: .88;

    letter-spacing: -5px;
    font-weight: 900;
}

.home-main h1 strong {
    color: #e00000;
}

.home-main p {
    max-width: 620px;

    margin-top: 30px;

    color: #ddd;

    font-size: 17px;
    line-height: 1.7;
}

.home-main-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.home-main-outline {
    border: 1px solid rgba(255,255,255,.75);
    color: #fff;
}

.home-main-outline:hover {
    background: #fff;
    color: #111;
}


/* MOBILE */

@media (max-width: 600px) {

    .home-main {
        min-height: 100vh;
    }

    .home-main h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .home-main p {
        font-size: 15px;
    }

    .home-main-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}



/* ==================================================
   NINJA SECURITY
   WSPÓLNY NAVBAR
   ================================================== */


/* ==================================================
   NINJA SECURITY - NAVBAR
   ================================================== */

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;
    z-index: 9999;

    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.navbar-container {
    width: min(1280px, 92%);
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;

    width: 150px;
    height: 100%;

    flex-shrink: 0;
}

.navbar-logo img {
    width: 118px;
    height: 62px;
    object-fit: contain;
    display: block;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: auto;
}

.navbar-menu a {
    position: relative;

    padding: 31px 0;

    color: rgba(255,255,255,.8);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-decoration: none;
}

.navbar-menu a:hover,
.navbar-menu a.active {
    color: #fff;
}

.navbar-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;

    height: 2px;

    background: #e00000;

    transform: scaleX(0);
    transition: transform .2s ease;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
    transform: scaleX(1);
}

.navbar-contact {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    margin-left: 35px;
    padding: 0 18px;

    background: #e00000;
    color: #fff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar-contact strong {
    margin-left: 10px;
    font-size: 18px;
}


/* HAMBURGER - domyślnie ukryty */

.navbar-toggle {
    display: none;
}

.navbar-mobile {
    display: none;
}


/* ==================================================
   TELEFONY
   ================================================== */

@media (max-width: 768px) {

    .site-navbar {
        position: fixed;
        height: 68px;
    }

    .navbar-container {
        width: 100%;
        padding: 0 16px;

        justify-content: space-between;
    }

    .navbar-logo {
        width: auto;
        height: 68px;
    }

    .navbar-logo img {
        width: 105px;
        height: 56px;
    }


    /* UKRYJ DESKTOP */

    .navbar-menu,
    .navbar-contact {
        display: none !important;
    }


    /* HAMBURGER */

    .navbar-toggle {
        display: flex;

        width: 44px;
        height: 44px;

        padding: 8px;

        border: 0;
        background: transparent;

        flex-direction: column;
        justify-content: center;
        gap: 6px;

        cursor: pointer;

        z-index: 10001;
    }

    .navbar-toggle span {
        display: block;

        width: 27px;
        height: 3px;

        margin-left: auto;

        background: #fff;

        border-radius: 2px;

        transition: .25s ease;
    }

    .navbar-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .navbar-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    /* MENU MOBILNE */

    .navbar-mobile {
        display: flex;

        position: fixed;

        top: 68px;
        left: 0;
        right: 0;

        z-index: 10000;

        flex-direction: column;

        padding: 8px 20px 24px;

        background: rgba(8,8,8,.98);

        border-top: 1px solid rgba(255,255,255,.1);

        box-shadow: 0 20px 50px rgba(0,0,0,.5);

        opacity: 0;
        visibility: hidden;

        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }

    .navbar-mobile.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .navbar-mobile a {
        display: flex;

        align-items: center;
        justify-content: space-between;

        min-height: 54px;

        padding: 0 5px;

        color: #fff;

        border-bottom: 1px solid rgba(255,255,255,.1);

        text-decoration: none;

        font-size: 12px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .navbar-mobile a.active {
        color: #e00000;
    }

    .navbar-mobile .mobile-contact {
        margin-top: 18px;

        min-height: 52px;
        padding: 0 18px;

        background: #e00000;

        border: 0;

        color: #fff;
    }

    .navbar-mobile .mobile-contact strong {
        font-size: 20px;
    }

    body.menu-open {
        overflow: hidden;
    }
}


@media (max-width: 380px) {

    .navbar-container {
        padding: 0 12px;
    }

    .navbar-logo img {
        width: 95px;
    }

}


/* =========================================
   HOME - GŁÓWNE ZDJĘCIE
   ========================================= */

.home-main {
    background-image: url('/assets/img/home-hero.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


.home-main {
    background-image: url('/assets/img/home-hero.webp') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}



/* ==========================================
   NINJA SECURITY - MOBILE NAVBAR
   ========================================== */

.navbar-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.navbar-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    background: #111;

    transition: .25s ease;
}

.navbar-mobile {
    display: none;
}


/* ==========================================
   TELEFONY
   ========================================== */

@media (max-width: 768px) {

    .site-navbar {
        position: relative;

        width: 100%;

        z-index: 1000;
    }


    .navbar-container {

        width: 100%;

        min-height: 72px;

        padding: 0 20px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .navbar-logo img {

        max-width: 145px;
        max-height: 48px;

        width: auto;
        height: auto;

        display: block;
    }


    /* UKRYWAMY DESKTOP MENU */

    .navbar-menu,
    .navbar-contact {

        display: none !important;

    }


    /* HAMBURGER */

    .navbar-toggle {

        display: flex;

        position: relative;

        z-index: 1100;
    }


    /* ANIMACJA X */

    .navbar-toggle.open span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }

    .navbar-toggle.open span:nth-child(2) {

        opacity: 0;

    }

    .navbar-toggle.open span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    /* MENU */

    .navbar-mobile {

        display: flex;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        flex-direction: column;

        background: rgba(10,10,10,.98);

        padding: 12px 20px 25px;

        border-top: 1px solid rgba(255,255,255,.08);

        box-shadow: 0 20px 40px rgba(0,0,0,.25);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }


    .navbar-mobile.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .navbar-mobile a {

        display: flex;

        align-items: center;
        justify-content: space-between;

        min-height: 55px;

        padding: 0 5px;

        color: #fff;

        border-bottom: 1px solid rgba(255,255,255,.09);

        text-decoration: none;

        font-size: 12px;
        font-weight: 800;

        letter-spacing: 1.5px;

        transition: .2s;
    }


    .navbar-mobile a:hover,
    .navbar-mobile a.active {

        color: #e00000;

    }


    /* PRZYCISK KONTAKTU */

    .navbar-mobile .mobile-contact {

        margin-top: 18px;

        padding: 0 18px;

        min-height: 52px;

        background: #e00000;

        border: 0;

        color: #fff;

    }


    .navbar-mobile .mobile-contact:hover {

        background: #b90000;

        color: #fff;

    }


    .navbar-mobile .mobile-contact strong {

        font-size: 20px;

    }


    /* BLOKADA SCROLLA POD MENU */

    body.menu-open {

        overflow: hidden;

    }

}


/* MAŁE TELEFONY */

@media (max-width: 380px) {

    .navbar-container {

        padding: 0 15px;

    }

    .navbar-logo img {

        max-width: 125px;

    }

}


/* ==========================================
   NINJA SECURITY - WSPÓLNE TŁO GÓRY STRONY
   ========================================== */

.page-top-bg {
    position: relative;
    min-height: 560px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.50) 55%,
            rgba(0,0,0,.30) 100%
        ),
        url('/assets/img/page-top.webp');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {

    .page-top-bg {
        min-height: 500px;

        background-position: center center;
    }

}


/* ==========================================
   NINJA SECURITY
   WSPÓLNE ZDJĘCIE HERO NA PODSTRONACH
   ========================================== */

.about-hero,
.services-page-hero,
.work-page-hero,
.contact-v2-hero {

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.58) 50%,
            rgba(0,0,0,.32) 100%
        ),
        url('/assets/img/page-top.webp') !important;

    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}


/* TELEFONY */

@media (max-width: 768px) {

    .about-hero,
    .services-page-hero,
    .work-page-hero,
    .contact-v2-hero {

        background-position: center center !important;

    }

}

