/* Variable overrides */
:root {
	color-scheme: only light;
}

/* Custom variables */
:root {
	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Roboto', sans-serif;

	--dark-modifier: 0.8;
	--light-modifier: 1.2;
	--bg-lightness: 90%;
	--border-radius: 1.25rem;

	--theme-white-hex: #ffffff;
	--theme-black-hex: #000000;

	--theme-green-hex: #8cc04d;
	--theme-blue-hex: #1c70b8;
	--theme-pink-hex: #d60a8c;
	--theme-yellow-hex: #ff9103;
	--theme-purple-hex: #2e2e82;
	--theme-cyan-hex: #47bab5;
	--theme-red-hex: #e30512;

	--theme-green-rgb: 140, 192, 77;
	--theme-blue-rgb: 28, 112, 184;
	--theme-pink-rgb: 214, 10, 140;
	--theme-yellow-rgb: 255, 145, 3;
	--theme-purple-rgb: 45, 45, 130;
	--theme-cyan-rgb: 71, 186, 181;
	--theme-red-rgb: 227, 5, 18;

	--theme-green-light: hsl(87, 48%, calc(53% * var(--light-modifier)));
	--theme-green-dark: hsl(87, 48%, calc(53% * var(--dark-modifier)));
	--theme-green-bg: hsl(87, 48%, var(--bg-lightness));
	--theme-blue-light: hsl(208, 74%, calc(42% * var(--light-modifier)));
	--theme-blue-dark: hsl(208, 74%, calc(42% * var(--dark-modifier)));
	--theme-blue-bg: hsl(208, 74%, var(--bg-lightness));
	--theme-pink-light: hsl(322, 91%, calc(44% * var(--light-modifier)));
	--theme-pink-dark: hsl(322, 91%, calc(44% * var(--dark-modifier)));
	--theme-pink-bg: hsl(322, 91%, var(--bg-lightness));
	--theme-yellow-light: hsl(34, 100%, calc(51% * var(--light-modifier)));
	--theme-yellow-dark: hsl(34, 100%, calc(51% * var(--dark-modifier)));
	--theme-yellow-bg: hsl(34, 100%, var(--bg-lightness));
	--theme-purple-light: hsl(240, 48%, calc(35% * var(--light-modifier)));
	--theme-purple-dark: hsl(240, 48%, calc(35% * var(--dark-modifier)));
	--theme-purple-bg: hsl(240, 48%, var(--bg-lightness));
	--theme-cyan-light: hsl(177, 45%, calc(50% * var(--light-modifier)));
	--theme-cyan-dark: hsl(177, 45%, calc(50% * var(--dark-modifier)));
	--theme-cyan-bg: hsl(177, 45%, var(--bg-lightness));
	--theme-red-light: hsl(356, 96%, calc(45% * var(--light-modifier)));
	--theme-red-dark: hsl(356, 96%, calc(45% * var(--dark-modifier)));
	--theme-red-bg: hsl(356, 96%, var(--bg-lightness));

	--very-light-modifier: 1.6;
	--theme-green-very-light: hsl(87, 48%, calc(53% * var(--very-light-modifier)));
	--theme-blue-very-light: hsl(208, 74%, calc(42% * var(--very-light-modifier)));
	--theme-pink-very-light: hsl(322, 91%, calc(44% * (var(--very-light-modifier) + 0.2)));
	--theme-yellow-very-light: hsl(34, 100%, calc(51% * var(--very-light-modifier)));
	--theme-purple-very-light: hsl(240, 48%, calc(35% * (var(--very-light-modifier) + 0.5)));
	--theme-cyan-very-light: hsl(177, 45%, calc(50% * var(--very-light-modifier)));
	--theme-red-very-light: hsl(356, 96%, calc(45% * var(--very-light-modifier)));
	--theme-primary-very-light: var(--theme-purple-very-light);
	--theme-cta-very-light: var(--theme-pink-very-light);

	--theme-primary-hex: var(--theme-purple-hex);
	--theme-primary-rgb: var(--theme-purple-rgb);
	--theme-primary-light: var(--theme-purple-light);
	--theme-primary-dark: var(--theme-purple-dark);
	--theme-primary-bg: var(--theme-purple-bg);

	--theme-cta-hex: var(--theme-pink-hex);
	--theme-cta-rgb: var(--theme-pink-rgb);
	--theme-cta-light: var(--theme-pink-light);
	--theme-cta-dark: var(--theme-pink-dark);
	--theme-cta-bg: var(--theme-pink-bg);

	--bs-border-radius: var(--border-radius);
	--bs-border-radius-sm: var(--border-radius);
	--bs-border-radius-lg: var(--border-radius);
	--bs-border-radius-xl: var(--border-radius);
	--bs-border-radius-2xl: var(--border-radius);
	--bs-border-radius-pill: var(--border-radius);
	color-scheme: only light;

	--bs-link-color: var(--theme-primary-hex);
	--bs-link-hover-color: var(--theme-primary-dark);
	--bs-code-color: var(--theme-cta-light);
	--bs-highlight-bg: var(--theme-purple-bg);
	--bs-primary-rgb: var(--theme-primary-rgb);
	--bs-success-rgb: var(--theme-green-rgb);
	--bs-danger-rgb: var(--theme-red-rgb);
	--bs-warning-rgb: var(--theme-yellow-rgb);
	--bs-info-rgb: var(--theme-cyan-rgb);
}

