@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
}

/* ------------------------------------------------------ zmienne ---------------------------------------------------- */
:root {
    /* --dark-color: #0d0d0d; */
    --dark-color: #1a1313;
    --black-color: #1a1a1a;
    --white-color: #ffffff;
    --accent-color: #83c477;
    --light-color: #f6f8fd;
    --heading-color: #404040;
    --succes-color: rgb(6, 104, 6);
    --fail-color: rgb(221, 39, 39);
    --blue-color: #2badff;
    --green-color: #2ed573;
    --yellow-color: #ffd32a;
    --red-color: #ff4453;
    --gap: 20px;
}

/* ----------------------------------------- dodatkowa konfiguracja -------------------------------------- */
.cfg {
    display: none;
}

/* ----------------------------------------- zadeklarowane klasy -------------------------------------- */
.dark-bcg {
    background-color: var(--black-color);
}


.title {
    color: var(--dark-color);
    /* font-size: 1rem; */
}

.subtitle {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 1.25rem;
}

.description {
    /* width: 90%; */
    margin: 15px 0 20px 0;
    line-height: 1.7;
}


.subtitle-font {
    font-family: "Ubutnu", sans-serif;
    font-weight: bold;
}

.bold-text {
    font-weight: 700;
}

/*--------------------------- przyciski --------------------------*/
.btn {
    display: inline-block;
    padding: 13px 30px;
    background-color: var(--dark-color);
    color: var(--white-color) !important;
    border: 2px solid var(--dark-color);
    font-size: 14px;
    letter-spacing: .5px;
    line-height: 16px;

    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    transition: all .3s;
}

.btn:focus {
    box-shadow: none;
}

.button-outer {
    margin: 15px 0;
}

.btn-accent {
    color: var(--white-color);
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-accent:hover {
    color: var(--dark-color);
    background-color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-accent.btn-light {
    transition: .2s all ease;
}

.btn-accent.btn-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color) !important;
    border: 2px solid var(--light-color);
}

.btn-border {
    border: 2px solid var(--accent-color);
    background-color: unset;
    color: var(--main-color) !important;
    transition: .2s all ease;
}

.btn-border:hover {
    background-color: var(--accent-color);
    color: var(--white-color) !important;
}

.btn-ghost {
    display: inline-block;
    padding-bottom: 8px;
    border: 0 !important;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;

}

.btn-ghost .arrow {
    display: inline-block;
    margin-left: 25px;
    transform: translateX(-20px);

    transition: transform 0.3s ease;

}

.btn-ghost .arrow i {
    vertical-align: middle;
    /* Aligns the SVG with the text */
}

.btn-ghost:hover {
    color: var(--accent-color) !important;
    /* Darker shade for hover state */
}

.btn-ghost:hover .arrow {
    transform: translateX(0);
    /* Moves arrow into view on hover */
}

/*---------------------------------------------- przyciski ---------------------------------------------*/

.fs-18 {
    /* font-size: 18px; */
    font-size: 1.125rem;
}

.fs-24 {
    /* font-size: 24px; */
    font-size: 1.5rem;
}

.fs-32 {
    /* font-size: 32px; */
    font-size: 2rem;
}

.fs-40 {
    /* font-size: 40px; */
    font-size: 2.5rem;
}

.accent-text {
    color: var(--accent-color);
}

.component-wrapper {
    margin: 50px 0;
    overflow: hidden;
}

.line-height {
    line-height: 28px;
}

.rounded-corner {
    border-radius: 10px;
}

.dark-mode {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 50px 0;
}

.light-mode {
    background-color: var(--light-color);
    color: var(--main-color);
    padding: 50px 0;
}

.reverse {
    flex-direction: row-reverse;
}

.button-group {
    display: flex;
    gap: 20px;
}


/* ---------------------------------------------- zadeklarowane klasy end ------------------------------------------------------ */

body {
    padding-top: 70px;
    overflow-x: hidden;
    font-family: "Lato", sans-serif;
}

/* --------------------------------   menu ------------------------------------*/
.navbar {
    padding-top: 15px;
    padding-bottom: 0;
    background-color: var(--white-color);
}

.navbar-transparent {
    background-color: transparent;
}

.navbar>.container {
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 5px;
}

/* .navbar-nav {
    background-color: var(--light-color);
    border-radius: 20px;
    padding: 2px;
} */

