* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;

}

html, body {
    overflow-x: hidden !important;
  } 


body {
   
    color: #fff;
    background-color: #1d1d1d;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-family: 'Sora', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



footer {
  /* Style dla stopki */
  background-color: #1a1a1a; /* Przykładowy kolor tła stopki */
  color: white;
  margin-top: auto;
  padding: 20px;
  text-align: center;
  z-index: 1;
  width: 100%;
}


/* Usunięcie focus outline dla większości elementów */
*:focus {
    outline: none !important;
}


/* Dodanie focus outline dla elementu formularza, gdy jest aktywowany klawiaturą */
*:focus:not(input):not(textarea):not(select) {
    outline: none !important;
}

/* Dodanie focus outline dla elementu button po aktywacji myszą */
*:focus:not(:hover) {
    outline: none !important;
}







/*********************************************

header start 

*******************************************************/


.navbar {
    background-color:#1d1d1d !important; /* Ustaw kolor tła na czerwony z !important */
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);     
}


.navbar-brand,
.navbar-nav .nav-link {
  color: white !important; /* Ustaw kolor linków na biały z !important */
  justify-content: center;

 
}

.navbar-brand{
    font-size: 32px;   

}




/* Animacja przycisku burgera */



/* Remove border from toggler */
.navbar-toggler {
    border: 0 !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* Lines of the Toggler */
.toggler-icon{
    width: 30px;
    height: 3px;
    background-color: #fff;
    display: block;
    transition: all 0.2s;
}

/* Adds Space between the lines */
.middle-bar{
    margin: 5px auto;
}

/* State when navbar is opened (START) */
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}
/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
.navbar-toggler.collapsed .toggler-icon {
    background-color: #fff;
}



/* padding do odstepow linkow */
.navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
padding: 0 30px;
}




/* Dodaj podkreślenie na dole aktywnego linku tylko na urządzeniach mobilnych */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
      border-bottom: 1px solid #393939;   
      padding: 20px 0px 30px;
    } 

    .navbar-nav .nav-link.disabled {
        margin-bottom: 40px; /* Zwiększ odstęp na dole linku "Disabled" */
      }
  

    .navbar-brand{
        font-size: 32px; 
    }

    
    

  }





/* Stylowanie tła i koloru tekstu dla dropdowna */
.dropdown-menu {
  background-color: #1d1d1d;
}

.dropdown-item {
  color: white;
}

/* Usunięcie efektu podświetlania na najechanie */
.dropdown-item:hover {
  background-color: #ddd;
}

/* Usunięcie efektu podświetlania po kliknięciu */
.dropdown-item:focus {
  background-color: transparent;
  color: white;
}

/* Usunięcie efektu podświetlania po aktywacji */
.dropdown-item:active {
  background-color: transparent;
}


/* Resetowanie stylowania dla aktywowanego linku */
.nav-link,
.dropdown-toggle {
    outline: none;  !important/* Usunięcie obramowania */
    box-shadow: none; !important  /* Usunięcie cienia */
}

/* Resetowanie stylowania dla aktywowanego linku */
.nav-link:not(.active),
.dropdown-toggle:not(.active) {
    outline: none !important;
    box-shadow: none !important;
}


/* Usunięcie efektu podświetlania po kliknięciu */
.dropdown-item:not(.active):focus,
.dropdown-item:not(.active):active {
    background-color: transparent !important;
    color: white !important;
    text-decoration: none !important;
}

/* Resetowanie stylowania dla aktywowanego linku */
.nav-link:not(.active),
.dropdown-toggle:not(.active) {
    outline: none !important;
    box-shadow: none !important;
}


/* Usunięcie efektu podświetlania po kliknięciu */
.dropdown-item:active,
.dropdown-item:focus {
    outline: none; /* Usunięcie obramowania */
    background-color: transparent !important;
    color: white !important;
    text-decoration: none !important;
}



/* Resetowanie stylowania dla aktywowanego linku */
.nav-link:not(.active),
.dropdown-toggle:not(.active) {
    outline: none !important; /* Usunięcie obramowania */
    box-shadow: none !important; /* Usunięcie cienia */
}

/* Usunięcie obramowania dla aktywowanego dropdowna */
.nav-item.dropdown:focus-within {
    outline: none !important;
    box-shadow: none !important;
}


/* Dodanie focus outline dla elementu, gdy urządzenie ma ekran dotykowy (np. iPhone) */
@media (pointer: coarse) {
    *:active {
        outline: none !important;
    }
}



