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-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/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-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/bootstrap/scss/variables";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/variables-dark";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Include any default map overrides here
|
|
|
|
|
|
|
|
|
|
// Include remainder of required parts
|
2024-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/bootstrap/scss/maps";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/mixins";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/root";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Include any other parts as needed
|
2024-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/bootstrap/scss/reboot";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/type";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/containers";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/grid";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/nav";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/navbar"; // Requires nav
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/buttons";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/card";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/images";
|
|
|
|
|
@import "../../node_modules/bootstrap/scss/transitions";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/accordion";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/alert";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/badge";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/breadcrumb";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/button-group";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/carousel";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/close";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/dropdown";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/forms";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/list-group";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/modal"; // Requires transitions
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/offcanvas"; // Requires transitions
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/pagination";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/placeholders";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/popover";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/progress";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/spinners";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/tables";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/toasts";
|
|
|
|
|
// @import "../../node_modules/bootstrap/scss/tooltip";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Helpers
|
2024-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/bootstrap/scss/helpers";
|
2024-06-21 12:47:47 +02:00
|
|
|
|
|
|
|
|
// Utilities
|
2024-07-13 18:09:28 +02:00
|
|
|
@import "../../node_modules/bootstrap/scss/utilities";
|
|
|
|
|
@import "../../node_modules/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
|
|
|
}
|
|
|
|
|
|
2024-07-18 16:00:32 +02:00
|
|
|
::selection {
|
|
|
|
|
@extend .text-dark;
|
|
|
|
|
background-color: $red-200;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
:target::before {
|
|
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
height: 6rem;
|
|
|
|
|
margin-top: -6rem;
|
|
|
|
|
visibility: hidden;
|
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-06-26 14:48:52 +02:00
|
|
|
.fa-regular,
|
|
|
|
|
.fa-solid {
|
|
|
|
|
color: var(--bs-primary);
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
h1,
|
|
|
|
|
h2 {
|
2024-07-18 16:00:32 +02:00
|
|
|
font-family: 'Century Gothic',
|
|
|
|
|
var(--#{$prefix}font-sans-serif);
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h3,
|
|
|
|
|
h4,
|
|
|
|
|
h5,
|
|
|
|
|
h6 {
|
2024-07-18 16:00:32 +02:00
|
|
|
font-family: 'Eras ITC',
|
|
|
|
|
var(--#{$prefix}font-sans-serif);
|
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
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
.navbar {
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-item,
|
|
|
|
|
.nav-link {
|
2024-07-13 18:09:28 +02:00
|
|
|
@extend .text-white;
|
2024-07-18 16:00:32 +02:00
|
|
|
font-family: 'Eras ITC',
|
|
|
|
|
var(--#{$prefix}font-sans-serif);
|
2024-06-26 14:48:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.navbar-nav .btn {
|
|
|
|
|
margin-left: var(--bs-navbar-nav-link-padding-x);
|
|
|
|
|
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
|
|
|
|
|
padding-right: var(--bs-navbar-nav-link-padding-x);
|
|
|
|
|
padding-left: var(--bs-navbar-nav-link-padding-x);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.hero {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
|
|
|
|
@extend .mt-3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main>* {
|
|
|
|
|
@extend .pt-5;
|
|
|
|
|
@extend .pb-3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
margin-top: unset;
|
|
|
|
|
--bs-gutter-y: var(--bs-gutter-x);
|
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 {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-21 12:47:47 +02:00
|
|
|
.card-img-overlay {
|
|
|
|
|
position: unset;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
img.grayscale-effect {
|
|
|
|
|
transition: filter 0.2s;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|
|
|
|
|
|
2024-06-26 14:48:52 +02:00
|
|
|
*:not(:hover) img.grayscale-effect {
|
|
|
|
|
filter: grayscale(80%);
|
2024-07-13 14:13:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.socials {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: .5rem;
|
2024-06-21 12:47:47 +02:00
|
|
|
}
|