.nav-link {
    font-size: 1.1rem;
    padding: 8px 16px !important;
    transition: all .2s;
    color: var(--dark-color) !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 35px;
    left: 5px;
    min-width: 200px;
    min-height: 150px;
    padding: 10px;
    -webkit-box-shadow: 8px 8px 24px -9px rgba(66, 68, 90, 1);
    -moz-box-shadow: 8px 8px 24px -9px rgba(66, 68, 90, 1);
    box-shadow: 8px 8px 24px -9px rgb(209, 210, 228);
    border: unset;
    border-radius: 0;
}

.navbar-nav .dropdown-menu .dropdown-item {
    padding: 8px;
    transition: .2s;
    background-color: unset;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    color: var(--accent-color) !important;
    background-color: unset;
}

.navbar-brand  {
    max-height: 70px;
    max-width: 165px;
}
.navbar-brand img {
    width: 100%;
    height: 100%;
}

.navbar-toggler:focus,
.navbar-toggler {
    border: none !important;
    box-shadow: none;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

@media screen and (max-width: 576px) {
    .navbar.fixed-top {
    background-color: var(--white-color);
}
}


/* --------------------------------   menu end   ------------------------------------*/

/* ---------------------- footer ----------------------------------------------------*/
.footer-wrapper {
    padding-top: 30px;
}

.footer-heading {
    padding: 10px 0;
    font-weight: 400;
    color: var(--accent-color);
}

.footer-text {
    width: 70%;
}
.footer-doc a {
   display: block;
}

footer .nav-item {
    padding: 0 25px;
}

footer .nav-link {
    color: var(--white-color) !important;
}

.footer-contact a,
.footer-social a {
    text-decoration: none;
    color: var(--white-color);
    padding: 0 5px;
}

.footer-social .fab,
.footer-social .fa-brands {
    font-size: 25px;
}

.footer-social a:hover {
    opacity: 70%;
}

.footer-copywright p {
    margin-left: 35px;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-right: 30px;
}

.footer-logo-wrapper a {
    padding: 0 15px 0 5px;
    color: var(--accent-color);
    text-decoration: none;
    transition: .2s;
}
.footer-doc {
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
}

/* ---------------------- footer end ----------------------------------------------------*/

@media (max-width: 768px) {

    .footer-logo-wrapper {
        justify-content: center;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .footer-copywright p {
        margin: 0 0 5px 0;
        text-align: center;
    }

    .footer-nav {
        display: none;
    }

    .footer-text {
        text-align: center;
        margin: 0 auto 10px auto;
        width: 80%;
    }

    .footer-social,
    .footer-heading,
    .footer-contact {
        text-align: center;
    }

    .footer-heading {
        padding: 2px 0;
    }

    .button-outer {
        margin: 20px 0;
    }

    .navbar-nav .nav-link {
        padding-right: 0;
    }

    .navbar-nav .dropdown-menu {
        top: 40px;
        left: 0;
        width: 100%;
    }

    .navbar-nav .dropdown-menu .dropdown-item:hover {
        background-color: var(--light-color);
    }

    .navbar-brand img {
        margin-left: 10px;
    }

    /* możliwość wycentrowania mobile-menu */
    /* .nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        text-align: center;
    } */
}

/* ---------------------- cookies ----------------------------------------------------*/

.modal-dialog-bottom-right {
    position: fixed;
    bottom: 10px;
    right: 10px;
    margin: 0;
    max-width: 600px;
  }

.modal-dialog-scrollable {
    height: auto;
}

.modal-header .modal-title,
.modal-body {
    color: var(--dark-color);
}

.form-check-input:checked,
.btn-cookies-accept {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    background-color: unset;
    color: var(--dark-color) !important;
}

.btn-cookies-accept:hover,
.btn-outline:hover {
    opacity: .6;
}

.all-active {
    color: rgb(13, 140, 13);
    font-weight: 600;
    padding: 0 5px;
}

.form-check {
    margin: 12px 0;
}

.form-check-label {
    font-weight: 700;
    padding-bottom: 5px;
}

.btn-read-more {
    background-color: transparent;
    border: none;
    font-size: .9rem;
    color: var(--dark-color);
}

.cookies .btn {
    margin: 5px;
}

.cookiesSmall {
    display: none;
}

.modal-footer {
    justify-content: center;
}
@media (min-width: 1200px) {

    .cookies .container,
    .cookies .container-lg,
    .cookies .container-md,
    .cookies .container-sm,
    .cookies .container-xl {
        max-width: 600px;
    }
}

@media (min-width: 992px) {

    .cookies .modal-lg,
    .cookies .modal-xl {
        max-width: 992px;
    }
}

@media (max-width: 768px) {
    .cookies .cookies-container {
        bottom: 0;
        right: 0;
        max-width: 100%;
    }
}

/* ---------------------- components ----------------------------------------------------*/

/* --------------------------- box'y ---------------------- */

/* odnosi się do wszystkich boxów */
.btn-container {
    text-align: center;
}
.box-outer {
    margin: 15px 0;
}

/* --------------------------- box-01 img ---------------------- */

.blog-01 .box-01-img,
.box-01 .box-01-img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 3/2; */
    position: relative;
}

.box-01.dark-mode p {
color: var(--white-color);
}


.box-01-link {
    text-decoration: none;
    color: var(--dark-color);
    text-transform: uppercase;
    transition: all .3s ease;
}

.box-01-link p {
    text-transform: none;
    text-align: left;
}

.box-01-link:hover {
    opacity: .8;
    color: var(--dark-color) !important;
}

/* ------------------------ box-01 ----------------------- */


/* ------------------------ box-02 ----------------------- */

.box-02 .card {
    background-color: var(--light-color);
    border: unset;
    padding: 20px;
}

.box-02 .card.card-bg-dark {
    background-color: var(--dark-color);
}

/* dark-mode */
.box-02 .card.card-bg-dark .box-title,
.box-02 .card.card-bg-dark .box-item-text {
    color: var(--white-color);
}

.box-02.dark-mode .card {
    background-color: transparent;
}
.box-02.dark-mode .box-title,
.box-02.dark-mode .box-item-text{
    color: var(--white-color);
}
/* dark-mode end*/

.box-02 .box-item-text {
    padding: 0 10px 10px 10px;
}

.box-02 .box-02-item .box {
    transition: transform 0.3s;
}

.box-02-item .box:hover {
    transform: translateY(-10px);
}

.box-02 .box-02-item a {
    text-decoration: none;
    color: var(--dark-color);
}

/* ------------------- ikonka --------------- */
.box-02 .icon-diamond {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin: 5px auto 20px auto;
    transform: rotate(80deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-02 .icon-diamond img {
    width: 30px;
    height: 30px;
    transform: rotate(-80deg);
}

.box-02 .box-accent .icon-diamond {
    background-color: var(--accent-color);
}
/* ------------------------ box-02 ----------------------- */


/* ------------------------ box-03 list ----------------------- */


.box-03 .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.box-03 .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
}

.box-03 .price-details {
    text-transform: uppercase;
    color: var(--green-color);
    font-size: 1rem;
}

.box-03 .features {
    list-style: none;
    padding: 15px;
    width: 100%;    
}

.box-03 .features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.box-03 .features li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.125rem;
}

.box-03 .card-title {
    background-color: var(--dark-color);
    color: var(--white-color);
    width: 100%;
}

.box-03 .accent {
    background-color: var(--accent-color);
}

.box-03 .line-through {
    text-decoration: line-through;
}

.box-03 .card-footer {
    background-color: unset;
    border-top: none;
    margin-bottom: 30px;
}

/* ------------------------ team-01 ----------------------- */
.team-01 .box-desc {
    margin-bottom: 20px;
}
.team-01-member {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}
.team-01-member:hover {
    transform: scale(1.05);
}
.team-01-item .team-01-member-img {
  border-radius: 10px;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ----------------------- component top-01 ------------------------- */


.top-01 {
    position: relative;
}

.top-01 .top-image {
    padding-bottom: 15px;
    overflow: hidden;
}

.top-01 .top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.top-01 .subtitle-font {
        width: 90%;
}

/* ----------------------- component top-01 ------------------------- */

/* ----------------------- component top-02 ------------------------- */
.top-02 .top {
    max-width: 1330px;
    /* width: 100vw; */
    height: 80vh;
    background-size: cover;
}

.top-02 .top {
    margin: 0 auto;
}

/* wycentrowana treść  */
  .top-02 .top .top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
  }
/*  .top-02 .top .top-content-item {*/
/*  padding: 30px;*/
/*  border-radius: 20px;*/
/*  background-color: #91917c10;*/
/*  background-image: linear-gradient(-45deg, #d0cccc04, #ffffff32);*/
/*  backdrop-filter: blur(8px);*/
/*  width: 60%;*/
/*}*/

/* treść do lewej */
/* .top-02 .top .top-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: center;
    padding-left: 100px;
    text-align: left !important;
    color: var(--white-color);
  }  */

   /* .top-02 .top .top-content p {
    width: 50%;
    text-align: left !important;
    
  } */


/* ----------------------- component top-02 ------------------------- */


@media screen and (min-width: 992px) {
    .top-01 .row .col-lg-6 {
        padding-left: 0;
        padding-right: 0;
    }

    .top-01 .top-image {
        height: 70vh;
        aspect-ratio: 3 / 2;
    }
    .top-01 .hero-content p {
        width: 80%;
    }
    .top-01 .top-image img {
    position: absolute;
    height: 100%;
    width: 50%;
    right: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    color: transparent;
    }

    .top-02 .top .top-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: center;
        padding-left: 100px;
      }
      .top-02 .top .top-content p {
        width: 50%;
      }
}



