/* ============ FONTS ============ */

* {
	font-family: "new-order", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.font-semibold {
	font-weight: 500;

}

.font-bold {
	font-weight: 600;
}

/* ============ LINKS ============ */

.link-header {
	color: #ffffff;
	text-decoration: none;
	background-image: linear-gradient(#ffffff, #ffffff);
	background-size: 0% 0.1em;
	background-position-y: 100%;
	background-position-x: 100%;
	background-repeat: no-repeat;
	transition: background-size 0.2s ease-in-out;
}

.link-header:hover,
.link-header:focus,
.link-header:active {
	background-size: 100% 0.1em;
	background-position-x: 0%;
}

.link-header-primary {
	color: #0b306b;
	text-decoration: none;
	background-image: linear-gradient(#0b306b, #0b306b);
	background-size: 0% 0.1em;
	background-position-y: 100%;
	background-position-x: 100%;
	background-repeat: no-repeat;
	transition: background-size 0.2s ease-in-out;
}

.link-header-primary:hover,
.link-header-primary:focus,
.link-header-primary:active {
	background-size: 100% 0.1em;
	background-position-x: 0%;
}

/* ============ COLORS ============ */

.text-primary {
	color: #5271ff;
}

.bg-primary {
	background-color: #5271ff;
}

.text-secondary {
	color: #0b306b;
}

.bg-secondary {
	background-color: #0b306b;
}

/* ============ BUTTONS ============ */

.btn-primary {
	color: #ffffff;
	background-color: #5271ff;
	border: 1px solid #5271ff;
	padding: 0.5em 2em;
	transition: background-color 0.2s ease-in-out;
	border-radius: 25px;
}

.btn-primary:hover {
	background-color: #ffffff;
	color: #5271ff;
}

.btn-secondary {
	color: #ffffff;
	background-color: #0b306b;
	border: 1px solid #0b306b;
	padding: 0.5em 2em;
	transition: background-color 0.2s ease-in-out;
	border-radius: 25px;
}

.btn-secondary:hover {
	background-color: #ffffff;
	color: #0b306b;
}

.button-white {
	color: #0f2c5c;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	padding: 0.5em 2em;
	transition: background-color 0.2s ease-in-out;
	border-radius: 25px;
}

.button-white:hover {
	background-color: #0f2c5c;
	color: #ffffff;
}

/* ============ BACKGROUNDS ============ */

.parralax-hero {
	background-image: url("https://mkugroup.pl/wp-content/uploads/2025/04/young-european-family-couple-relax-during-home-ren-2025-03-09-17-44-30-utc-Large.jpeg");
	position: relative;
	overflow: hidden;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: background-size 0.5s ease;
}

/* ============ BACKGROUNDS ============ */

.fade {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

/* ============ CONTENT ============ */

.contentBox p {
	text-align: justify;
}

.contentBox h1 {
	font-size: 28px;
	margin-bottom: 15px;
}

.contentBox h2 {
	font-size: 24px;
	margin-bottom: 12px;
	margin-top: 15px;

}

.contentBox h3 {
	font-size: 20px;
	margin-bottom: 10px;
	margin-top: 15px;

}

.contentBox h4 {
	font-size: 18px;
	margin-bottom: 8px;
}

.contentBox h5 {
	font-size: 16px;
	margin-bottom: 6px;
}

.contentBox h6 {
	font-size: 14px;
	margin-bottom: 4px;
}

.contentBox ol,
ul {
	margin-bottom: 15px;
}

.contentBox ol {
	list-style-type: decimal;
}

.contentBox ul {
	list-style-type: disc;
}

.contentBox li {
	margin-left: 20px;
}

.contentBox ul ul,
.contentBox ol ol,
.contentBox ul ol,
.contentBox ol ul {
	margin-left: 20px;
}