/* font faces / keyframes */

@font-face {

    font-family: 'TeX Gyre Pagella Bold Italic';

    src: url(../fonts/texgyrepagella-bolditalic.otf);

}

@font-face {

    font-family: 'TeX Gyre Pagella Italic';

    src: url(../fonts/texgyrepagella-italic.otf);

}

@font-face {

    font-family: 'TeX Gyre Pagella Bold';

    src: url(../fonts/texgyrepagella-bold.otf);

}

@font-face {

    font-family: 'TeX Gyre Pagella Regular';

    src: url(../fonts/texgyrepagella-regular.otf);

}

@keyframes top-to-bottom {

    from {top: 0;}

    to {top: 100px;}

}

@keyframes bottom-to-top {

    from {bottom: 0;}

    to {bottom: 100px;}

}

/* globals */

body {

    background: #1D1C1C;

    font-family: 'TeX Gyre Pagella Regular', Helvetica, sans-serif;

}

h2, .h2 {

    color:#fff;

    font-family: 'TeX Gyre Pagella Bold', Helvetica, sans-serif;

    font-size: 2.4rem;

}

h1, .h1 {

    color:#8b5300;

    font-family: 'TeX Gyre Pagella Bold Italic', Helvetica, sans-serif;

    font-size: 3.2rem;

}

h5, .h5 {

    color:#d6983c;

}

h2 small, .h2 small {

    font-size: 40%;

    opacity: 0.6;

}

p.italic {

    font-family: 'TeX Gyre Pagella Italic', Helvetica, sans-serif;

}


.pagination {

    font-size: 120%;

    display: inline-flex;

}

.pagination li {

    margin: 0 8px;

}

.pagination li a{

    color: #fff;

}

.pagination li.active{

    color: #d6983c;

}

.breadcrumbs {

    font-style: italic;

    color: #fff;

}

.breadcrumbs b{

    font-size: 120%;

}

/* homepage */

.logo {

    width: 220px;

}

.phone-number {

    font-size: 2.6rem;

    font-family: 'TeX Gyre Pagella Bold', Helvetica, sans-serif;

}

.embed-container { 
    position: relative; 
    padding-top: 56.25%;
} 

:link:focus {
    outline:none !important;
}

/* backgrounds */