@media screen and (max-width: 991px) {
    .top-01 .row {
        flex-direction: column-reverse;
    }
    .top-02 .top .top-content {
        display: flex;
        align-items: center !important;
        justify-content: center;
        padding-left: 0;
        text-align: center !important;
      }
      .top-02 .top .top-content p {
        width: 90%;
        text-align: center !important;
      }
}

/* ----------------------- component top-03 ------------------------- */

.top-03 {
    position: relative;
    height: 80vh;
    min-height:400px;
  }
  .top-03 .row>* {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

  
  .top-03 .top-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .top-03 .top-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    color: var(--white-color);
  }
  
  .top-03 .row>* {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  
  .top-03 .line-height {
    margin: 0 auto;
  }
  
  
  .top-03 .button-outer {
    display: flex;
    justify-content: center;
  }  
  
@media screen and (min-width: 992px) {
  
    .top-03 .line-height {
      width: 40%;
    }
  }
  
  .top-03-banner {
    height: 30vh;
    margin: 50px 0;
  }
  
  .top-03-banner .subtitle-font {
    font-size: 2rem;
  }
  
  .top-03-banner .subtitle {
    font-size: 1rem;
  }
  
  @media screen and (max-width: 576px) {
    .top-03 {
      height: 50vh;
      margin: 50px 0;
    }
  }

/* ---------------------- text-section-01 & text-section-02--------------------------- */

.text-section-01 .text-column,
.text-section-02 .text-column {
    align-content: center;
}

.text-section-01 .text-column p,
.text-section-02 .text-column p,
.text-section-03 .text-column p{
    width: 90%;
    text-wrap: balance;
    padding: 15px 0;
    line-height: 28px;
}

.text-section-02 .row.reverse .text-column,
.text-section-01 .row.reverse .text-column {
    padding-left: 50px;
}

.text-section-01 .image-column img {
    height: auto;
    object-fit: cover;
    width: 100%;
}


@media screen and (max-width: 992px) {

    .text-section-01 .image-column,
    .text-section-02 .image-column {
        width: 100vw;
        margin: auto;
    }

    .text-section-02 .row.reverse .text-column,
    .text-section-01 .row.reverse .text-column {
        width: 100vw;
        padding-left: 0;
    }
    .text-section-01 .text-column,
    .text-section-02 .text-column {
        width: 100vw;
        padding-top: 20px;
    }
    .text-section-01 .text-column p,
    .text-section-02 .text-column p {
        width: 100%;
    }

    .reverse {
        flex-direction: column-reverse;
    }

    .text-section-01 .row {
        flex-direction: column-reverse;
    }

}

@media screen and (max-width: 768px) {

    /*.dark-mode {*/
    /*    padding: 10px 0;*/
    /*}*/

    .text-section-02 .image-column .image-top-left,
    .text-section-02 .image-column .image-top-right {
        display: none;
    }
}

@media screen and (max-width: 576px) {


    .text-section-02 .row.reverse .text-column,
    .text-section-01 .row.reverse .text-column {
        padding-left: 10px;
    }

}
/* ---------------------- text-section-01 & text-section-02--------------------------- */

/* ---------------------- text-section-03 &  table-01 -------------------------- */

.table-parent.has-child {
    overflow-x: auto;
   -webkit-overflow-scrolling: touch;    
  }

.text-section-03 thead  {
    background-color: var(--accent-color);
}

.text-section-03 .table {
    margin: 20px 0;
}

.text-section-03 tr:nth-child(even) {
    background-color: var(--light-color);
}
.text-section-03 .table>:not(:last-child)>:last-child>* {
    border-bottom-color: transparent;
}

.text-section-03 td,
.text-section-03 th {
    background-color: unset !important;
    border: 1px solid #eeeeee;
    padding: 1.25rem;
}

.text-section-03 tr, th {
    text-align: center;
}

/* ---------------------- component cta-01 ------------------------- */

.cta-01 .cta-section-01 {
    background-color: var(--light-color);
    /* background-color: unset; */
    border-radius: 20px;
}

.cta-01 .cta-text {
    width: 80%;
}

/* ---------------------- component cta-01 ------------------------- */

/*---------------------- component cta-02 ------------------------------ */
.cta-01,
.cta-02 {
    padding: 0 10px;
}
.cta-02 .cta-section-02 {
    background-color: var(--light-color);
    border-radius: 20px;
}

.cta-02 .cta-image {
    background-size: cover;
    background-position: center;
    min-height: 300px;
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.cta-02 .cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
}

.cta-02 .btn-container {
    text-align: left;
}


@media screen and (max-width:768px) {
    .cta-02 .cta-image {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
    }
    .cta-02 .cta-content,
    .cta-02 .btn-container {
        text-align: center;
    }
    .cta-02 .cta-content {
        padding: 50px 10px;
    }
}
/*---------------------- component cta-02 ------------------------------ */

/* ---------------------------------- faq ----------------------------------- */

#accordion {
    background-color: var(--light-color) !important;
    padding: 50px;
}

