@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;900&family=Poppins:wght@300;400;700&display=swap');

:root {
    --color-blue: #489bbb;
    --color-blue-hover: #0ea5e9;
    --color-blue-text: #036894;
    --color-red: #e3003e;
    --color-red-hover: #e83f5b;
    --color-green: #00ffa0;
    --color-green-hover: #1fffa8;
    --color-orange: #ff5722;
    --color-orange-hover: #be4019;
    --color-beige: #deddd7;
    --color-yellow: #ffc82a;
    --color-primary: #8257e6;
    --color-primary-hover: #9466ff;
    --color-info: #001d28;
    --color-info-hover: #06b6d4;
    --color-background-black: #121214;
    --color-secondary: #e1e1e6;
    --color-text: #a8a8b3;
    --color-support: #737380;
    --color-shape: #202024;
    --color-shape-hover: #29292e;
    --color-silver: #41414d;
    --color-borders: #323238;
    --color-black: #0d0d0f;
    --color-white: #fff;
    --font-merriweather: 'Merriweather', serif;
    --font-poppins: 'Poppins', sans-serif;
}

.font-merriweather {
    font-family: 'Merriweather', serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.btn-web {
    font-family: var(--font-merriweather);
    background: var(--color-orange);
    color: var(--color-white);
    transition: all .5s;
}

.btn-web:hover,
.btn-web:active,
.btn-web:focus,
.btn-web:first-child:active {
    background: var(--color-orange-hover) !important;
    color: var(--color-white) !important;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-beige {
    background-color: var(--color-beige);
}

.bg-orange {
    background-color: var(--color-orange);
}

.bg-yellow {
    background-color: var(--color-yellow);
}

.bg-silver {
    background-color: var(--color-silver);
}

.text-blue {
    color: var(--color-blue-text);
}

.text-orange {
    color: var(--color-orange);
}

.text-justify {
    text-align: justify;
}

.href {
    color: var(--color-orange);
}

.href:hover,
.href:active{
    color: var(--color-orange-hover);
}

.shadow-30 {
    box-shadow: 0px 0px 30px var(--color-green);
}

.is-invalid {
    border: 1px solid #b60000 !important;
}

.alert-response-success,
.alert-response-danger {
    display: none;
}

.z-index-9999 {
    z-index: 9999;
}

.response_alert {
    display: none;
}

.form-control {
    line-height: 2.5 !important;
}

.buffet-index-info {
    padding: 55px 65px;
    border-left: 1px solid var(--color-orange);
}

.buffet-index-info-header-h1 {
    font-size: 4em;
}

.buffet-index-space {
    padding-left: 65px;
}

.buffet-index-space-box {
    top: -80px;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
}

.buffet-about-header-h1,
.buffet-stage-article-header-h1,
.buffet-schedule-header-h1{
    border-left: 1px solid var(--color-orange);
    padding-left: 25px;
}

.buffet-events-header-h1::before{
    content: " ";
    border-left: 1px solid var(--color-orange);
    padding-right: 25px;
}

.buffet-schedule-img {
    position: relative;
}

@media screen and (max-width: 1199px) {
    .buffet-schedule-img > figure {
        position: absolute;
        top: -95px;
    }
}

@media screen and (min-width: 1200px) {
    .buffet-schedule-img > figure {
        position: absolute;
        top: -130px;
    }
}