body,
:root {
	--bs-body-font-weight: 300;
	font-family: var(--font-primary);
	font-display: block;

}

.text-bg-warning {
	color: var(--theme-black-hex) !important;
	background-color: RGBA(var(--theme-yellow-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
	color: var(--theme-black-hex) !important;
	background-color: RGBA(var(--theme-cyan-rgb), var(--bs-bg-opacity, 1)) !important;
}

.btn {
	--bs-btn-border-radius: 1.5rem;
}

.btn-cta {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-cta-hex);
	--bs-btn-border-color: var(--theme-cta-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-cta-dark);
	--bs-btn-hover-border-color: var(--theme-cta-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-cta-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-cta-dark);
	--bs-btn-active-border-color: var(--theme-cta-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-white-hex);
	--bs-btn-disabled-bg: var(--theme-cta-hex);
	--bs-btn-disabled-border-color: var(--theme-cta-hex);
}

.btn-primary {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-primary-hex);
	--bs-btn-border-color: var(--theme-primary-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-primary-dark);
	--bs-btn-hover-border-color: var(--theme-primary-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-primary-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-primary-dark);
	--bs-btn-active-border-color: var(--theme-primary-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-white-hex);
	--bs-btn-disabled-bg: var(--theme-primary-hex);
	--bs-btn-disabled-border-color: var(--theme-primary-hex);
}

.btn-success {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-green-hex);
	--bs-btn-border-color: var(--theme-green-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-green-dark);
	--bs-btn-hover-border-color: var(--theme-green-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-green-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-green-dark);
	--bs-btn-active-border-color: var(--theme-green-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-white-hex);
	--bs-btn-disabled-bg: var(--theme-green-hex);
	--bs-btn-disabled-border-color: var(--theme-green-hex);
}

.btn-danger {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-red-hex);
	--bs-btn-border-color: var(--theme-red-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-red-dark);
	--bs-btn-hover-border-color: var(--theme-red-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-red-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-red-dark);
	--bs-btn-active-border-color: var(--theme-red-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-white-hex);
	--bs-btn-disabled-bg: var(--theme-red-hex);
	--bs-btn-disabled-border-color: var(--theme-red-hex);
}

.btn-warning {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-yellow-hex);
	--bs-btn-border-color: var(--theme-yellow-hex);
	--bs-btn-hover-color: var(--theme-black-hex);
	--bs-btn-hover-bg: var(--theme-yellow-dark);
	--bs-btn-hover-border-color: var(--theme-yellow-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-yellow-rgb);
	--bs-btn-active-color: var(--theme-black-hex);
	--bs-btn-active-bg: var(--theme-yellow-dark);
	--bs-btn-active-border-color: var(--theme-yellow-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-black-hex);
	--bs-btn-disabled-bg: var(--theme-yellow-hex);
	--bs-btn-disabled-border-color: var(--theme-yellow-hex);
}

.btn-info {
	--bs-btn-color: var(--theme-white-hex);
	--bs-btn-bg: var(--theme-cyan-hex);
	--bs-btn-border-color: var(--theme-cyan-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-cyan-dark);
	--bs-btn-hover-border-color: var(--theme-cyan-dark);
	--bs-btn-focus-shadow-rgb: var(--theme-cyan-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-cyan-dark);
	--bs-btn-active-border-color: var(--theme-cyan-dark);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-white-hex);
	--bs-btn-disabled-bg: var(--theme-cyan-hex);
	--bs-btn-disabled-border-color: var(--theme-cyan-hex);
}

.btn-outline-primary {
	--bs-btn-color: var(--theme-primary-hex);
	--bs-btn-border-color: var(--theme-primary-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-primary-hex);
	--bs-btn-hover-border-color: var(--theme-primary-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-primary-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-primary-hex);
	--bs-btn-active-border-color: var(--theme-primary-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-primary-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-primary-hex);
	--bs-gradient: none;
}