/* Dodanie stylu dla ekranów poniżej 992 px */
/* Dodanie stylu dla ekranów poniżej 992 px */
@media (max-width: 992px) {
  .dropdown-menu {
      background-color: transparent;
      border: none;
  }

  .dropdown-item {
      color: white;
      margin-bottom: 8px; /* Dostosuj odstęp między linkami */
  }

  .dropdown-item:hover {
    background-color: #ddd;
}

/* Usunięcie efektu podświetlania po kliknięciu */
.dropdown-item:focus {
background-color: transparent;
color: white;
}


/* Usunięcie efektu podświetlania po aktywacji */
.dropdown-item:active {
background-color: transparent;
}


  
}



/*********************************************

header end

*******************************************************/



/*********************************************

hero section start 

*******************************************************/
.grid-background {
    background-color: transparent;
    background-image: 
        linear-gradient(90deg, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px, transparent 21px),
        linear-gradient(0deg, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px, transparent 21px);
    background-size: 41px 49px; /* Rozmiar siatki w kratkę */
    background-position: -23px -5px, -23px -5px; /* Pozycja tła siatki */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Dodana linia na dole kontenera */
    overflow: hidden; /* Ukryj nadmiarową siatkę po lewej i po prawej stronie */  
    margin: -5px -10px 0 -10px; /* Dodatkowe marginesy na całym kontenerze */
}

/* Style dla .grid-background w trybie pc */
@media screen and (min-width: 768px) {
  .pc_box{
    margin-top: 72px;
  
  }


 .title_hero_box{
     height: 300px;
 }

 .circle_box{
    height: 300px;
 }
 




}


/* Style dla .grid-background w trybie mobilnym */
@media screen and (max-width: 767px) {
 
 


  }



/* Dodaj odstęp od góry bez zmiany wysokości */



.hero-content {
    text-align: center;
    width: 100%;
}

h1 {
    font-size: 64px;
    color: #fff;
    overflow: hidden;
}   


@media (max-width: 1535px) {
    h1 {
      font-size: 50px;
    }
  }


@media (max-width: 992px) {
    h1 {
      font-size: 37px;
    }
  }

@media (max-width: 768px) {
    h1 {
      font-size: 32px;
    }
  }

  @media (max-width: 380px) {
    h1 {
      font-size: 29px;
    }
  }

  
  @media (max-width: 343px) {
    h1 {
      font-size: 24px;
    }
  }


  
  @media (max-width: 206px) {
    h1 {
      font-size: 20px;
    }
  }




  @media (max-width: 300px) {
    .stroke {
      font-size: 16px;
    }
  }





/*********************************************

hero section end

*******************************************************/
.circle1{
    border: 2px solid white;
    border-radius: 5000px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: consolas;

}


.circle {
    position: relative;
    width: 160px / 2;
    height: 160px;
    border-radius: 50%;
    /* background: #ccc; */
    display: flex;
    justify-content: center;
    align-items: center;

}

.logo {
    position: absolute;
    width: 40px;
    height: 40px;
    background: url('./arrow-down-linear.svg');
    background-size: cover;
    border-radius: 50%;
    /* filter: brightness(1.5) contrast(1.5); */
}

