/*GENERAL
--------------------------------------*/
:root {
    scroll-behavior: smooth;
    --beige: #FFF6D5;
    --red: #E20D13;
    --green: #045C2B;
    --brown: #342312;
    --yellow: #FFCE05;
}

body {
    font: normal normal 22px 'Boldonse', sans-serif;
    color: var(--beige);
}

body.pace-running:before {
    opacity: 1
}

.pace .pace-progress {
    background: var(--red)
}

a,
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: currentColor;
}

a {
    -webkit-transition: background .3s, color .3s;
    -o-transition: background .3s, color .3s;
    transition: background .3s, color .3s;
}

p {
    margin: 0;
}

:focus {
    outline: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pace-done #main-container {
    opacity: 1 !important
}

::placeholder {
    color: currentColor;
    opacity: 1;
    transition: opacity .3s;
}

:focus::placeholder {
    opacity: .3
}

/*Marquee*/
.marquee-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.marquee-img {
    width: 100%;
    max-width: 600px;
}

.marquee-container .marquee {
    display: flex;
    width: max-content;
    height: 150px;
    font-weight: 700;
    font-size: 195px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-transform: uppercase;
}

.marquee-inner-1,
.marquee-inner-2 {
    display: flex;
    align-items: center;
}

.marquee-container.straight .marquee-inner-1 {
    animation: slide-har 80s linear infinite;
}

.marquee-container.straight .marquee-inner-2 {
    animation: slide-har 80s linear infinite;
}

.marquee-container.reverse .marquee-inner-1 {
    animation: slide-hareverse 80s linear infinite;
}

.marquee-inner-2 {
    animation: slide-hareverse 80s linear infinite;
}

.marquee-text {
    padding: 0 5px;
    background: #f00
}

