


/* Google fonts & font family
==================================================*/


@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');


/* General
==================================================*/

html,
body {
	margin: 0;
    height: 100%;
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.8;
    color: #000000;
	scroll-behavior: smooth;
	background-color: #DADADA;
	
	overflow: auto;               /* przewijanie działa normalnie */
  scrollbar-width: none;        /* Firefox: ukryj pasek */
  -ms-overflow-style: none;     /* IE/Edge: ukryj pasek */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;   
	
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.main-container {
    padding-top: 0vh;
	padding-bottom: 12vh;
}

a{
	color: #000000;
}
a:hover{
	color: #000000;
	text-decoration-line: line-through;
}

::selection {
  color: #000000; 
  background: #DADADA;
}


.h-30 {
    height: 0px;
}

.h-ernie {
    height: 6vh;
}

.box-intro a {
  text-decoration: none;   /* usuń underline w normalnym stanie */
  font-weight: 800;        /* mocne pogrubienie */
}

.box-intro a:hover {
  text-decoration-line: line-through;  /* przy hoverze wraca przekreślenie */
  font-weight: 800;                    /* zostaje bold */
}


/* typography
==================================================*/

h1 {
	font-weight: 500;
    color: #000000;
    font-size: 4vmin;
	line-height: 1.3;
	padding-left: 15vw;
	padding-right: 15vw;
	margin-bottom: 5vh;
}


h6 {
   position: absolute;
    left: 2vh;            /* margines jak w headerze */
    bottom: 2vh;          /* margines jak header od góry */
    font-size: 2vmin;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    text-align: left;
}

h3 {
    color: #000000;
	font-size: 2vmin;
	font-weight: 500;
	line-height: 1.5;
	
}

h3 .firstline {
  display: block;        /* oddzielny blok */
  margin-bottom: 0.3em;  /* odstęp tylko pod tą linią */
   
}

.extra-bold {
  font-weight: 800; /* albo 900 */
}

/* karuzela co niedziela
==================================================*/

.carousel-control.left, .carousel-control.right {
  background: none !important;
  outline: 0;
  opacity: 1;
  position: absolute !important;
  width: 4%;
  height: 100%;
}

.carousel-control img {
  position: relative !important;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -70%;
  margin-right: -70%;
}


/* preloader
==================================================*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #DADADA;
    /* change if the mask should be a color other than white */
    z-index: 1000;
    /* makes sure it stays on top */
}

.pre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  transform: none; /* usuń translate */
}



.spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 15px;
  height: 15px;
  background-color: #000000;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* headr
==================================================*/


.box-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    /* height: 7vh;  <- usuń tę linię */
    padding-top: 1vh;   /* zostaw albo daj inną */
    padding-bottom: 0vh; /* możesz dodać, jeśli chcesz więcej oddechu */
	
}

.box-menu-text {
	
	position: absolute;
	top: 2vh;          /* równo do góry */
    left: 2vh;
    transform: none; 
	color: #000000;
    font-size: 2vmin;
    font-weight: 500;
	line-height: 1.4;
    right: auto;
	display: inline-block;
	 white-space: normal;
  word-break: break-word;
}


.box-menu-text1 {
	
	position: absolute;
    top: 2vh;          /* też równo do góry */
    right: 2vh;
    transform: none; /* wyłączamy centrowanie */
	color: #000000;
    font-size: 2vmin;
    font-weight: 500;
	text-align: right;
	line-height: 1.4;
    left: auto;
	display: inline-block;
}




/* box-intro
==================================================*/

.box-intro {
    text-align: center;
    display: table;
    height: 100vh;
    width: 100%;
}

.box-intro .table-cell {
    display: table-cell;
    vertical-align: middle;

}




/* mouse effect */

.mouse {

    position: absolute;
    bottom: 4vh;
    right:0;
    left:0;
	margin:0 auto;
	width: auto;
    height: 4vh;
    -webkit-animation: finger 2s infinite;
    animation: finger 2s infinite;
	background-image: url("../img/arr_down.svg");
	background-repeat: no-repeat;
	background-position: center;

}



@-webkit-keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes finger {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}



/* footer
==================================================*/

footer {
	
  	position: relative;   /* zamiast fixed */
    width: 100%;
    height: 16vh;         /* dowolna wysokość */
    background: transparent;
}



/* backto top
==================================================*/

.cd-top {
  position: fixed;
  bottom: 2vh;      /* taki sam od dołu jak footer */
  right: 2vh;        /* taki sam od lewej jak footer */
  display: inline-block;
  visibility: hidden;

}

.cd-top img {
  height: 4vh;      /* identyczna wysokość jak strzałka w .mouse */
  width: auto;      /* proporcjonalnie, bez kwadratu */
  display: block;   /* żeby nie było „szczeliny” inline-img */
}



.cd-top.cd-is-visible,
.cd-top.cd-fade-out,
.no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

@media (max-width: 768px) {
  footer {
    height: 13vh;
  }
}

@media (max-width: 768px) {
  h3 { font-size: 13px; }
  h6 { font-size: 13px; }
  .box-menu-text,
  .box-menu-text1 
	{ font-size: 13px; }
}

@media (max-width: 768px) {
  h1 {
    font-size: 5vmin;
    line-height: 1.35;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
