*, *::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-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 {
    transition: all .3s;
}
.link:hover {
	color: var(--color-1) !important;
}

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

.accent {
	display: flex;
	align-items: center;
	transform: translatex(-4rem);
}

	.accent .half-circle {
		position: relative;
		margin-right: 2rem;
		height: 4rem;
		width: 2rem;
		overflow: hidden;
	}
	.accent .half-circle:before {
		position: absolute;
		content: "";
		left: 0;
		top: 0;
		height: 4rem;
		width: 4rem;
		background: linear-gradient(to bottom, var(--color-1) 0%, var(--color-1_hover) 100% );
		border-radius: 50%;
	}

h1, h2, h3, p, li, a {
  text-wrap: pretty;
}

@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) {
	
	.accent {
		transform: translatex(-3rem);
	}

		.accent .half-circle {
			margin-right: 1rem;
		}
}

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

}