@keyframes slide-har {
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes slide-hareverse {
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


/*LAYOUT
--------------------------------------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 5;
    transition: all .3s;
}


#header.headroom--unpinned {
    transform: translateY(-150px);
}

#header.headroom--not-top {
    background: var(--green);
}

#logo {
    width: 200px;
}

#logo img {
    width: 100%;
}

#nav {}

#nav ul {}

#nav li {}

#nav a {
    font-size: 12px;
}

#nav a:hover {
    color: var(--red);
}

#nav li:nth-of-type(4), #nav li:nth-of-type(5) {
    border-radius: 500px;
    padding: 0 1.19rem;
    height: 3.19rem;
    line-height: 2.9rem;
    text-align: center;
    background: var(--red);
    display: inline-block;
}

#nav li:last-child a:hover {
    background: var(--beige);
}

.slicknav_menu {
    position: absolute;
    right: 0;
    top: 18px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    width: 100%;
    display: none;
    z-index: 10;
}

.slicknav_nav {
    width: 100%;
    color: var(--beige);
    margin: 0;
    padding: 15px 0 0;
    background: rgb(4 92 43 / 90%);
    font-size: .95rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    top: 72px;
    left: 0;
}

.slicknav_nav ul {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.slicknav_nav li {
    margin-bottom: 30px;
}

.slicknav_nav li a.active,
.slicknav_nav li a.focus,
.slicknav_nav a:hover {
    color: var(--beige);
    background: unset;
}

.slicknav_btn {
    background: unset;
    margin: 12px 5px 6px;
}

.slicknav_menu .slicknav_icon-bar {
    background: var(--beige);
    box-shadow: none;
}

#footer {
    background: var(--green);
}

#footer h5 {
    font-family: 'Gind', sans-serif;
    font-weight: 400;
    font-size: 3.75rem;
    text-transform: uppercase;
}

#ig {
    width: 54px;
    height: 54px;
    line-height: 54px;
    border-radius: 50%;
    background: var(--beige);
    display: inline-block;
    text-align: center;
    transition: all .3s;
}

#ig:hover {
    background: #fff;
    transform: scale(1.05);
}

#silhouette {
    transition: all .3s;
}

#silhouette:hover {
    transform: rotate(5deg);
}

.footer-col {}

#footer-logo {}

#footer small {}

#whatsapp{
    position: fixed;
    z-index: 5;
    top: 50%;
    bottom: 50%;
    right: 15px;
    margin: auto 0;
}

#hero {
    height: 100vh;
}

#hero .slick-list,
#hero .slick-track {
    height: 100%;
}

#hero a {
    border-radius: 500px;
    padding: 0 1.19rem;
    height: 4.25rem;
    line-height: 4.25rem;
    text-align: center;
    background: var(--red);
}

#hero a:hover {
    background: var(--beige);
    color: var(--red);
}


#hero-flag {
    height: 20px;
}

#hero-flag .row div:nth-child(1) {
    background: var(--green);
}

#hero-flag .row div:nth-child(2) {
    background: #D9D9D9;
}

#hero-flag .row div:nth-child(3) {
    background: var(--red);
}

#menu {
    background: var(--brown)
}

#menu h2 {
    font-family: 'Gind', sans-serif;
    font-weight: 400;
    font-size: 4.38rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--red);
    text-align: center;
}

#menu h2 span {
    display: block;
    font-weight: 400;
    font-family: 'Boldonse', sans-serif;
    font-size: 1.38rem;
    text-align: center;
    color: var(--yellow);
    text-transform: none;
}

#menu h3 {
    font-size: 22px;
    line-height: 1.4;
}


#menu h3.alt {
    color: var(--yellow);
}

#menu h4 {
    font-family: 'Gind', sans-serif;
    font-weight: 400;
    font-size: 3.13rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--yellow);
}

#menu p {
    font-size: 12px;
}

#pizzas,
#empanadas {
    border-bottom: 1px solid var(--beige)
}

.salsas{
    color:#FFCE05;
    font-size:14px;
}
#map {
    height: 500px;
}

#address {
    background: var(--red);
    text-transform: uppercase;
}

#contact {
    background: var(--green);
}

#contact h5 {
    font-family: 'Gind', sans-serif;
    font-weight: 400;
    font-size: 3.75rem;
    text-transform: uppercase;
}

#contact p {
    font-size: 1rem;
}


.grecaptcha-badge {
    visibility: hidden;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    height: 3rem;
}

.iti__country-list,
.iti__selected-dial-code {
    color: #000;
}

#contact .row {
    border-bottom: 1px solid var(--beige);
}

#contact input,
#contact textarea {
    background: #024B22;
    border: unset;
    width: 100%;
    color: var(--beige);
    font-size: 1rem;
}

#contact input {
    height: 3.38rem;
    line-height: 3.38rem;
    padding: 0 1rem;
}

#contact textarea {
    height: 10.25rem;
    padding: 1rem;
}

#contact button {
    border-radius: 500px;
    padding: 0 1.19rem;
    height: 4.25rem;
    line-height: 4.25rem;
    text-align: center;
    background: var(--red);
    border: unset;
    cursor: pointer;
    color: var(--beige);
    transition: all .3s;
}

#contact button:hover {
    background: var(--beige);
    color: var(--red);
}

#contact .parsley-errors-list {
    display: none;
    font-size: 8px;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    background: #ff5252;
    text-align: center;
    padding: 0 5px;
}

#contact .parsley-errors-list.filled {
    display: block;
}

#contact #contact-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
}

#contact #contact-loader #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
    background: url(../img/loader.svg) no-repeat center;
}

#contact #contact-msg-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--green);
    opacity: 0;
}

#contact #contact-msg-text h2 {
    font-weight: normal;
    font-style: normal;
    font-size: 32px;
    color: currentColor;
    line-height: 1.5;
}

#contact #contact-msg-text p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

/*MQ
--------------------------------------*/
@media screen and (max-width: 991px) {
    :root {
        font-size: 13px;
    }

    #header{
        background: var(--green);
        height: 90px;
    }

    #nav {
        display: none;
    }

    .slicknav_menu {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    #hero h1 img {
        max-width: 95%;
    }

    #menu h4 {
        font-size: 2.5rem;
    }

    #menu h3{
        font-size: 1.4rem;
    }

    #menu h2{
        font-size: 2.7rem;
    }
}