/*
8ecae6
219ebc
023047
ffb703
fb8500
*/
:root {
    --font-roboto-family: "Roboto", sans-serif;
}

:root {
    --preloader-background-color: #FFF;
    --preloader-border-color: #444;
}

.roboto-normal {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font-roboto-family);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.copyright {
    text-align: center;
    font-weight: bold;
    font-size: 0.8rem;
}

@media (min-width: 1200px) {
    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        height: 80px;
        width: 100vw;
        padding: 10px 10px;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .navbar-items {
        list-style: none;
        display: inline-block;
        font-weight: bold;;
        color: #ffb703;
    }

    .navbar-items li {
        display: inline-block;
        padding-left: 12px;
        padding-right: 12px;;
        text-transform: uppercase;
        font-weight: 'Roboto', sans-serif;
        text-align: left;
        line-height: 3rem;
    }

    .navbar-items li a,
    .navbar-items li a:focus {
        text-decoration: none;
        color: #ffb703;
    }

    .navbar-items li a:hover {
        color: #fb8500;
    }

    .active {
        color: #FFF;
    }
}

@media (max-width: 1199px) {
    .navbar {
        position: absolute;
        top: 0;
        left: 0;
        height: 80px;
        width: 100vw;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .navbar-items {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        list-style: none;
        font-weight: bold;;
        color: #ffb703;
    }

    .navbar-items li {
        position: relative;
        padding-left: 12px;
        padding-right: 12px;;
        text-transform: uppercase;
        font-weight: 'Roboto', sans-serif;
        text-align: left;
        line-height: 3rem;
    }

    .navbar-items li a,
    .navbar-items li a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        color: #ffb703;
    }

    .navbar-items li a:hover {
        color: #fb8500;
    }

    .active {
        color: #FFF;
    }
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--preloader-background-color);
    transition: all 0.6s ease-out;
}
  
#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--preloader-border-color);
    border-top-color: color-mix(in srgb, var(--preloader-border-color), transparent 90%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}
  
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
  
    100% {
        transform: rotate(360deg);
    }
}