/* Gloabal */

h1 {
    letter-spacing: 5px;
    font-size: 75px;
    font-weight: 300;
}

h2 {
    letter-spacing: 2px;
    font-size: 40px;
    font-weight: 300;
}

h3 {
    letter-spacing: 2px;
    font-size: 35px;
}

h4 {
    letter-spacing: 2px;
    font-size: 25px;
    font-weight: 300;
}

p {
    font-size: 18px;
}

a {
    color: white;
}

a:hover {
    color: rgb(200, 200, 200);
}

.no-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li a {
    text-decoration: none;
}


/* Header */

.navbar {
    background-color: #002323;
}

.navbar-toggler {
    background-color: #fff;
}

.nav-link {
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: white;
}

.nav-link:hover {
    color: rgb(173, 129, 24) !important;
}

.active {
    color: rgb(173, 129, 24) !important;
}

.r-logo-main {
    filter: brightness(0) invert(1);
}

.header-background {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/img/header-bg.png') top / cover no-repeat;
    padding-top: 3em;
    padding-bottom: 3em;
    overflow: hidden;
    max-width: 100%;
    margin-left: 0px !important;
}

.background1 {
    background: url('/img/background1.png') top / cover no-repeat;
    padding-top: 3em;
    padding-bottom: 3em;
    /* overflow: hidden;
    max-width: 100%;
    margin-left: 0px !important; */
}


/* Body */

.container {
    max-width: 1600px !important;
}

.btn-primary {
    /* border-radius: 0% !important; */
    color: white;
    background-color: #084848;
    border: 0px;
    padding: 14px;
}

.btn-primary:hover {
    background-color: #003636 !important;
}

.btn-primary:active {
    background-color: #002323 !important;
}

.btn-secondary {
    border-radius: 0%;
    color: white;
    background-color: #084848;
    border: 0px;
    padding: 14px;
}

.btn-info {
    color: white;
    background-color: #043839;
    border-color: #043839;
    font-weight: 300;
    border-radius: 0% !important;
    padding: 1rem;
}

.btn-info:hover {
    color: black !important;
    background-color: white !important;
    border-color: white !important;
}

.bg-green {
    background-color: #002323;
}

.cook-dash {
    object-fit: fill;
}

.form-control {
    border-radius: 0%;
    background-color: #003636;
    border: 0px;
}

.circle {
    border-radius: 50%;
    background-color: #084848;
    width: 50px !important;
    height: 50px !important;
}

.icon-animation {
    position: relative;
    animation: updown 2s ease infinite;
}

@keyframes updown {
    0% {
        top: 10px;
    }
    50% {
        top: 24px;
    }
    100% {
        top: 10px;
    }
}


/* Footer */

.footer {
    background-color: #002323;
    color: white;
}


/* Responsive */

@media (min-width: 768px) {
    .r-height {
        height: 200px;
    }
}

@media (max-width: 500px) {
    .r-btn {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .spacer {
        display: none;
    }
    .r-text {
        text-align: start !important;
    }
    .r-text-center {
        text-align: center !important;
    }
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 35px;
    }
    h4 {
        font-size: 25px;
    }
    p {
        font-size: 18px;
    }
    .r-icon {
        max-width: 65%;
    }
}

@media (max-width: 995px) {}

@media (max-width: 1200px) {}

@media (max-width: 1400px) {}