*,
*::before,
*::after {
    box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}
ul[role="list"],
ol[role="list"] {
    list-style: none;
}
html:focus-within {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
img,
picture {
    max-width: 100%;
    display: block;
}
button,
textarea,
select {
    font: inherit;
}
@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

html,
body {
    height: 100%;
}
body {
    font-family: "Montserrat", sans-serif;
    color: #f5f5f5;
}
.header {
    padding: 0.2rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 9;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.header img {
    width: 50px;
    height: auto;
    margin-bottom: 1rem;
}
.header h1 {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    width: max-content;
    color: #f5f5f5;
    line-height: 1;
}
.header .nav {
    text-align: center;
}
.header .nav a {
    margin-left: 1rem;
    color: #f5f5f5;
    font-size: 1.5rem;
}
.hero {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* background-image: url('../img/hero_background_b.jpg');
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    isolation: isolate; */
}
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d1f42;
    opacity: 0.5;
}

.slick-list {
    height: 100%;
}
.slick-track {
    height: 100%;
}
.slick-track img {
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .header img {
        width: 60px;
    }
    .header h1 {
        font-size: 2.5rem;
    }
}
@media screen and (min-width: 1024px) {
    .header {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    .header img {
        width: 70px;
        margin: 0;
    }
    .header h1 {
        margin: 0 0 0 2rem;
        font-size: 3rem;
    }
    .header .nav {
        margin-left: auto;
        text-align: center;
    }
}
@media screen and (min-width: 1280px) {
    .header img {
        width: 75px;
    }
    .header h1 {
        font-size: 3.2rem;
    }
}