.faq .card {
    background-color: none;
    /* align-items: flex-start !important; */
    text-align: left;
}

.faq .card-body {
    /* align-items: flex-start !important; */
    text-align: left;
}

.faq .card-header {
    background-color: transparent;
    border: 1px solid var(--light-color);
}

.faq .card-header span {
    max-width: 80%;
}

.faq-icon {
    float: right;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 15px;
}

.faq-icon:hover {
    background-color: var(--heading-color);
}

/*-------------------------------------faq end ------------------------------------------*/

/* ----------------------   gallery-01 -------------------------*/

.gallery-01 .gallery-image {
    width: 100%;
    height: auto;
  }
  
  .gallery-01 .gallery-item {
    margin: 12px 0;
  }
  
  .gallery-01 .details {
    padding-top: 10px;
  }
  
  .gallery-01 .availability {
    display: inline-block;
  }
  
  .gallery-01 .available {
    color: var(--succes-color);
  }
  
  .gallery-01 .unavailable {
    color: var(--fail-color);
  }
  
  /* --------------------------  download-01 -------------------------*/

  .download-01-card-body {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
   .download-01 span {
    padding: 0 5px;
  }

/* -------------------- gallery-02 ----------------- */

.gallery-02 .slider-wrapper {
    position: relative;
  }
  
  .gallery-02 .slider-wrapper .slide-button {
    position: absolute;
    top: 50%;
    outline: none;
    border: none;
    height: 50px;
    width: 50px;
    z-index: 5;
    color: #fff;
    display: flex;
    cursor: pointer;
    font-size: 2.2rem;
    background: #000;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }
  
  .gallery-02 .slider-wrapper .slide-button:hover {
    background: #404040;
  }
  
  .gallery-02 .slider-wrapper .slide-button#prev-slide {
    left: -25px;
    display: none;
  }
  
  .gallery-02 .slider-wrapper .slide-button#next-slide {
    right: -25px;
  }
  
  .gallery-02 .slider-wrapper .image-list {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 18px;
    font-size: 0;
    list-style: none;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  
  .gallery-02 .slider-wrapper .image-list::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-02 .slider-wrapper .image-list .image-item {
    width: 325px;
    height: 400px;
    object-fit: cover;
  }
  
  .gallery-02 .container .slider-scrollbar {
    height: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  
  .gallery-02 .slider-scrollbar .scrollbar-track {
    background: #ccc;
    width: 100%;
    height: 2px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    position: relative;
  }
  
  .gallery-02 .slider-scrollbar:hover .scrollbar-track {
    height: 4px;
  }
  
  .gallery-02 .slider-scrollbar .scrollbar-thumb {
    position: absolute;
    background: #000;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    cursor: grab;
    border-radius: inherit;
  }
  
  .gallery-02 .slider-scrollbar .scrollbar-thumb:active {
    cursor: grabbing;
    height: 8px;
    top: -2px;
  }
  
  .gallery-02 .slider-scrollbar .scrollbar-thumb::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    bottom: -10px;
  }
  
  /* Styles for mobile and tablets */
  @media only screen and (max-width: 1023px) {
    .gallery-02 .slider-wrapper .slide-button {
      display: none !important;
    }
  
    .gallery-02 .slider-wrapper .image-list {
      gap: 10px;
      margin-bottom: 15px;
      scroll-snap-type: x mandatory;
    }
  
    .gallery-02 .slider-wrapper .image-list .image-item {
      width: 280px;
      height: 380px;
    }
  
    .gallery-02 .slider-scrollbar .scrollbar-thumb {
      width: 20%;
    }
  }
/* -------------------- gallery-02 ----------------- */

/* ------------------------- form-01 -------------------------------- */
#contact {
    width: 70vw;
    margin: auto;
}

