@charset "utf-8";

body{
  font-family: "Poppins", sans-serif;
  background: rgb(35,24,90);
}



#produktbox {
    width: 100%;
    text-align: center;
}

.produktbox {
    width: 339px;
    height: 604px;
    display: inline-block;
    margin: 10px;
    padding: 5px;
    vertical-align: top;
    background: #EAEAEA;
    border-radius: 5px;
}

#Layout {
    margin: 0 auto;
    max-width: 1300px;    
}

#Content {
    padding: 20px;
    font-size: 16px;
    font-weight: 400;
    background: rgb(255,255,255);
}

#Content p {
    font-size: 400;
    color: rgb(61,61,59);
}

#Content p a {
    text-decoration: none;
    color: #3c3c3b; 
    font-weight: 600;
}

#Content p  a,
#Content p  a:link,
#Content p a:visited,
#Content p  a:active,
#Content p  a:hover {
    color: inherit;            /* przejmuje kolor guzika */
    text-decoration: none;     /* bez underline */
}

#Dark {
    margin-top: 0px;
    width: 100%;
    overflow: hidden;
    clear: both;
    position: relative;
}
#Dark img {
    width: 100%;
}

#Dark p {
    color: #fff;
    font-weight: 400;
}

#Dark #Content {
    position: absolute;
    z-index: 2;
    width: 100%;
    overflow: hidden;
}

.Dark p {
    color: #fff;
    font-weight: 400;
}

#Dark video {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
}

#Dark_mobile  {
    position: relative;
    overflow: hidden;
}

#Dark_mobile video {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-bg {
    position: relative;
    width: 100%;
    min-height: 450px;
    padding-bottom: 30px;
    overflow: hidden;
    background: #2e2d2c; /* fallback */
}

.video-bg .bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}


.logo {
    position: absolute; 
    margin-top: 13px;
    
        /* animacja powiększenia */
    transition: transform 0.4s ease;
    transform: scale(1);
}
.logo:hover {
    transform: scale(1.05); /* delikatne powiększenie */
}

.BigBox {
    width: 100%;
    clear: both; 
    overflow: hidden;
    background: #fff;
}

.box_wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 600px));
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.box {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.center {
    max-width: 1300px;
    margin: 0 auto;
}
.center a {
    text-decoration: none; 
 transition: transform 0.4s ease;
    transform: scale(1);
}
.center a:hover {
    transform: scale(1.05); /* delikatne powiększenie */
}


.Galeria img {
    border-radius: 15px;
    
    transition: transform 0.4s ease;
    transform: scale(1);
}

.Galeria img:hover {
 transform: scale(1.05); /* delikatne powiększenie */
}

#Content_wrapper a {
    text-decoration: none; 
 transition: transform 0.4s ease;
    transform: scale(1);
}
#Content_wrapper a:hover {
    transform: scale(1.05); /* delikatne powiększenie */
}

.separator {clear: both;overflow: hidden; margin-top: 20px; margin-bottom: 20px;}

svg {
vertical-align: middle;
  stroke: currentColor; /* DZIEDZICZY KOLOR TEKSTU */
}

#Content_wrapper {
    width: 100%;
    clear: both; 
    overflow: hidden;
    text-align: left;
}
#Content_wrapper .box {
    max-width: 560px;
  /*  padding: 20px; */
    margin: 20px;
    vertical-align: top;
    display: inline-block;
}

#Content_wrapper .box_home_l {
    max-width: 450px;
    padding: 20px;
    margin: 20px;
    vertical-align: middle;
    display: inline-block;
}
#Content_wrapper .box_home_r {
    max-width: 680px;
    padding: 20px;
    margin: 20px;
    vertical-align: middle;
    display: inline-block;
}

#Content_wrapper .box_home_r img {
    max-width: 800px;
    width: 100%;
    border-radius: 15px;
}


#top_menu {
    position: absolute;
    z-index: 99;
    width:100%;
    margin-top: 35px;
    
}

#top_menu .center {
    
    background: none;
    padding: 5px 20px 0px 20px;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 5px;
}
#top_menu .navitop {
    
    background: none;
    padding: 0px 20px 0px 20px;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 5px;
    margin-bottom: 2px;
}
#top_menu .navitop p {
    color: #fff;
}



/* UL w menu */
.navitop ul {
    list-style: none;       /* usuwa kropki */
    margin: 0;
    padding: 0;
    display: flex;          /* elementy w jednej linii */
    justify-content: flex-end;
}

/* LI */
.navitop ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Linki */
.navitop ul li a {
    display: block;
    padding: 5px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
}

