*, *::before, *::after {
  box-sizing: border-box;
}

input, button, textarea, select {
  font: inherit;
}

input, textarea {
  caret-color: var(--font-color-1);
}

*:focus-visible, .btn:focus-visible {
	transition: 0s !important;
	outline: 3px dashed #ff0000;
	z-index: 10;
	border-radius: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

.row, .container, .container-title, .container-image, .container-button, .container-nav, .container-1, .container-2, .container-3 {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.fill-space {
  flex: 1 1 auto;
}

.custom-file-input ~ .custom-file-label::after {
  content: "Wybierz";
}

.form-control:focus {
  border-color: var(--color-1_hover);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px var(--color-1_hover);
}

.link {
	display: inline-block;
    background-repeat: no-repeat;
    transition: all .2s;
	background-position: bottom left;
    background-size: 0% 2px;
    background-image: linear-gradient( var(--color-1), var(--color-1) );
    padding-bottom: 1px;
}
.link:hover {
	background-size: 100% 2px;
}

.sub-section {
	position: relative;
	padding-left: 2rem;
}
.sub-section::before {
	content: "●";
	position: absolute;
	left: 0;
	color: var(--color-1);
	top: 0.5em;
}

/*aniamcje*/

.anim-1 {
	position: relative;
	color: transparent; 
	transition: color 0.2s ease-out;
	transition-delay: 0.4s;
	display: inline-block;
}

.anim-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-1); /* Dopasuj do swojej strony */
  z-index: 1;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.anim-1.is-visible {
  color: var(--font-color-1);
}

.anim-1.is-visible::before {
  transform: scaleX(0);
  transform-origin: right;
}

.scroll-target {
  scroll-margin-top: 8rem;
}

@media screen and (max-width: 1400px) {
	
}

@media screen and (max-width: 1200px) {
	
}

@media screen and (max-width: 992px) {

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 576px) {
	
}

@media screen and (max-height: 400px) {

}