#contact .contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

#contact .social-media a {
    padding: 0 5px;
    transform: .3s;
}

#contact .social-media a i:hover {
    color: var(--main-color);
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-info a {
    color: var(--dark-color);
    text-decoration: none;
    transition: .2s;
}
.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info p {
    width: 80%;
}


.form-wrapper {
    padding: 20px 30px;
    border-radius: 20px;
    border: 2px solid var(--light-color);
    
}

form label {
    padding: 8px 0;
    font-weight: 500;
}

.form-control {
    border-radius: 40px;
    background-color: var(--light-color);
    border-color: var(--light-color);
    padding: .9rem 1.4rem;
}
.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

textarea.form-control {
    border-radius: 20px;
}

.form-group input[type="file"] {
    background-color: transparent;
    margin: 0 5px;
}

.form-group input[type="file"]::file-selector-button {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px dotted var(--dark-color);
    cursor: pointer;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
}
.form-docs ul  {
    list-style-type: none;
}
.form-docs ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url("icons/check-solid.svg");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}


.form-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    transition: .2s;
}

.form-link:hover {
    color: var(--dark-color);
}

.form-check-label {
    margin-left:5px;
}

.form input[type='checkbox'] { filter: grayscale(1) }

.form-group-file {
    display: flex;
    flex-direction: column;
}

