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

body {
	background-color: var(--bg-1);
}

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%;
}

.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;
}

.site-title a {
	color: var(--white-1);
	transition: .3s;
}

.is-scrolled .site-title a {
	color: var(--font-color-1);
}

.site-title a span {
	color: var(--color-1);
}

@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) {

}