@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

/*
<weight>: Use a value from 200 to 700

.oswald-<uniquifier> {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.roboto-flex-<uniquifier> {
    font-family: "Roboto Flex", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "XOPQ" 96, "XTRA" 468, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712;
}
*/

:root {
    --oswald: "Oswald", sans-serif;
    --oswald-200: 200;
    --oswald-300: 300;
    --oswald-400: 400;
    --oswald-500: 500;
    --oswald-600: 600;
    --oswald-700: 700;
    --roboto: "Roboto Flex", sans-serif;
    --roboto-200: 200;
    --roboto-300: 300;
    --roboto-400: 400;
    --roboto-500: 500;
    --roboto-600: 600;
    --roboto-700: 700;
    --bg-dark: #212121;
    --text-dark: #212121;
    --bg-grey: #c1c1c1;
    --text-grey: #c1c1c1;
    --bg-red: #ff0000;
    --text-red: #ff0000;
    --bg-red-dark: #cc0000;
    --text-red-dark: #cc0000;
    --bg-yellow: #ffd000;
    --text-yellow: #ffd000;
}

/* GENERAL */

html {
    scroll-behavior: smooth;
}
body {
    overflow: hidden;
}

/* COLORS */

.bg-dark {
    background-color: var(--bg-dark) !important;
}
.text-dark {
    color: var(--text-dark) !important;
}
.bg-grey {
    background-color: var(--bg-grey);
}
.text-grey {
    color: var(--text-grey);
}
.bg-red {
    background-color: var(--bg-red);
}
.text-red {
    color: var(--text-red);
}
.bg-red-dark {
    background-color: var(--bg-red-dark);
}
.text-red-dark {
    color: var(--text-red-dark);
}
.bg-yellow {
    background-color: var(--bg-yellow);
}
.text-yellow {
    color: var(--text-yellow) !important;
}
.slogan-text {
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,1));
}

/* TYPOGRAPHY */

.oswald {
    font-family: var(--oswald);
}
.oswald-200 {
    font-weight: var(--oswald-200);
}
.oswald-300 {
    font-weight: var(--oswald-300);
}
.oswald-400 {
    font-weight: var(--oswald-400);
}
.oswald-500 {
    font-weight: var(--oswald-500);
}
.oswald-600 {
    font-weight: var(--oswald-600);
}
.oswald-600 {
    font-weight: var(--oswald-600);
}
.oswald-700 {
    font-weight: var(--oswald-700);
}
.roboto {
    font-family: var(--roboto);
}
.roboto-200 {
    font-weight: var(--roboto-200);
}
.roboto-300 {
    font-weight: var(--roboto-300);
}
.roboto-400 {
    font-weight: var(--roboto-400);
}
.roboto-500 {
    font-weight: var(--roboto-500);
}
.roboto-600 {
    font-weight: var(--roboto-600);
}
.roboto-600 {
    font-weight: var(--roboto-600);
}
.roboto-700 {
    font-weight: var(--roboto-700);
}
.btn {
    transition: .3s linear all;
}
.btn.bg-yellow:hover {
    background-color: var(--bg-grey);
    transition: .3s linear all;
}
.btn.bg-yellow:focus {
    background-color: var(--bg-dark) !important;
    color: #ffffff !important;
    transition: .3s linear all;
}

/* HOME */

#home {
    position: relative;
    /* margin-top: 95px; */
}
#bg-video {
    position: fixed;
    width: 100%;
    height: 100vh;
    min-width: 100%;
    top: 0px;
    left: 0;
    display: block;
    object-fit: cover !important;
    box-sizing: border-box;
    padding: 0;
    z-index: -1;
    filter: brightness(90%) contrast(110%);
}
#slogan {
    position: fixed;
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 1;
    transition: .3s linear all;
}
#bg-video::after {
    content: '';
    background-image: url(../../media/img/general/pattern.png);
    background-repeat: repeat;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 3 !important;
    list-style: none;
}
.slogan-scrolled {
    top: -250px !important;
    opacity: 0 !important;
    transition: .4s linear all;
}
#slogan img {
    max-width: 30% !important;
}

/* OFFCANVAST STYLES */

.offcanvas.offcanvas-top {
    height: fit-content;
}
.offcanvas-close-btn {
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    line-height: 44px;
}
.offcanvas-close-btn i {
    line-height: 44px;
}
ul.list-inline {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}
li.list-inline-item {
    padding: 5px;
}
li.list-inline-item:not(:last-of-type)::after {
    content: '-';
    color: #ffffff;
    display: inline-block;
    position: relative;
    margin-left: .5rem;
}
.offcanvas-backdrop {
    background-color: #ffffff !important;
}
.offcanvas-backdrop.show {
    opacity: .7;
}

/* MEDIA */

@media (max-width: 600px){
    #slogan img {
        max-width: 80% !important;
    }
    h2.slogan-text {
        font-size: 1.8rem;
    }
}