/* Hover */
.navitop ul li a:hover {
    background-color: #02E3DD;
    color: #23185A;
}

/* Aktywny element – SilverStripe 3 */
.navitop ul li.current a,
.navitop ul li.section a {
    background-color: #fff;
}

 

.blog_post {
    background: #f5f5f5;
    max-width: 400px;
    display: inline-block;
      border-radius: 15px;
    margin: 10px;
    overflow: hidden;
    text-decoration: none;
    transition: 
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease;
        box-shadow 0.3s ease;
}

/* co drugi link → ciemny */

/*
.center > a:nth-of-type(even) .blog_post {
    background: #383838;
    color: #fff;
} */

/* tekst w ciemnych również biały */
/*
.center > a:nth-of-type(even) .blog_post .title,
.center > a:nth-of-type(even) .blog_post p,
.center > a:nth-of-type(even) .blog_post .in {
    color: #fff !important;
}*/


.blog_post:hover {
    background: #23185A;
    color: #fff;
        transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.blog_post:hover .title,
.blog_post:hover p,
.blog_post:hover .in {
    color: #fff !important;
}


.blog_post .in {
    padding: 20px;
}

.blog_post img {
    max-width: 400px;
    width: 100%;
}

.blog_post .title {
    font-size: 22px;
    font-weight: 800;
}
.mid-dot {
    font-size: 32px;      /* duża kropka */
    vertical-align: middle;
    margin: 0 6px;
    display: inline-block;
}
.blog_data {
    font-size: 14px;
}



#Navi {margin-left: 210px;}


#Navig5 li, #Navig5 li a{
  text-decoration: none
}
#Navig5 ul{
  overflow: hidden
}
#Navig5 ul li ul {
  opacity: 0;
  transition: .5s; 
  margin-top: 0rem;
  display: none;
  visibility: hidden
}

#Navig5 li {
  display: inline-block;
  text-transform: none
}
#Navig5 ul {
  list-style: none;
  padding-left: 350px;
  max-width: 1300px;
  clear: both;
  padding-top: 0px;
  text-align: left;
   
}
#Navig5 li {
  padding: 6px;
  position: relative;
  transition-duration: .5s;
  font-size: 16px;
  font-weight: 300;
  margin-left: 0px;
}

/* Reset i podstawy */
#Navig5 {
    display: flex;              /* poziomo */
    flex-wrap: wrap;            /* zawijanie na mniejszych ekranach */
    align-items: center;
    gap: 1px;                   /* odstępy między itemami */
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
}

/* Każdy element menu (poziomo) */
#Navig5 > li {
    position: relative;         /* dla absolutnego dropdowna */
    display: inline-flex;
    align-items: center;
}

/* Linki */
#Navig5 li a {
    color: #fff;
    transition: transform .25s ease, color .25s ease, opacity .25s ease;
    display: inline-block;
    padding: 10px 16px;
    transform: scale(1);
    text-decoration: none;
    white-space: nowrap;
}

/* Delikatne powiększenie i pogrubienie na hover/focus */
#Navig5 li:hover > a,
#Navig5 li:focus-within > a {
    transform: scale(1.06);
    font-weight: 300;
    cursor: pointer;
    color: #02E3DD;
}

/* Aktywna sekcja */
#Navig5 li.section > a {
    color: #fff;
    font-weight: bold;
}

/* Dropdown (pierwszy poziom) */
#Navig5 li ul.dropdown {
    position: absolute;
    top: calc(100% + 8px);      /* pod elementem */
    left: 0;
    min-width: 350px;
    padding: 8px 0;
    border-radius: 12px;

    /* Framer-like background + blur */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);

    visibility: hidden;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    z-index: 999;
    box-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

/* Pokaż dropdown na hover/focus */
#Navig5 li:hover > ul.dropdown,
#Navig5 li:focus-within > ul.dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Elementy w dropdown */
#Navig5 li ul.dropdown li {
    display: block;
    width: 100%;
}

/* Linki w dropdown */
#Navig5 li ul.dropdown li a {
    display: block;
    padding: 8px 16px;
    font-size: 16px;
    color: #fff;
    opacity: 1;
    transform: scale(1);
}

/* Hover elementu w dropdown */
#Navig5 li ul.dropdown li:hover > a {
    transform: scale(1.04);
    opacity: 1;
}

/* Kolejny poziom dropdown (wysuwa się w prawo) */
#Navig5 li ul.dropdown li ul.dropdown {
    top: 0;
    left: 100%;
    margin-left: 8px;
    transform: translateX(8px);
}
#Navig5 li ul.dropdown li:hover > ul.dropdown,
#Navig5 li ul.dropdown li:focus-within > ul.dropdown {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