.input-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-auto-columns: 1fr;
    height: 100%;
    display: grid;
}

.input-container input {
    width: 100%;
}

.form-docs .form-check-label {
    margin-top: -5px;
}

input[type="submit"] {
    display: block;
    width: 30%;
}

/* ------------------------- form-01 -------------------------------- */

/* ---------------------------- map-02 -------------------------------- */
.map-02 {
    position: relative;
    margin-top: 30px;
}
.map-02::before {
    content: "";
    display: block;
    background-color: var(--light-color);
    height: 70%;
    width: 100%;
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    z-index: -1;
}


/* ------------------------- map-02 -------------------------------- */

/* ---------------------------- banner-01 -------------------------------- */


.banner {
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    display: flex;
    background-color: white;
    position: relative;

    > * {
        flex: 0 0 100%;
    }
}

.banner .banner-card {
    width: 100%;
    color: var(--dark-color);
    border-radius: 24px;
    box-shadow: rgba(255, 255, 255, 10%) 5px 5px 20px 0;
    padding: 20px;
    font-size: xx-large;
    justify-content: center;
    align-items: center;
    height: 100px;
    background: var(--white-color);
    object-position: center;
    object-fit: cover;
    
    /* &:nth-child(1) {
      background: var(--light-color);
    } */

    /* &:nth-child(2) {
      background: var(--accent-color);
    }

    &:nth-child(3) {
      background: #4300da;
    } */
}
.banner .banner-card img {
    height: 100%;
}

/* Group the cards for better structure. */
.banner .banner-group {
    display: flex;
    gap: 20px;
    /* Add padding to the right to create a gap between the last and first card. */
    padding-right: 20px;

    will-change: transform;
    /* We should be nice to the browser - let it know what we're going to animate. */
    animation: scrolling 15s linear infinite;
}

.banner .banner-fade {
    width: 100%;
    height: 100%;
    position: absolute;


    background: linear-gradient(90deg,
            #FFF,
            transparent 5%,
            transparent 95%,
            #FFF);
    inset: 0;
    pointer-event: none;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* ---------------------------- banner-01 -------------------------------- */

/* ---------------------------- timeline-01 -------------------------------- */

.timeline01-container {
    width: 70%;
    padding: 50px 0;
    margin: 50px auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.timeline01-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -1px;
    width: 2px;
    height: 100%;
    background: #CCD1D9;
    z-index: 1;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(255, 255, 255, 1) 100%);
}

/* Usunięto niepotrzebne powtórzenia */
.timeline01-item {
    width: 100%;
}

.timeline01-itemR,
.timeline01-itemL {
    float: left;
    width: 50%;
    display: flex;
    align-items: center;
}

.timeline01-itemL {
    flex-direction: row-reverse;
}

.timeline01-itemR {
    float: right;
}

.timeline01-line,
.timeline01-circle {
    background: #CCD1D9;
}

.timeline01-line {
    width: 10%;
    height: 2px;
}

.timeline01-circle {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.timeline01-content {
    width: 95%;
    padding: 0 15px;
    color: var(--dark-color);
}

.timeline01-content h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 500
}

.timeline01-content span {
    font-size: 1rem;
    color: #a4a4a4;
}

.timeline01-content p {
    font-size: .95rem;
    padding: 10px 0;
    line-height: 1.5em;
    word-spacing: 1px;
    color: var(--dark-color);
}

@media screen and (max-width: 768px) {
    .timeline01-container:before {
        left: 0;
    }

    .timeline01-itemL,
    .timeline01-itemR {
        flex-direction: row;
        width: 100%;
    }
}

.timeline01.dark-mode .timeline01-content h3,
.timeline01.dark-mode .timeline01-content p {
    color: var(--white-color);
}

.timeline01.dark-mode .timeline01-content span {
   color: var(--accent-color);
}

/* ---------------------------- timeline-01 -------------------------------- */

/* ---------------------------------- faq ----------------------------------- */

.accordion {
    margin: 0 auto;
    /* background-color: var(--light-color) !important; lub unset*/
    padding: 20px;
}


@media screen and (min-width: 992px) {
   .accordion {
    width: 80%;
   }
}

#accordion-item {
    background-color: var(--light-color)!important;
    padding: 50px;
}