.bg-orange {background: #d6983c;}

.bg-image, .text-orange {color: #d6983c !important;}

.text-white {color: white !important;}

.border-top-orange { border-top: 10px solid #d6983c; }

.bg-image::before {

    content: "";

    background: url(../img/backround_test2.jpg) top center;

    background-size: cover auto;

    background-attachment: fixed;

    opacity: 0.23;

    top: 0;

    left: 0;

    bottom: 0;

    right: 0;

    position: absolute;

    z-index: -1;   

}

/* top effects */

.bg-image, .effect-left, .effect-right, .effect-center {position: relative;}

.effect-left::after, .effect-right::after, .effect-center::after {

    position: absolute;

    z-index: 2;

    content: "";

}

.effect-left::after, .effect-right::after {

    background: url(../img/home-flour-1.png) center center / 100% 100% no-repeat;

    filter: contrast(20%) brightness(180%);

    height: 460px;

    width: 220px;

}

.effect-left::after {

    top: -120px;

    left: 0;

}

.effect-right::after {

    top: -160px;

    right: 0;

    -webkit-transform: rotate(180deg);

    transform: rotate(180deg);

}

.effect-center::after {

    background: url(../img/home-flour-1.png) center center / 100% 100% no-repeat;

    filter: contrast(20%) brightness(180%);

    /*opacity: 0.5;*/

    height: 668px;

    width: 289px;

    right: 0;

    left: 0;

    margin: 0 auto;

    bottom: -140px;

    -webkit-transform: rotate(-100deg) translateY(60%);

    transform: rotate(-100deg) translateY(60%);

    transform-origin: bottom left;

    z-index: -1;

}

.overflow-hidden {

    overflow: hidden;

}

.effect-shadow {

    -webkit-box-shadow: 0px 0px 40px 30px rgba(0,0,0,0.3);

    -moz-box-shadow: 0px 0px 40px 30px rgba(0,0,0,0.3);

    box-shadow: 0px 0px 40px 30px rgba(0,0,0,0.3);

}

/* bottom effect */

.bg-effect { position: relative; overflow: hidden;}

.bg-effect::before, .bg-effect::after {

    content: "";

    background: url(../img/home-flour-1.png) center center / 100% 100%;

    opacity: 0.05;

    position: absolute;

    z-index: -1;   

    height: 1605px;

    width: 847px;

    animation: 15s linear infinite alternate;

}

.bg-effect::before {

    top: 0;

    left: 0;

}

.bg-effect::after {

    bottom: 0;

    right: 0;

    -webkit-transform: rotate(180deg);

    transform: rotate(180deg);

}

/* home itens */

.item-large {

    padding: 30px;

}

.item-large-image {
    height:200px;
}

.item-large-image img {
    max-height:100% !important;
}

.item-large-name {
    height:70px;
}

@media (min-width: 768px) {

    .home-itens .slick-slide .item-large{

        opacity: 0.55;

        -webkit-transition: opacity .3s ease-in-out;

        -moz-transition: opacity .3s ease-in-out;

        -ms-transition: opacity .3s ease-in-out;

        -o-transition: opacity .3s ease-in-out;

        transition: opacity .3s ease-in-out;

    }

    .home-itens .slick-slide.slick-center .item-large{

        opacity: 1;

    }

    .home-itens .slick-slide .item-large img.imagem{

        -webkit-transition: padding .3s ease-in-out;

        -moz-transition: padding .3s ease-in-out;

        -ms-transition: padding .3s ease-in-out;

        -o-transition: padding .3s ease-in-out;

        transition: padding .3s ease-in-out;

    }

    .home-itens .slick-slide:not(.slick-center) .item-large img.imagem{

        padding-top: 3.5rem !important;

    }

}

.home-itens .arrow-left{

    position: absolute;

    left: -75px;

    top: 45%;

    cursor: pointer;

    z-index: 2;

}

.home-itens .arrow-right{

    position: absolute;

    right: -75px;

    top: 45%;

    cursor: pointer;

    z-index: 2;

}

@media (max-width: 575.98px) { 

    .home-itens .arrow-right{right: -15px;top: 35%;}

    .home-itens .arrow-left{left: -15px;top: 35%;}

}

.ingredientes-list .arrow-left{

    left: -12px;

}

.ingredientes-list .arrow-right{

    right: -12px;

}

.item-large p.peso, .item-small p.peso{

    text-align: right;

    margin-top: -40px;

    padding-right: 25px;

    opacity: 0.4;

}

.item-large p.ingredientes, .item-small p.ingredientes {

    border-color: #fff;

    opacity: 0.4;

}

.item-small {

    font-size: 80%;

}

.item-small h2 {

    font-size: 1.8rem;

}

.item-small h5 {

    font-size: .9rem;

}

.item-small-image {
    height:170px;
}

.item-small img {

    max-height: 170px;

}

.item-large hr, .item-small hr {

    border-color: #fff;

    opacity: 0.4;

}

.ingredientes-list .ing img{

    height: 45px;

    max-width: 100%;

    margin: 5px auto;

}

/* butoes */

td.button {
    width: 100%;
    text-align: center;
}

.btn-primary {

    border-radius: 0;

    background: #1d1c1c;

    border: 2px solid #d6983c;

    position: relative;

    margin: 5px;

}

.btn-primary:hover {

    background: #d6983c;

    border: 2px solid #d6983c;

    color: #1d1c1c;

}

.btn-primary::before {

    position: absolute;

    top: -7px;

    left: -7px;

    right: -7px;

    bottom: -7px;

    content: "";

    border: 1px solid #d6983c;

}

/* timeline */

.timeline {

    z-index: 2;

    position: relative;

    max-height: 480px;

}

.timeline .tl-item {

    

    position: relative;

    min-height: 480px;

}

.slick-slide {

    outline: 0;

}

.timeline .slick-slide:not(.slick-current) .tl-item .bottom{

    opacity: 0.5;

}

.timeline .slick-slide:not(.slick-current) .tl-item img{

    opacity: 0.5;

    filter: grayscale(1);

}

.timeline .tl-item img {

    position: absolute;

    bottom: 120px;

    padding-left: 4rem;

    padding-right: 4rem;

    max-height: 300px;

    left: 0;

    right: 0;

    margin: 0 auto;

}

.timeline .tl-item .bottom {

    position: absolute;

    bottom: 14px;

    width: 100%;

}

.timeline .tl-item::after {

    position: absolute;

    content: "";

    margin: 0 auto;

    left: 0;

    right: 0;

    width: 17px;

    height: 17px;

    bottom: 93px;

    border-radius: 100%;

    border: 4px solid #d6983c;

    background: #1D1C1C;

    z-index: 2;

}

.timeline .arrow-left{

    position: absolute;

    left: -12px;

    top: 35%;

}

.timeline .arrow-right{

    position: absolute;

    right: -12px;

    top: 35%;

}

.timeline-effect img{

    position: relative;

    height: 140px;

    margin: 25px 10px;

    z-index: 2;

    filter: drop-shadow(8px 5px 2px rgba(0,0,0,0.3)) drop-shadow(10px 10px 5px rgba(0,0,0,0.16));

}

.timeline-effect {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

}

.timeline-effect-header img{

    position: relative;

    height: 140px;

    z-index: 2;

    filter: drop-shadow(8px 5px 2px rgba(0,0,0,0.3)) drop-shadow(10px 10px 5px rgba(0,0,0,0.16));

}

.timeline-effect-header {

    position: absolute;

    left: 0;

    right: 0;

}

.timeline-effect::before {

    position: absolute;

    bottom: 100px;

    left: 140px;

    right: 0;

    height: 2px;

    background: #555555;

    content: "";

    z-index: 0;

}

.item-large-list .arrow-left{

    left: 40px;

    top: 45%;

    position: absolute;

    z-index: 2;

    cursor: pointer;

}

.item-large-list .arrow-right{

    right: 40px; 

    top: 45%;

    position: absolute;

    z-index: 2;

    cursor: pointer;

}



.item-large-list img {

    max-height: 230px;

}

/* forms */

input[type="text"], input[type="email"], input[type="text"]:focus, input[type="email"]:focus,

        select.form-control,

        textarea.form-control, textarea.form-control:focus {

    border: none;

    border-radius: 0;

    background: #898989;

    color: #fff !important;

    margin-bottom: 8px;

}

select.form-control:focus {

    color: #1D1C1C !important;

}

.form-control:disabled, .form-control[readonly] {

    background-color: #555555;

}

.form-control::-webkit-input-placeholder {color:#c3c3c3;}

.form-control:-moz-placeholder {color:#c3c3c3;}

.form-control::-moz-placeholder {color:#c3c3c3;}

.form-control:-ms-input-placeholder {color:#c3c3c3;}

.btn-secondary {

    border-radius: 0;

    background: #d6983c;

    border: none;

    color: #fff;

    text-transform: uppercase;

}

.form-control:focus {

    box-shadow: 0 0 0 .2rem rgba(214,152,60,.25);

    color: #d6983c;

}

/* media query */

@media (max-width: 767.98px) {

    .effect-center::after, .effect-left::after, .effect-right::after, .timeline-effect img {

        display: none;

    }

    .timeline-effect::before {

        left: 0;

    }

    h2, .h2 {font-size: 1.9rem;}

    h1, .h1 {font-size: 2.1rem;}

}

.menu {

    cursor: pointer;

    display: inline-block;

}

.menu-text {

    float: right;

    clear: both;

    font-family: arial;

    font-weight: 600;

    color: #d6983c;

}

.menu-bar {

    display: block;

    width: 42px;

    height: 5px;

    background: #d6983c;

    margin-top: 8px;

    clear: both;

    float: right;

    border-radius: 2px;

}

#overlay-menu {

    height: 150%;

    right: 0;

    position: fixed;

    z-index: 9;

    left: 0;

    top: 0;

    background-color: #d6983c;

    overflow-x: hidden;

    transform: translateX(100%); 

    transition: transform 0.2s 0s linear;

}

#overlay-menu.active{

    transform: translateX(0); 

}

.menu-list{

    text-align: center;

    margin-top: 100px;

    clear: both;

}

.menu-list a {

    display: block;

    color: #fff;

    font-size: 2.3rem;

    text-decoration: none;

}

.menu-close {

    color: #fff;

    font-size: 3rem;

    text-decoration: none;

    float: right;

    clear: both;

    margin: 35px;

}

.menu-close:hover {

    text-decoration: none;

    color: #fff;

}

/* loader */

#loader-background {

    position: fixed;

    top: 0;

    bottom: 0;

    left: 0;

    right: 0;

    background: #1d1c1c;

    text-align: center;

    z-index: 9999;

}

#loader-background .loader-content {

    margin-top: 180px;

    margin-bottom: 40px;

    max-width: 200px;

}

#loader-background .lds-dual-ring {

    display: block;

    width: 64px;

    height: 64px;

    margin: 0 auto;

}

#loader-background .lds-dual-ring:after {

    content: " ";

    display: block;

    width: 46px;

    height: 46px;

    margin: 1px;

    border-radius: 50%;

    border: 5px solid #fff;

    border-color: #fff transparent #fff transparent;

    animation: lds-dual-ring 1.2s linear infinite;

}

@keyframes lds-dual-ring {

    0% {

        transform: rotate(0deg);

    }

    100% {

        transform: rotate(360deg);

    }

}

/* menu */

.navbar-expand-lg .holder{

    padding: 0 25px 5px 25px;

    border-bottom: 1px solid rgba(149, 149, 149, 0.5);

}

.navbar-expand-lg .navbar-nav .nav-link {

    padding-right: 1rem;

    padding-left: 1rem;

}

.navbar .form-inline input {

    background: transparent !important;

    border-radius: 25px 0 0 25px;

    margin-right: 0 !important;

    border-color: #959595;

    border-right-color: rgb(149, 149, 149);

    border-right: 0;

    width: 175px;

}

.navbar .form-inline button.btn-secondary {

    border-radius: 0 25px 25px 0;

    border: 1px solid #d6983c;

}

.navbar .form-inline button.btn-secondary:hover {

    background: #d6983c;

}

.submenu {

    display: none;

    position: absolute;

    width: 100%;

    top: 46px;

    background-color: #d6983c;

    left: 0;

    z-index: 2;

    border-bottom-left-radius: 8px;

    border-bottom-right-radius: 8px;

}

.submenu a {

    color: #fff;

    text-decoration: none;

}

.autocomplete-suggestion {

    padding: 6px 10px;

    font-size: 1.4rem;

    line-height: 1.8rem;

}



.autocomplete-suggestion strong{

    color: #bb2d2b;

    font-weight: 800;

}