/* Zielony przycisk - wyrównanie do prawej (opcjonalne) */
#Navig5 .green_button {
    background: #00c468;
   /* padding: 9px 18px; */
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    margin-left: auto; /* jeśli chcesz wypchnąć buttona na koniec paska */
}

/* Mobile tweak: prosty breakpoint */
@media (max-width: 800px) {
    #Navig5 {
        gap: 6px;
    }
    #Navig5 > li {
        padding: 4px 0;
    }
    /* opcjonalnie możesz ustawić menu pionowo na małych ekranach:
    #Navig5 { flex-direction: column; align-items: stretch; }
    */
}

.pill-container {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 200px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap; /* pozwala ładnie zachowywać się w mobilnych */
}

/* Wyśrodkowanie każdego segmentu */
.pill-segment {
    flex: 1;
    border-right: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* trochę oddechu */
    text-align: center;
}

/* Ostatni bez prawej linii */
.pill-segment:last-child {
    border-right: none;
}

/* Teksty spójnie wysrodkowane */
.pill-segment p {
    margin: 0;
    line-height: 1.1;
    text-align: left;
}

.pill-segment strong {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    line-height: 20px;
}

/* Obrazki – max szerokość, aby nie rozwalały layoutu */
.pill-segment img {
    max-width: 100px;
    height: auto;
}

.galeriabox {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 5px;
    margin: 10px 10px 10px 0;
    transition: all 0.3s ease; /* smooth transition */
    transform: scale(1);       /* initial scale */
}

.galeriabox:hover {
    transform: scale(1.1); 
}

#Footer {
    width: 100%;
    clear: both;
    overflow: hidden;
    min-height: 500px;
}

#Footer .inside {
    padding: 20px;
    margin: 0 auto;
    max-width: 1300px;
}

#Footer .box_wrapper {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    width: 100%;
}
#Footer .box {
     width: 100%;
    padding: 10px;
    box-sizing: border-box;
}


.green_button {
    background: #4aaf4d;
    border-radius: 30px;
    color: #fff;
    float: right;
    transition: all 0.3s ease; /* smooth transition */
    transform: scale(1);       /* initial scale */
}

.green_button:hover {
     transform: scale(1.06); 
}


.kontakt {
    background: #9b9b9b;
    padding: 10px;
    overflow: hidden;
}

/* ============================
   FORMULARZ KONTAKTOWY – SilverStripe UserForms 3.7
   ============================ */

:root {
    --accent: #222;
    --muted: #9b9b9b;
    --white: #fff;
    --radius-big: 34px;
    --radius-medium: 22px;
    --field-height: 56px;
    --font: "Poppins", Arial, sans-serif;
}

/* =========================
   RESET fieldset (browser)
   ========================= */
.userform fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    min-inline-size: 0;
}

/* =========================
   FORM wrapper
   ========================= */
.userform {
    max-width: 760px;
    margin: 0 auto;
    padding: 35px;
    background: #f5f5f5;
    border-radius: 20px;
    font-family: inherit;
}

/* =========================
   FIELDS
   ========================= */
.userform .field {
    margin-bottom: 22px;
}

/* Label */
.userform label.left {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

/* middleColumn */
.userform .middleColumn {
    position: relative;
}

/* =========================
   INPUT / SELECT / TEXTAREA
   ========================= */
.userform input.text,
.userform input.email,
.userform select.dropdown,
.userform textarea.textarea {
    width: 90%;
    height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid #e2e2e2;
    background: #fff;
    font-size: 15px;
    color: #222;
    outline: none;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Focus */
.userform input:focus,
.userform select:focus,
.userform textarea:focus {
    border-color: #bdbdbd;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.04);
}

/* =========================
   TEXTAREA
   ========================= */
.userform textarea.textarea {
    height: 200px;
    padding: 18px 24px;
    border-radius: 26px;
    resize: vertical;
}

/* =========================
   DROPDOWN (select)
   ========================= */
.userform select.dropdown {
    appearance: none;
    cursor: pointer;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 22px center;
    background-size: 18px;
    padding-right: 54px;
}

/* =========================
   CHECKBOX
   ========================= */
.userform .field.checkbox {
    margin-top: 10px;
}

.userform .field.checkbox .middleColumn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.userform input.checkbox {
    margin-top: 3px;
}

.userform .field.checkbox label {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
}

/* =========================
   RECAPTCHA
   ========================= */
.userform .field.recaptcha {
    margin-top: 10px;
}

/* =========================
   SUBMIT BUTTON
   ========================= */
.userform nav.Actions {
    margin-top: 20px;
}

.userform nav.Actions input.action {
    width: 100%;
    height: 56px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid #222;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.25s ease;
}

.userform nav.Actions input.action:hover {
    background: #222;
    color: #fff;
    transform: translateY(-2px);
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 120px 0;
}

.faq__label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 20px;
    display: inline-block;
}

.faq__title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
}