.text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    0% {
        transform: rotate(-360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.text span {
    position: absolute;
    left: 50%;
    font-size: 1.4em;
    transform-origin: 0 80px;
    color: white;
}



@media (max-width: 768px) {


    .circle1{
        width: 140px;
        height: 140px;
        margin-top: 0px;
    }

    .circle{
        width: 120px;
        height: 120px;
    }


    .text span{
        transform-origin: 0 60px;
        font-size: 1em;
    }


    .logo{
        width: 30px;
        height: 30px;
    }

   

}

/*********************************************
kontener test  styli

*******************************************************/




.card {
    border: none; /* Usunięcie obramowania dla całej karty */
    background-color: transparent;
}

.card-body {
    background-color: #1a1a1a;
    color: #ffffff;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}



.stroke{
    line-height: 1.8;
    font-size: 16px;
    font-weight: 300;
    color: #ddd;
    margin-top: 2.1rem;
}






/*********************************************
kontener  styli dla usług 

*******************************************************/


.feature-box {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  margin-bottom: 15px;  
}







.titx {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.text_service {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  width: 100%;
  height: 90px;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
  color: #ddd;
}

.service_title {
  font-size: 45px;
  font-weight: 700;
  font-family: 'Epilogue', sans-serif;
}

@media (max-width: 992px) {

 
  .titx, .my-0 {
    margin: 0rem; /* Margines równy 0 dla urządzeń mobilnych */
  }

  .desktop-margin {
    margin-top: 0; /* Margines równy 0 dla urządzeń poniżej 992px */
  }
}



@media (max-width: 992px) {
 


  .flex-md-column {
    flex-direction: column !important;
  }

  .row.flex-md-row {
    flex-direction: column !important;
 
  }

  
  .mobile-margin {
    margin-bottom: 1rem !important; /* Dostosuj wartość marginesu do preferencji */
  }

  
  .mob-margin {
    margin-top: 1rem !important;
    margin-bottom: 0rem !important;
  }

.service__container{
  margin-top: 0.5rem !important;
}


  .text_service {
    justify-content: flex-start;
    align-items: baseline;
  } 

  



}






@media (max-width: 992px) {
 
  
  .col.md-5.titx.mobile-margin {
    display: none !important;
  }

  .service_title {
    font-size: 35px;
  }

}






/* Style dla urządzeń mobilnych (poniżej 992px) */



/*reszta styli co była w index html */



.service_wrapper {
	padding: 80px 0;
	color: #ffffff;

}

.container.no-border {
  border: none;
}

.head_text {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 30px;
}

.mt_30 {
	margin-top: 30px;
}


.service_box {
  position: relative;
  background-color: transparent;
  padding: 60px 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: .3s;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}




.service_box h2 {
	font-size: 30px;
	font-weight: 600;
	margin: 20px 0 20px 0;
}

.service_box h6 {
	font-size: 14px;
	margin: 30px 0 20px 0px;
  opacity: .7 !important;
}

.service_box p {
    font-size: 14px;
    line-height: 26px;
}

.img-service{
  width: 50px;
  height: 50px;
}


.btn-read {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  padding: 15px 0px 15px 20px;
  margin-top: 30px;
  max-width: 100%; /* Maksymalna szerokość to 100% rodzica */
  height: 50px;
  border-radius: 30px; /* Zaokrąglamy przycisk */
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  text-decoration: none;
  color: white;
  display: flex;
  justify-content: space-between; /* Rozdzielamy tekst i ikonę */
  align-items: center; /* Wyśrodkowanie zawartości */


}


.arrow-circle {
  background-color: transparent;
  color: white;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%; /* Tworzymy kółko */
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center; /* Wyśrodkowanie ikony */
  align-items: center;
  font-size: 24px; /* Dostosuj rozmiar ikony */

  /* Dodatkowe style do uzyskania wyglądu strzałki w kółku */
}






.btn-read:hover{
  background-color: white;
  color: black;
  border: none; 
}


.btn-read .arrow-circle .white-icon {
  display: block;
}

.btn-read .arrow-circle .black-icon {
  display: none;
}

.btn-read:hover .arrow-circle .white-icon {
  display: none;
}

.btn-read:hover .arrow-circle .black-icon {
  display: block;
}

/* Wszystkie style, które mają działać poniżej 992px */
@media (max-width: 992px) {
  .col-lg-4 {
    width: 100%; /* Zmieniamy szerokość kolumny na 100% */
    margin-bottom: 20px; /* Dodajemy odstęp między kartami */
  }
}


.service_box h2 {
  font-size: 20px;
  font-weight: 300;
}


.service_box h6 {

  font-weight: 300;
}








    /* Styl dla ekranów powyżej 992px */
    @media (min-width: 993px) {
      .card-body {
          background-color: #1a1a1a;
          height: auto;
          padding: 20px;
      }

      .image-container {
          display: flex;
          justify-content: space-around;
          align-items: center;
          flex-wrap: nowrap;
          overflow-x: auto;
      }

      .image-container img {
          width: 60px; /* Rozmiar ikon na desktopie */
          height: 60px; /* Rozmiar ikon na desktopie */
          margin-right: 10px;
      }

      .woocommerce-icon img {
          width: 60px; /* Rozmiar ikony WooCommerce na desktopie */
          height: 60px; /* Rozmiar ikony WooCommerce na desktopie */
      }
  }

  /* Styl dla ekranów poniżej 992px */
  @media (max-width: 992px) {
      .card-body {
          background-color: #1a1a1a;
          height: auto;
          margin: 2.5rem 2.5rem 0rem  2.5rem;
      }

      .image-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
      }

      .image-container img {
          width: 50px; /* Rozmiar ikon na tabletach/mobile */
          height: 50px; /* Rozmiar ikon na tabletach/mobile */
          margin-right: 10px;
          margin-bottom: 10px;
        
      }

      .woocommerce-icon img {
          width: 50px; /* Rozmiar ikony WooCommerce na tabletach/mobile */
          height: 50px; /* Rozmiar ikony WooCommerce na tabletach/mobile */
      }
  }

  @media (max-width: 768px) {
    
    .image-container img {
      width: 45px; /* Rozmiar ikon na tabletach/mobile */
      height: 45px; /* Rozmiar ikon na tabletach/mobile */
      margin-right: 10px;
      
      
  }

  .woocommerce-icon img {
      width: 45px; /* Rozmiar ikony WooCommerce na tabletach/mobile */
      height: 45px; /* Rozmiar ikony WooCommerce na tabletach/mobile */
  }

}