.btn-outline-success {
	--bs-btn-color: var(--theme-green-hex);
	--bs-btn-border-color: var(--theme-green-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-green-hex);
	--bs-btn-hover-border-color: var(--theme-green-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-green-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-green-hex);
	--bs-btn-active-border-color: var(--theme-green-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-green-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-green-hex);
	--bs-gradient: none;
}

.btn-outline-danger {
	--bs-btn-color: var(--theme-red-hex);
	--bs-btn-border-color: var(--theme-red-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-red-hex);
	--bs-btn-hover-border-color: var(--theme-red-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-red-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-red-hex);
	--bs-btn-active-border-color: var(--theme-red-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-red-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-red-hex);
	--bs-gradient: none;
}

.btn-outline-warning {
	--bs-btn-color: var(--theme-yellow-hex);
	--bs-btn-border-color: var(--theme-yellow-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-yellow-hex);
	--bs-btn-hover-border-color: var(--theme-yellow-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-yellow-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-yellow-hex);
	--bs-btn-active-border-color: var(--theme-yellow-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-yellow-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-yellow-hex);
	--bs-gradient: none;
}

.btn-outline-info {
	--bs-btn-color: var(--theme-cyan-hex);
	--bs-btn-border-color: var(--theme-cyan-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-cyan-hex);
	--bs-btn-hover-border-color: var(--theme-cyan-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-cyan-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-cyan-hex);
	--bs-btn-active-border-color: var(--theme-cyan-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-cyan-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-cyan-hex);
	--bs-gradient: none;
}

.btn-outline-cta {
	--bs-btn-color: var(--theme-cta-hex);
	--bs-btn-border-color: var(--theme-cta-hex);
	--bs-btn-hover-color: var(--theme-white-hex);
	--bs-btn-hover-bg: var(--theme-cta-hex);
	--bs-btn-hover-border-color: var(--theme-cta-hex);
	--bs-btn-focus-shadow-rgb: var(--theme-cyan-rgb);
	--bs-btn-active-color: var(--theme-white-hex);
	--bs-btn-active-bg: var(--theme-cta-hex);
	--bs-btn-active-border-color: var(--theme-cta-hex);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--theme-cta-hex);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--theme-cta-hex);
	--bs-gradient: none;
}

.btn-warning:hover {
	color: var(--theme-white-hex);
}

.link-primary {
	color: var(--theme-primary-hex) !important;
}
.link-success {
	color: var(--theme-green-hex) !important;
}
.link-danger {
	color: var(--theme-red-hex) !important;
}
.link-warning {
	color: var(--theme-yellow-hex) !important;
}
.link-info {
	color: var(--theme-cyan-hex) !important;
}
.link-cta {
	color: var(--theme-cta-hex) !important;
}

.text-cta {
	color: var(--theme-cta-hex) !important;
}

.link-primary:focus, .link-primary:hover{
	color: var(--theme-primary-dark) !important;
}
.link-success:focus, .link-success:hover{
	color: var(--theme-green-dark) !important;
}
.link-danger:focus, .link-danger:hover{
	color: var(--theme-red-dark) !important;
}
.link-warning:focus, .link-warning:hover{
	color: var(--theme-yellow-dark) !important;
}
.link-info:focus, .link-info:hover{
	color: var(--theme-cyan-dark) !important;
}
.link-cta:focus, .link-cta:hover{
	color: var(--theme-cta-dark) !important;
}

.alert-primary {
	--bs-alert-color: var(--theme-purple-hex);
	--bs-alert-bg: var(--theme-purple-bg);
	--bs-alert-border-color: var(--theme-purple-bg);
}

.alert-primary .alert-link {
	color: var(--theme-purple-hex);
}

.alert-success {
	--bs-alert-color: var(--theme-green-dark);
	--bs-alert-bg: var(--theme-green-bg);
	--bs-alert-border-color: var(--theme-green-bg);
}

.alert-success .alert-link {
	color: var(--theme-green-dark);
}

.alert-danger {
	--bs-alert-color: var(--theme-red-dark);
	--bs-alert-bg: var(--theme-red-bg);
	--bs-alert-border-color: var(--theme-red-bg);
}

.alert-danger .alert-link {
	color: var(--theme-red-dark);
}

.alert-warning {
	--bs-alert-color: var(--theme-yellow-dark);
	--bs-alert-bg: var(--theme-yellow-bg);
	--bs-alert-border-color: var(--theme-yellow-bg);
}

.alert-warning .alert-link {
	color: var(--theme-yellow-dark);
}

.alert-info {
	--bs-alert-color: var(--theme-cyan-dark);
	--bs-alert-bg: var(--theme-cyan-bg);
	--bs-alert-border-color: var(--theme-cyan-bg);
}

.alert-info .alert-link {
	color: var(--theme-cyan-dark);
}