.faq__subtitle {
    font-size: 18px;
    color: #666;
}

/* PRAWA KOLUMNA */

.faq__item {
    border-bottom: 1px solid #e5e5e5;
}

.faq__toggle {
    display: none;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    gap: 24px;
}

.faq__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ODP */

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-right: 44px;
}

/* STAN OTWARTY */

.faq__toggle:checked + .faq__question .faq__icon {
    transform: rotate(180deg);
}

.faq__toggle:checked ~ .faq__answer {
    max-height: 500px;
    padding-bottom: 24px;
}



.file-list {
    max-width: 1200px;
    
    border-top: 1px solid #c7c7c7;
    color: #000;
  
}

.file-row {
    display: grid;
    grid-template-columns: 2fr 300px 200px;
    align-items: center;
    padding: 28px 20px;
    border-bottom: 1px solid #c7c7c7;
    white-space: nowrap;
    
}


.file-title {
    font-size: 20px;
    font-weight: 400;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.file-date {
    font-size: 16px;
    color: #555;
    text-align: center;
  
}

.file-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}


.file-action .icon {
    width: 28px;
    height: 28px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
}

.file-row:hover {
    background: #fafafa;
}

.file-list .file-row a.file-action,
.file-list .file-row a.file-action:visited,
.file-list .file-row a.file-action:hover,
.file-list .file-row a.file-action:active,
.file-list .file-row a.file-action:focus {
    color: #333 !important;
    text-decoration: none !important;
}


.center .button {
    border: 2px solid #000;
    border-radius: 30px;
    padding: 10px 20px;
    background: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease; /* smooth transition */
    transform: scale(1);       /* initial scale */
}

/* Hover button effects */
.center .button:hover {
    background: #000;
    color: #fff;
    text-decoration: none;
    transform: scale(1.08); /* powiększenie */
}

/* Linki w środku guzika – bez underline, właściwy kolor */
.center .button a,
.center .button a:link,
.center .button a:visited,
.center .button a:active,
.center .button a:hover {
    color: inherit;            /* przejmuje kolor guzika */
    text-decoration: none;     /* bez underline */
}


#Title .button {
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 5px 10px;
    background: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease; /* smooth transition */
    transform: scale(1);       /* initial scale */
}

/* Hover button effects */
#Title .button:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
    transform: scale(1.08); /* powiększenie */
}

/* Linki w środku guzika – bez underline, właściwy kolor */
#Title .button a,
#Title .button a:link,
#Title .button a:visited,
#Title .button a:active,
#Title .button a:hover {
    color: inherit;            /* przejmuje kolor guzika */
    text-decoration: none;     /* bez underline */
}


@media screen and (min-width:975px) { 
    
    .desktop {}
    .mobile {display: none;}
    
    #Bannersbox {
    position: absolute;                                     
    z-index: 2;
    width: 100%;
    margin-top: 400px;
}
}
@media screen and (max-width:975px) { 
    
    .desktop {display: none;}
    .mobile {}
    
    #Bannersbox {
clear: both;
}
    .mobilehome p {color: #fff;}
    .mobilehome h1, 
    .mobilehome h2, 
    .mobilehome h3 {color :#fff}
    
    .icon-text {
    display: flex;
    align-items: center;
    gap: 25px;
        margin-bottom: 20px;
}

.icon-text img {
    max-width: 50px;
    flex-shrink: 0;
}

.icon-text .small {
    font-size: 14px;
    line-height: 15px;
    color: #fff;
    
}
    
    .box_wrapper {
        grid-template-columns: 1fr;
    }
    
      .company-data {
    flex-direction: column;
  }

  .company-data .right {
    text-align: left;
  }
    
     .main-menu {
        display: none;
        flex-direction: column;
        background: none;
        padding: 10px;
    }

    .main-menu.open {
        display: flex;
    }

    .main-menu li {
        position: relative;
        
    }

    .menu-link {
        display: block;
        padding: 12px;
    }


    
    .green_button {
    background: #00c468;
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    margin: 0 auto; /* jeśli chcesz wypchnąć buttona na koniec paska */
}
    .galeriabox {
    margin: 10px;
    max-width: 160px;
}
}