.faq .accordion-body {
    text-align: left;
}

.accordion-button:focus {
   box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: var(--light-color);
}
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-repeat: no-repeat;
    background-size: 1rem;
    transition: transform .2s ease-in-out;
    opacity: .5;
    transform: rotate(-180deg);
}
.accordion-button:not(.collapsed)::after {
    background-image:url("icons/chevron-up-solid.svg");
}

/*-------------------------------------faq end ------------------------------------------*/

/* -------------------------- counter-01 -------------------------------- */

/* licznik */
.counter-wrapper {
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: unset !important;  jeśli chcemy wyłączyć tło */
}

/* .counter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  } */


.counter-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
}

.counter-box .counter01-number,
.counter-02 .counter-box .number  {
    font-size: 2.7rem;
    font-weight: bold;
    color: var(--color-accent);
}

.counter-box .counter-text-before,
.counter-box .counter-text-after {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 5px;
}

.counter .label {
    font-size: 1.2rem;
    color: var(--dark-color);
}
/* -------------------------- counter-01 -------------------------------- */

/* ----------------------------  counter-02 ----------------------------*/

.counter-02 .box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
}


.counter-02 .box-outer .counter {
    background-color: var(--light-color);
    border: 1px solid var(--light-color);
    transform: .3s;
    padding: 25px 0;
}

.counter-02 .box-outer .counter:hover {
    background-color: unset;
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
}

.counter-02 .box-outer .counter:hover .label {
    color: var(--dark-color);
    font-weight: 500;
}


.counter-02 .box-title,
.counter-02 .box-desc {
    width: 80%;
}

/* counter-02 dark-mode */

.counter-02.dark-mode .box-outer .counter {
    color: var(--accent-color);
    background-color: unset;
}
.counter-02.dark-mode .box-outer .counter:hover {
    background-color: var(--white-color);
    color: var(--accent-color) !important;
    border: 1px solid var(--white-color);
}
.counter-02.dark-mode .box-outer .label {
    color: var(--white-color);
}

.counter-02.dark-mode .box-outer .counter:hover .label {
    color: var(--dark-color);
}

/* counter-02 light-mode */
.counter-02.light-mode .box-outer .counter {
    border: 1px solid var(--accent-color);
}

.counter-02.light-mode .box-outer .counter:hover {
    background-color: var(--white-color);
}

/* ----------------------------  counter-02 ----------------------------*/

/* -------------------------- scroll-item-enter-animation -------------------------------- */

/* Scroll Items */
.comp-enter-start {
    opacity: 0; /* Initially hidden */
    transition: opacity 1.5s ease-out, transform 1.5s ease-out, scale 1.5s ease-out;
  }

.comp-enter-down {
    transform: translateY(150px);
  }

.comp-enter-right {
    transform: translateX(150px);
  }

.comp-enter-small {
    transform: scale(0,0);
  }

.comp-enter-big {
    transform: scale(2,2);
  }
  
  /* Visible Class to Trigger Animation */
.comp-enter-end {
    opacity: 1; /* Make it visible */
    transform: translateX(0); /* Slide to its natural position */
    transform: translateY(0); /* Slide to its natural position */    
    transform: scale(1,1);
  }

.timeline-enter-start {
    opacity: 0; /* Initially hidden */
    transform: scale(0,0);
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  }

.timeline-enter-end {
    opacity: 1; /* Make it visible */
    transform: scale(1,1);
  }

  /* -------------------------- scroll-item-enter-animation -------------------------------- */
  
  /* --------------------------- box-04 z ikonami ---------------------- */
  
  .box-04 .box-wrapper {
    width: 90%;
    margin: auto;
}

.box-04 .box-item-wrapper {
 padding: 20px 0;
}

/* .box-04 .box-04-item {
    margin-inline: 15px;
} */

