2024-06-21 12:47:47 +02:00
|
|
|
// Toggle global options
|
|
|
|
|
// $enable-gradients: true;
|
|
|
|
|
// $enable-shadows: true;
|
|
|
|
|
|
|
|
|
|
// Include functions first (so you can manipulate colors, SVGs, calc, etc)
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/functions";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// scss-docs-start color-variables
|
|
|
|
|
$red: #cc2929; // Default: #dc3545
|
|
|
|
|
|
|
|
|
|
// scss-docs-start theme-color-variables
|
|
|
|
|
$primary: $red; // Default: $blue
|
|
|
|
|
|
|
|
|
|
// Include remainder of required Bootstrap stylesheets
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/variables";
|
|
|
|
|
@import "bootstrap/scss/variables-dark";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Include any default map overrides here
|
2025-05-24 16:59:33 +02:00
|
|
|
$carousel-indicator-active-bg-dark: $white;
|
|
|
|
|
$carousel-caption-color-dark: $white;
|
|
|
|
|
$carousel-control-icon-filter-dark: unset;
|
2025-07-03 18:35:47 +02:00
|
|
|
$accordion-icon-width: 1rem;
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Include remainder of required parts
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/maps";
|
|
|
|
|
@import "bootstrap/scss/mixins";
|
|
|
|
|
@import "bootstrap/scss/root";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
2025-07-07 13:27:40 +02:00
|
|
|
// Utilities
|
|
|
|
|
@import "bootstrap/scss/utilities";
|
|
|
|
|
|
2024-06-21 12:47:47 +02:00
|
|
|
// Include any other parts as needed
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/reboot";
|
|
|
|
|
@import "bootstrap/scss/type";
|
|
|
|
|
@import "bootstrap/scss/containers";
|
|
|
|
|
@import "bootstrap/scss/grid";
|
|
|
|
|
@import "bootstrap/scss/nav";
|
|
|
|
|
@import "bootstrap/scss/navbar"; // Requires nav
|
|
|
|
|
@import "bootstrap/scss/buttons";
|
|
|
|
|
@import "bootstrap/scss/card";
|
|
|
|
|
@import "bootstrap/scss/carousel";
|
|
|
|
|
@import "bootstrap/scss/images";
|
|
|
|
|
@import "bootstrap/scss/list-group";
|
|
|
|
|
@import "bootstrap/scss/transitions";
|
2025-07-03 18:35:47 +02:00
|
|
|
@import "bootstrap/scss/accordion";
|
2024-11-03 12:05:19 +01:00
|
|
|
// @import "bootstrap/scss/alert";
|
|
|
|
|
// @import "bootstrap/scss/badge";
|
|
|
|
|
// @import "bootstrap/scss/breadcrumb";
|
|
|
|
|
// @import "bootstrap/scss/button-group";
|
|
|
|
|
// @import "bootstrap/scss/close";
|
|
|
|
|
// @import "bootstrap/scss/dropdown";
|
|
|
|
|
// @import "bootstrap/scss/forms";
|
|
|
|
|
// @import "bootstrap/scss/modal"; // Requires transitions
|
|
|
|
|
// @import "bootstrap/scss/offcanvas"; // Requires transitions
|
|
|
|
|
// @import "bootstrap/scss/pagination";
|
|
|
|
|
// @import "bootstrap/scss/placeholders";
|
|
|
|
|
// @import "bootstrap/scss/popover";
|
|
|
|
|
// @import "bootstrap/scss/progress";
|
|
|
|
|
// @import "bootstrap/scss/spinners";
|
|
|
|
|
// @import "bootstrap/scss/tables";
|
|
|
|
|
// @import "bootstrap/scss/toasts";
|
|
|
|
|
// @import "bootstrap/scss/tooltip";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Helpers
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/helpers";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
2025-07-07 13:27:40 +02:00
|
|
|
// Utilities API
|
2024-11-03 12:05:19 +01:00
|
|
|
@import "bootstrap/scss/utilities/api";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// Custom styles
|
|
|
|
|
//
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Century Gothic';
|
|
|
|
|
src: url('../font/GOTHICB.TTF') format('truetype');
|
2024-07-18 15:45:46 +02:00
|
|
|
font-display: fallback;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
@font-face {
|
|
|
|
|
font-family: 'Eras ITC';
|
|
|
|
|
src: url('../font/ERASMD.TTF') format('truetype');
|
2024-07-18 15:45:46 +02:00
|
|
|
font-display: fallback;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2025-05-24 17:35:19 +02:00
|
|
|
$ff-header: 'Century Gothic',
|
|
|
|
|
var(--#{$prefix}font-sans-serif);
|
|
|
|
|
$ff-subheader: 'Eras ITC',
|
|
|
|
|
var(--#{$prefix}font-sans-serif);
|
|
|
|
|
|
2024-07-26 17:05:31 +02:00
|
|
|
main {
|
|
|
|
|
@extend .pt-3;
|
2025-12-17 20:06:06 +01:00
|
|
|
@extend .pb-4;
|
2025-12-18 12:45:11 +01:00
|
|
|
@extend .flex-grow-1;
|
2024-07-26 17:05:31 +02:00
|
|
|
}
|
|
|
|
|
|
2025-05-24 18:48:18 +02:00
|
|
|
section,
|
2024-07-26 17:05:31 +02:00
|
|
|
main>* {
|
|
|
|
|
@extend .pt-4;
|
|
|
|
|
@extend .pb-3;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-17 20:15:49 +01:00
|
|
|
header {
|
|
|
|
|
min-height: 4.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-18 16:00:32 +02:00
|
|
|
::selection {
|
|
|
|
|
@extend .text-dark;
|
|
|
|
|
background-color: $red-200;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-17 20:06:06 +01:00
|
|
|
:target {
|
|
|
|
|
scroll-margin-top: 4.5rem;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
.anchor-link {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transition: opacity 0.2s;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-08-18 14:55:44 +02:00
|
|
|
.ff-header,
|
2024-06-26 14:48:52 +02:00
|
|
|
h1,
|
|
|
|
|
h2 {
|
2025-05-24 17:35:19 +02:00
|
|
|
font-family: $ff-header;
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
2024-08-18 14:55:44 +02:00
|
|
|
.ff-subheader,
|
2024-06-26 14:48:52 +02:00
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2025-05-24 17:35:19 +02:00
|
|
|
font-family: $ff-subheader;
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
2024-07-26 17:05:31 +02:00
|
|
|
h1,
|
|
|
|
|
h2 {
|
|
|
|
|
@extend .mb-0;
|
|
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
2024-07-29 16:12:34 +02:00
|
|
|
@extend .mt-4;
|
2024-07-26 17:05:31 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6,
|
2025-06-20 10:23:01 +02:00
|
|
|
p,
|
|
|
|
|
ul,
|
|
|
|
|
ol,
|
|
|
|
|
blockquote,
|
|
|
|
|
dl,
|
|
|
|
|
dt,
|
|
|
|
|
dd {
|
2024-07-26 17:05:31 +02:00
|
|
|
@extend .mb-0;
|
|
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
2024-07-29 16:12:34 +02:00
|
|
|
@extend .mt-3;
|
2024-07-26 17:05:31 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
h1:hover .anchor-link,
|
|
|
|
|
h2:hover .anchor-link,
|
|
|
|
|
h3:hover .anchor-link,
|
|
|
|
|
h4:hover .anchor-link,
|
|
|
|
|
h5:hover .anchor-link,
|
|
|
|
|
h6:hover .anchor-link {
|
|
|
|
|
opacity: 1;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.text-shadow {
|
|
|
|
|
text-shadow:
|
2024-07-13 16:56:26 +02:00
|
|
|
-1px -1px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
-1px 0px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
-1px 1px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
0px -1px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
0px 0px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
0px 1px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
1px -1px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
1px 0px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
1px 1px 0 rgba(0, 0, 0, 0.4);
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
.text-dark.text-shadow {
|
|
|
|
|
text-shadow:
|
2024-07-13 16:56:26 +02:00
|
|
|
-1px -1px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
-1px 0px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
-1px 1px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
0px -1px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
0px 0px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
0px 1px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
1px -1px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
1px 0px 0 rgba(255, 255, 255, 0.4),
|
|
|
|
|
1px 1px 0 rgba(255, 255, 255, 0.4);
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2025-07-03 20:55:37 +02:00
|
|
|
:not(a)>.fa-regular,
|
|
|
|
|
:not(a)>.fa-solid {
|
2024-07-26 17:05:31 +02:00
|
|
|
color: var(--bs-primary);
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 11:51:48 +01:00
|
|
|
.navbar,
|
|
|
|
|
.hero-body {
|
2024-06-26 14:48:52 +02:00
|
|
|
background-image: none !important;
|
2024-07-13 18:09:28 +02:00
|
|
|
background-color: rgba(22, 23, 25, 0.6) !important;
|
2024-06-26 14:48:52 +02:00
|
|
|
transition: background-color 0.5s;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
body.is-scrolled .navbar {
|
|
|
|
|
background-color: rgba(22, 23, 25, 1.0) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-collapse:not(.collapsing):not(.show) {
|
|
|
|
|
max-width: fit-content;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 11:51:48 +01:00
|
|
|
.hero-body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
@extend .h5;
|
|
|
|
|
@extend .text-center;
|
2024-07-13 18:09:28 +02:00
|
|
|
@extend .text-white;
|
2024-12-07 11:51:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item {
|
|
|
|
|
|
|
|
|
|
.nav-link,
|
|
|
|
|
.btn {
|
2025-07-05 11:34:38 +02:00
|
|
|
// @extend .text-white;
|
2025-05-24 17:35:19 +02:00
|
|
|
font-family: $ff-header;
|
2024-12-07 11:51:48 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
2025-07-03 20:55:37 +02:00
|
|
|
@extend .text-white;
|
|
|
|
|
font-family: $ff-header;
|
2024-12-07 11:51:48 +01:00
|
|
|
|
|
|
|
|
.fa-regular,
|
|
|
|
|
.fa-solid {
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
2025-07-05 11:34:38 +02:00
|
|
|
.socials {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: .5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
|
.btn {
|
|
|
|
|
border: none;
|
|
|
|
|
padding-top: var(--bs-nav-link-padding-y);
|
|
|
|
|
padding-bottom: var(--bs-nav-link-padding-y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.socials {
|
|
|
|
|
@extend .justify-content-center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// navbar-expand-lg
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
|
|
|
|
|
|
.btn:not(.btn+.btn),
|
|
|
|
|
.socials a:not(a+a) {
|
|
|
|
|
margin-left: var(--bs-navbar-nav-link-padding-x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.socials {
|
|
|
|
|
gap: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
margin-top: unset;
|
2024-07-29 16:12:34 +02:00
|
|
|
--bs-gutter-y: var(--bs-gutter-x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
img.grayscale-effect {
|
|
|
|
|
transition: filter 0.2s;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-05 11:34:38 +02:00
|
|
|
:not(:hover) img.grayscale-effect {
|
2024-07-29 16:12:34 +02:00
|
|
|
filter: grayscale(80%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradient-to-top-light {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradient-to-top-light::before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
2025-05-24 18:48:18 +02:00
|
|
|
inset: 0;
|
2024-07-29 16:12:34 +02:00
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: linear-gradient(to top, transparent 67%, rgba(var(--bs-light-rgb), 1) 100%);
|
|
|
|
|
z-index: 1;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.parallax,
|
2024-06-26 14:48:52 +02:00
|
|
|
.cover,
|
2024-06-21 12:47:47 +02:00
|
|
|
.card-img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
2024-06-26 14:48:52 +02:00
|
|
|
border-radius: 0;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.parallax {
|
2024-06-26 17:07:23 +02:00
|
|
|
position: absolute;
|
2024-06-21 12:47:47 +02:00
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
.card {
|
2024-07-29 16:12:34 +02:00
|
|
|
border: none;
|
2024-06-26 14:48:52 +02:00
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-18 19:58:08 +01:00
|
|
|
footer .card {
|
|
|
|
|
background-color: var(--bs-card-bg) !important;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-21 12:47:47 +02:00
|
|
|
.card-img-overlay {
|
|
|
|
|
position: unset;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-12-07 12:22:37 +01:00
|
|
|
.carousel-caption {
|
|
|
|
|
right: unset;
|
|
|
|
|
left: unset;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
// @extend .text-shadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.carousel-indicators {
|
|
|
|
|
position: unset;
|
|
|
|
|
border-bottom-left-radius: var(--bs-border-radius);
|
|
|
|
|
border-bottom-right-radius: var(--bs-border-radius);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.carousel-caption,
|
|
|
|
|
.carousel-indicators {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: rgba(22, 23, 25, 0.6) !important;
|
|
|
|
|
@extend .m-0;
|
|
|
|
|
@extend .p-0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-07-03 18:35:47 +02:00
|
|
|
.accordion-button:not(.accordion .accordion-button) {
|
|
|
|
|
@extend .accordion;
|
|
|
|
|
|
|
|
|
|
padding: unset;
|
|
|
|
|
color: unset;
|
|
|
|
|
background-color: unset;
|
|
|
|
|
box-shadow: unset;
|
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
|
width: var(--#{$prefix}accordion-btn-icon-width);
|
|
|
|
|
height: var(--#{$prefix}accordion-btn-icon-width);
|
|
|
|
|
margin-left: .5rem;
|
|
|
|
|
@include transition(var(--#{$prefix}accordion-btn-icon-transition));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-18 15:00:53 +02:00
|
|
|
.list-group-item {
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
border: solid var(--bs-body-bg);
|
2024-08-19 16:49:22 +02:00
|
|
|
border-width: 3px 0 0 0 !important;
|
2024-08-18 15:00:53 +02:00
|
|
|
}
|
|
|
|
|
|
2025-05-24 18:48:18 +02:00
|
|
|
.scrollto-highlight {
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
animation: highlight-fade 1s ease;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scrollto-highlight::after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
background: rgba(255, 255, 255, 0.20);
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
animation: highlight-overlay-fade 1s ease-in-out forwards;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes highlight-overlay-fade {
|
|
|
|
|
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
5%,
|
|
|
|
|
90% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|