/* Roboto */
@font-face {
    font-family: "Roboto-Thin";
    src: url("assets/fonts/Roboto/Roboto-Thin.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto-Light";
    src: url("assets/fonts/Roboto/Roboto-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("assets/fonts/Roboto/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("assets/fonts/Roboto/Roboto-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("assets/fonts/Roboto/Roboto-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Roboto-Black";
    src: url("assets/fonts/Roboto/Roboto-Black.ttf") format("truetype");
}

/* Metropolis */
@font-face {
    font-family: "Metropolis-Thin";
    src: url("assets/fonts/Metropolis/Metropolis-Thin.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-ExtraLight";
    src: url("assets/fonts/Metropolis/Metropolis-ExtraLight.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-Light";
    src: url("assets/fonts/Metropolis/Metropolis-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-Regular";
    src: url("assets/fonts/Metropolis/Metropolis-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-Medium";
    src: url("assets/fonts/Metropolis/Metropolis-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-SemiBold";
    src: url("assets/fonts/Metropolis/Metropolis-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-Bold";
    src: url("assets/fonts/Metropolis/Metropolis-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-ExtraBold";
    src: url("assets/fonts/Metropolis/Metropolis-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: "Metropolis-Black";
    src: url("assets/fonts/Metropolis/Metropolis-Black.ttf") format("truetype");
}

/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

blockquote, q {
    quotes: none;
}

* {
    box-sizing: border-box;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

@media screen and (max-width: 1024px) {
    html {
        scroll-behavior: unset;
    }
}

body {
    position: relative;
    line-height: 1;
    height: 100vh;
    width: 100vw;
}


@media screen and (max-width: 768px) {
    body {
        height: 100%;
        width: 100%;
        overflow-x: hidden;
    }
}

a {
    text-decoration: none;
}

nav li, nav a {
    width: 100%;
}

nav a {
    padding: 0.5rem 1rem;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 5px;
}

/* root */
:root {
    --invisible: #ffffff00;
    --white: #ffffff;
    --sapphire: #082567;
    --yellow: #FFD436;
    --grey: #333333;
}

.swiper-button-prev, .swiper-button-next {
    visibility: hidden;
}

.swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: white !important;
    border: 1px solid white !important;
    opacity: 0.75 !important;
}

.swiper-pagination-bullet-active {
    background: #FFD436 !important;
    opacity: 1 !important;
}