.box-04 .box-04-item-icon img {
    height: 40px;
    width: 40px;
}
.box-04 .box-04-item-icon {
    margin-bottom: 15px;
}

.box-04 .box-text-wrapper,
.box-05 .box-text-wrapper {
    justify-content: center;
    align-content: center;   
}
 
.box-04 .box-04-item a {
    text-decoration: none;
    color: var(--dark-color);
}

@media screen and (min-width: 992px) {
    .box-04 .box-title,
    .box-04 .box-desc,
    .box-05 .box-title,
    .box-05 .box-desc {
        width: 80%;
    }
}



.box-04  .btn-container,
.box-05  .btn-container {
    text-align: left !important;
}

.box-04 .container.dark-mode .box-04-item a {
    color: var(--white-color);
}

.box-04 .box-desc,
.box-05 .box-desc {
    padding: 10px 0;
}


/* --------------------------- box-05 ze zdjeciami ---------------------- */

.box-05 .box-05-img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 1; */
    aspect-ratio: 3/2;
    object-fit: cover;
    position: relative;
}

.box-05 .box-title {
    text-transform: none;
}

.box-05.dark-mode p {
color: var(--white-color);
}

.box-05-link {
    text-decoration: none;
    color: var(--dark-color);
    text-transform: uppercase;
    transition: all .3s ease;
}

.box-05-link p {
    text-transform: none;
    text-align: left;
}

.box-05-link:hover {
    opacity: .8;
    color: var(--dark-color) !important;
}


/* ----------------------- blog-01 -----------------------*/

.blog-01-article-title {
    text-transform: none;
    margin: 0 0 10px 0 !important;
    font-size: 1.25rem;
}
  .blog-01-date {
   padding: 10px 0;
   margin-bottom: 0;
}

.blog-01-article-summary {
    text-transform: none;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ----------------------- blog-01-categories -----------------------*/
.blog-01-categories {
    display: flex;
    justify-content: center;
}

.blog-01-categories .list-unstyled {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.blog-01-categories .list-unstyled li {
    margin: 0 5px;
}

.blog-01-categories-link {
    text-decoration: none;
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 12px 20px;
    display: block;
    border-radius: 20px;
    border: none;
    margin: 5px 0;
    transition: all .3s ease;
}

.blog-01-categories-link:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
}
.blog-01-categories .btn.active {
    background-color: var(--accent-color);
  }

/* jeśli kategorie nie sa wyswietlane */
/* .blog-01-categories {
    display: none;
} */

/* ----------------------- article-01 -----------------------*/
.article-01 {
    margin-top: 50px;
}
.articles-details {
    display: flex;
    justify-content: flex-start;
}

.articles-detail {
    margin-right: 15px;
    font-size: 1.15rem;
    padding: 5px 0;
}

.article-title {
    font-weight: 700;
}

.article-content {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.25rem;
}

.article-content h2 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.article-content ol {
    margin-top: 15px;
    padding-left: 20px;
}

.article-content ol li {
    margin-bottom: 10px;
}

#Article .component-wrapper {
    margin: 0;
}
#Article .related-posts {
    margin-bottom: 25px;
}



.table-of-contents {
    padding: 15px;
}

.table-of-contents a {
    text-decoration: none;
    color: var(--accent-color);
    font-size: 1.25rem;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

.table-of-contents-title {
    font-weight: 700;
}

.share-links {
    margin-top: 20px;
    text-align: center;
}

.share-links p {
    font-size: 1.5rem;
}

.share-links a {
    margin-right: 10px;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.share-links a:hover {
    color: var(--dark-color);
}


.article-img {
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    margin: 20px 0;
}

/*slider*/
.slider-list {
    margin-top:20px;
}
.slider-01.dark-mode .slider-item-box-01-link-paragraph {
    color: var(--white-color);
}

/*breadcrumbs*/

.breadcrumbs {
    margin-top: -40px;
    z-index: 2;
 }
 
 .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     margin: 0;
     padding: 0;
 }
 .breadcrumbs ol li {
     margin-right: 10px;
     font-size: 17px;
 }
 .breadcrumbs ol li a {
     text-decoration: none;
     color: var(--dark-color);
     transition: color 0.3s ease;
 }
 .breadcrumbs ol li a:hover {
     color: var(--accent-color);
 }
 .breadcrumbs li::after {
     content: "";
     display: inline-block;
     width: 10px;
     height: 10px;
     background-image: url("icons/angle-right-solid.svg");
     background-size: 100% 100%;
     margin-left: 5px;
     margin-right: 5px;
   }

.breadcrumbs li:last-child::after {
  background-image: none;
}
   
   .breadcrumbs .current {
     color: var(--accent-color);
   }