.accordion-button:not(.collapsed) {
	color: var(--theme-primary-hex);
	background-color: var(--theme-primary-bg);
}

.table-primary {
	--bs-table-bg: var(--theme-primary-bg);
	--bs-table-border-color: var(--theme-primary-bg);
	--bs-table-striped-bg: var(--theme-primary-bg);
	--bs-table-active-bg: var(--theme-primary-bg);
	--bs-table-hover-bg: var(--theme-primary-bg);
}

.table-success {
	--bs-table-bg: var(--theme-green-bg);
	--bs-table-border-color: var(--theme-green-bg);
	--bs-table-striped-bg: var(--theme-green-bg);
	--bs-table-active-bg: var(--theme-green-bg);
	--bs-table-hover-bg: var(--theme-green-bg);
}

.table-danger {
	--bs-table-bg: var(--theme-red-bg);
	--bs-table-border-color: var(--theme-red-bg);
	--bs-table-striped-bg: var(--theme-red-bg);
	--bs-table-active-bg: var(--theme-red-bg);
	--bs-table-hover-bg: var(--theme-red-bg);
}


.table-warning {
	--bs-table-bg: var(--theme-yellow-bg);
	--bs-table-border-color: var(--theme-yellow-bg);
	--bs-table-striped-bg: var(--theme-yellow-bg);
	--bs-table-active-bg: var(--theme-yellow-bg);
	--bs-table-hover-bg: var(--theme-yellow-bg);
}

.table-info {
	--bs-table-bg: var(--theme-cyan-bg);
	--bs-table-border-color: var(--theme-cyan-bg);
	--bs-table-striped-bg: var(--theme-cyan-bg);
	--bs-table-active-bg: var(--theme-cyan-bg);
	--bs-table-hover-bg: var(--theme-cyan-bg);
}

.form-check-input:checked {
	background-color: var(--theme-primary-hex);
	border-color: var(--theme-primary-hex);
}

.form-range::-moz-range-thumb {
	background-color: var(--theme-primary-hex);
}

.form-control.is-valid,
.was-validated .form-control:valid {
	border-color: var(--theme-green-hex);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
	border-color: var(--theme-green-dark);
	box-shadow: 0 0 0 .25rem rgba(var(--theme-green-rgb), .25);
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
	color: var(--theme-red-dark);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
	border-color: var(--theme-red-dark);
}

@media (prefers-color-scheme: dark) {}

.font-primary {
	font-family: var(--font-primary);
}

.font-secondary {
	font-family: var(--font-secondary);
}

.valid-feedback {
	color: var(--theme-green-dark);
}

.invalid-feedback {
	color: var(--theme-red-dark);
}

.list-group-item-primary {
	color: var(--theme-primary-hex);
	background-color: var(--theme-primary-bg);
}

.list-group-item-success {
	color: var(--theme-green-dark);
	background-color: var(--theme-green-bg);
}

.list-group-item-danger {
	color: var(--theme-red-dark);
	background-color: var(--theme-red-bg);
}

.list-group-item-warning {
	color: var(--theme-yellow-dark);
	background-color: var(--theme-yellow-bg);
}

.list-group-item-info {
	color: var(--theme-cyan-dark);
	background-color: var(--theme-cyan-bg);
}

.nav-pills {
	--bs-nav-pills-link-active-bg: var(--theme-primary-hex);
}

.active>.page-link,
.page-link.active {
	background-color: var(--theme-primary-hex);
	border-color: var(--theme-primary-hex)
}

body {
	--bs-body-bg: var(--bs-gray-100);
	scroll-behavior: smooth;
	font-family: var(--font-secondary);
	font-size: 16px;
	color: #666666;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.5px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	line-height: 1;
}

.d-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.bg-blur,
.bg-blur-light {
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.bg-blur-medium {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.bg-blur-intense {
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.form-control::placeholder {
	color: var(--bs-dark);
	opacity: 1;
}

.input-group-text,
.form-control {
	border-radius: var(--border-radius);
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-500 {
	font-weight: 500;
}

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

.fw-700 {
	font-weight: 700;
}

.fw-800 {
	font-weight: 800;
}

.fw-900 {
	font-weight: 900;
}

.av-container p.text-black {
	min-height: 120px;
}

  .section {
	position: relative;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
	overflow: hidden;
}

.titel display-5 {
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.display-5 {
	font-size: 1.5rem  !important;
}

@media (max-width: 991.98px) {
	.av-container { 
		padding: 0 15px;
	}
}
@media (min-width: 991.98px) {
	.section {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	
	.display-5 {
		font-size: 2rem  !important;
	}
}

.scroll-menu .firstScrollMobile{
	display: none !important;
}