:root {
  --accent-color:             #717171;
  --white-color:              #fff;
  --black-color:              #000;
  --gray-color:               #F3F3F3;
  --gray-color-300:           #D8D8D8;
  --gray-color-500:           #AEAEAE;
  --gray-color-800:           #3A3A3A;
  --light-gray-color:         #D7DDDF;
  --primary-color:            #19453F;
  --bs-primary-rgb:           114,174,200;
  --light-color:              #f8f9fa;
  --dark-color:               #222;
  --light-blue-color:         #EDF1F3;
  --light-verde-color:        rgba(66, 183, 168, 1);
  --navbar-color-color:       #131814;
  --swiper-theme-color:       #4A4A4A;
  --swiper-pagination-color:  #4A4A4A;

}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}

/* Fonts */
:root {
    --body-font           : "Poppins", sans-serif;
    --heading-font        : "Playfair Display", serif;
    --alter-font          : "Playball", cursive;
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  color: var(--dark-color);
}
p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-color);
}
ul.inner-list li {
   font-size: 1.2em;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

/*------------ Background Color -----------*/
.bg-gray {
    background: var(--gray-color);
}
.bg-dark {
    background: var(--dark-color);
}
.bg-light {
    background: var(--light-color);
}
.bg-light-blue {
    background: var(--light-blue-color);
}
.bg-light-verde {
  background: var(--light-verde-color) !important;
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}
.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}
.margin-xlarge {
  margin-top: 9em;
  margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}


/* - Section Title
--------------------------------------------------------------*/
h3.card-title,
h3.cart-title {
   font-size: 1.5em;
}

/* - Section width
--------------------------------------------------------------*/
.u-full-width {
    width: 100%;
    border: none;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 0.8em 2.8em;
  font-size: 1.1em;
  letter-spacing: 2px;
}
.btn.btn-large {
  padding: 2.4em 5.1em;
  font-size: 1.8em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0,0,0,1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
  border-radius: 0;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
  text-decoration: underline;
  border: none;
}
.btn.btn-normal:hover {
  text-decoration: none;
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
  border: none;
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
}
.btn.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-primary:hover {
  background-color: #235F57;
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}
.btn-center {
  text-align: center;
  display: block;
}
.btn-right {
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/* 1. Header
/*----------------------------------------------*/
#header .logo {
  max-height: 150px;
}
.bg-light-verde .logo {
  max-height: 60px !important;
}

#navbar .nav-item {
  background-color: rgba(66, 183, 168, .8);
  padding: 15px 0;
}
#navbar .nav-item:first-child{
  padding-left: 80px;
  border-radius: 10px 0 0 10px;
}
.offcanvas.show #navbar .nav-item:first-child {
  padding-left: 0;
}
.offcanvas.show .navbar-brand {
  position: relative;
  margin: 0 auto;
}
.offcanvas.show .navbar-brand .logo {
  max-height: 90px !important;
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 10;
    transition: background 0.3s ease-out;
    /* background-color: rgba(66, 183, 168, .9); */
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); */
    
}
.navbar {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
}
.navbar .container-fluid {
  padding-right: 0 !important;
}
.navbar-toggler svg.navbar-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(66, 183, 168, .8);
    border-radius: 10px;
}
.navbar-nav .nav-item a.nav-link {
    color: #222;
    font-weight: 600;
}
.navbar-nav .nav-item a.nav-link.active, 
.navbar-nav .nav-item a.nav-link:focus, 
.navbar-nav .nav-item a.nav-link:hover {
    color: #154a1f;
    font-weight: 600;
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
    box-shadow: none;
}
#header-nav .offcanvas.show {
    z-index: 9999;
    background-color: rgba(66, 183, 168, 1);
}
#header-nav .offcanvas-end {
    width: 500px;
}
.offcanvas.show .nav-item a.nav-link {
    font-size: 2em;
}
.offcanvas.show .offcanvas-body .navbar-nav {
    align-items: unset!important;
    padding-left: 20px;
}
.offcanvas.show .btn-close {
  font-size: 30px;
}

/*------------ Top User Icons -----------*/
.site-header .user-items {
  padding-top: 6px;
  padding-bottom: 7px;
}
.site-header .user-items svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

@media only screen and (max-width: 991px) {
  #navbar .user-items {
    display: none;
  }
}


/* 3. Icon Box - Company Services
/*----------------------------------------------*/
.icon-box .icon-box-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  #company-services .icon-box {
    flex-wrap: wrap;
  }
}

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 35px;
}
.swiper-pagination span.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
}


/* 7. Instagram
/*----------------------------------------------*/
#instagram figure.instagram-item {
    width: 20%;
}
figure.instagram-item img.insta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.instagram-item .icon-overlay {
    top: 30px;
    left: 0;
    width: 100%;
    height: auto;
    color: var(--light-color);
    opacity: 0;
    transition: 0.9s ease-out;
}
.instagram-item:hover .icon-overlay {
    top: 0;
    opacity: 1;
}
.instagram-item .icon-overlay svg.instagram {
    height: 50px;
}

@media only screen and (max-width: 767px) {
  #instagram figure.instagram-item {
      width: 30%;
  }
}

@media only screen and (max-width: 501px) {
  #instagram figure.instagram-item {
      width: 100%;
  }
}

/* 8. Footer
/*----------------------------------------------*/
/*------------ Social Icon -----------*/
#footer {
  background-color: #FFF;
  position: relative;
}
#footer:before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-top-branco.png) center center;
	background-size: cover;
}
#footer:after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-footer-branco.png) center center;
	background-size: cover;
}

.redesSociais {
  background-color: rgba(65, 65, 65, 1);
  padding: 50px 0;
}
.redesSociais h1 {
  font-family: var(--alter-font);
  font-weight: 400;
  font-style: normal;
  color: #FFF;
}

.redesSociais img {
  width: 45px;
  margin-top: 10px;
}
.redesSociais img:first-child {
  margin-right: 10px;
}
/* 9. About Us Page
/*----------------------------------------------*/
/*------------ Video Icon -----------*/
.video-item a {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.video-item svg.video-player {
    width: 80px;
    height: 80px;
    padding: 19px;
    border-radius: 50%;
}

/*=================================================================
	Home Slider
==================================================================*/
#home {
  position: relative;
  padding: 0;
}


.mask-overly {
  background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
}

.slider-1 {
  background-image: url(../../imagens/slider/slider.jpg);
}

.slider-2 {
  background-image: url(../../imagens/slider/slider-3.jpg);
}

.slider-3 {
  background-image: url(../../imagens/slider/slider-4.jpg);
}


.sl-slider-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.sl-slider {
  position: absolute;
  top: 0;
  left: 0;
}

/* Slide wrapper and slides */
.sl-slide,
.sl-slides-wrapper,
.sl-slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.sl-slide {
  z-index: 1;
}

.slide-caption {
  color: #fff;
  display: table;
  height: 100%;
  min-height: 100%;
  position: absolute;
  text-align: left;
  top: 0;
  width: 60%;
  z-index: 999999;
  left: 40%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 460px) {
  .slide-caption {
    text-align: center;
    left: 50%;
  }
}

.slide-caption .caption-content {
  vertical-align: middle;
  display: table-cell;
}

.caption-content h2 {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 25px;
}

.caption-content > p {
  display: block;
  font-size: 16px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 400;
  color: #fff;
}

/*Slider Arrow Buttons*/
#nav-arrows > a {
  border: 1px solid #fff;
  color: #fff;
  display: block;
  height: 60px;
  line-height: 76px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 60px;
  z-index: 20;
  margin-top: -30px;
  transition: all 0.3s ease 0s;
  border-radius: 15px 0 15px 0;
}

#nav-arrows > a.sl-prev {
  transform: translateX(-50px);
  opacity: 0;
}

#slider:hover #nav-arrows > a.sl-prev {
  opacity: 1;
  transform: translateX(20px);
}

#nav-arrows > a.sl-next {
  right: 0;
  transform: translateX(50px);
  opacity: 0;
}

#slider:hover #nav-arrows > a.sl-next {
  opacity: 1;
  transform: translateX(-20px);
}

#nav-arrows > a.sl-next:hover,
#nav-arrows > a.sl-prev:hover {
  background-color: #19453F;
  border-color: #19453F;
  color: #fff;
}

/* The duplicate parts/slices */
.sl-content-slice {
  overflow: hidden;
  position: absolute;
  box-sizing: content-box;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  opacity: 1;
}

/* Horizontal slice */
.sl-slide-horizontal .sl-content-slice {
  width: 100%;
  height: 50%;
  left: -200px;
  transform: translateY(0%) scale(1);
}

.sl-slide-horizontal .sl-content-slice:first-child {
  top: -200px;
  padding: 200px 200px 0px 200px;
}

.sl-slide-horizontal .sl-content-slice:nth-child(2) {
  top: 50%;
  padding: 0px 200px 200px 200px;
}

/* Vertical slice */
.sl-slide-vertical .sl-content-slice {
  width: 50%;
  height: 100%;
  top: -200px;
  transform: translateX(0%) scale(1);
}

.sl-slide-vertical .sl-content-slice:first-child {
  left: -200px;
  padding: 200px 0px 200px 200px;
}

.sl-slide-vertical .sl-content-slice:nth-child(2) {
  left: 50%;
  padding: 200px 200px 200px 0px;
}

/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
  position: absolute;
}

.sl-content {
  width: 100%;
  height: 100%;
}

/* Project laughtbox setup */
.fancybox-item.fancybox-close {
  background: url("../../../imagens/icones/close.png") no-repeat scroll 0 0 transparent;
  height: 50px;
  right: 0;
  top: 0;
  width: 50px;
}

.fancybox-next span {
  background: url("../../../imagens/icones/right.png") no-repeat scroll center center #940b0b;
  height: 50px;
  width: 50px;
  right: 0;
}

.fancybox-prev span {
  background: url("../../../imagens/icones/left.png") no-repeat scroll center center #940b0b;
  height: 50px;
  width: 50px;
  left: 0;
}

.copyright {
  /* border-top: 4px solid #19453F; */
  background-color:  rgba(0, 0, 0, 1);
  padding: 5px 0;
}
.copyright p {
  margin: 0 !important;
  color: #fff;
}
.copyright .autor {
  max-width: 100px;
}

#sobre {
  background-color: #FFBFBF;
  color: #fff;
  position: relative;
}
#sobre:before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/slider/bg-footer.png) center center;
	background-size: cover;
}
#sobre:after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-top-rosa.png) center center;
	background-size: cover;
}

#sobre img {
  border-radius: 50px 0 50px 0;
}

#cardapio {
  background-color: #CFFFBF;
  color: #fff;
  position: relative;
}
#cardapio:before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-top-verde.png) center center;
	background-size: cover;
}
#cardapio:after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-footer-verde.png) center center;
	background-size: cover;
}

#cardapio .section-title h2::before {
  left: calc(50% - 60px);
}

#cardapio .section-title h2::after {
  left: calc(50% - 20px);
}

#galeria {
  background-color: #000;
  color: #fff;
  position: relative;
}
/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

#contato {
  background-color: #CECEBF;
  color: #fff;
  position: relative;
}
#contato:before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-top-cinza.png) center center;
	background-size: cover;
}

#contato:after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-footer-cinza.png) center center;
	background-size: cover;
}


.contact .btn-primary {
  padding: 20px;
  font-size: 16px;
}

.contact .section-title h3{
  color: #fff;
}

.contact .section-heading {
  color: #fff;
}

.contact .form-group {
  margin-bottom: 25px;
}

.contact .form-group input,
.contact .form-group textarea {
  padding: 20px;
}

.contact .form-group input.form-control {
  height: auto;
}

.contact .form-group textarea.form-control {
  height: 236px;
}

.contact::-webkit-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

.contact:-moz-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

.contact::-moz-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

.contact:-ms-input-placeholder {
  text-transform: uppercase;
  font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-weight: 700;
  color: #bbb;
}

.contact .text-danger {
  color: #e74c3c;
}

.contact button {
  font-weight: 400;
  margin-top: 30px;
}

.contact .section-title h2::before {
  left: calc(50% - 60px);
}

.contact .section-title h2::after {
  left: calc(50% - 20px);
}


/* #galeria:after {
	content: '';
	position: absolute;
	bottom: -25px;
	left: 0;
	right: 0;
	z-index: 1;
	height: 26px;
	background: url(../../imagens/bg/bg-top-branco.png) center center;
	background-size: cover;
} */

.section-title {
  text-align: left;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #19453F;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 2px;
  background: #222;
  bottom: 1px;
  /* left: calc(50% - 60px); */
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 5px;
  background: #339688;
  bottom: 0;
  /* left: calc(50% - 20px); */
}

.section-title p {
  margin-bottom: 0;
}

#parallax-1 {
  background-image: url(../../imagens/bg/parallax-1.jpeg);
  color: #fff;
  position: relative;
}
#parallax-1 h1 {
  font-family: var(--heading-font);
  font-style: italic;
  font-weight: 600;
}
#parallax-1 p {
  color: #FFF;
  font-size: 16px;
}


#parallax-1 .section-title {
  margin-bottom: 0;
  z-index: 1;
}

.parallax {
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.pv {
  padding: 100px 0 !important;
}


/********************/
/*     Projects     */
/********************/
#filtros_cardapio {
	text-align: center;
}

#filtros_cardapio {
	margin-bottom: 1.375rem;
}

#filtros_cardapio .button {
	margin-right: 0.25rem;
	margin-bottom: 0.75rem;
	margin-left: 0.25rem;
	padding: 0.125rem 0.875rem;
	border: none;
	background-color: #ffffff;
	color: #53575a;
	font-weight: 600;
	font-size: 0.875rem;
  border-radius: 10px 0 10px 0;
}

#filtros_cardapio .button:hover,
#filtros_cardapio .button.is-checked {
	background-color: #19453F;
	color: #ffffff;
}

#lista_cardapio .item-cardapio {
  width: calc(33.3% - 30px);
  margin: 15px;
  padding: 0;
  /* transition: all 0.2s ease-out; */
}

#lista_cardapio .item-cardapio h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #19453F;
  text-align: center;
}

#lista_cardapio .item-cardapio h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #222;
  bottom: 1px;
  left: calc(50% - 60px);
}

#lista_cardapio .item-cardapio h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #339688;
  bottom: 0;
  left: calc(50% - 20px);
}

#lista_cardapio .item-cardapio p {
  margin-bottom: 0;
}

#lista_cardapio .item-cardapio a {
	text-decoration: none;
}

#lista_cardapio .item-cardapio img {
	margin-bottom: 1.125rem;
	border-radius: 15px 0 15px 0;
}


.carousel-indicators .item-sobre{
	width: 14px !important;
	height: 14px !important;
	margin: 1px !important;
  border: 2px solid #19453F;
  background-color: #FFF;
  border-radius: 10px;
}

.carousel-indicators .item-sobre.active{
	width: 14px !important;
	height: 14px !important;
	margin: 1px !important;
  border: 2px solid #19453F;
  background-color: #19453F;
  border-radius: 10px;
}

/*-- Animation --*/
.carousel .item.active .animated1 {
	-webkit-animation: lightSpeedIn 1s ease-in 800ms both;
	animation: lightSpeedIn 1s ease-in 800ms both;
}

.carousel .item.active .animated2 {
	-webkit-animation: bounceIn 1s ease-in 800ms both;
	animation: bounceIn 1s ease-in 800ms both;
}

.carousel .item.active .animated3 {
	-webkit-animation: flipInX 2s ease-in-out 800ms both;
	animation: flipInX 2s ease-in-out 800ms both;
}

@media only screen and (max-width: 768px) {
  .copyright .col-sm-12 {
    text-align: center !important;
  }

  .section-title h2 {
    text-align: center;
  }

  .section-title h2::before {
    left: calc(50% - 60px);
  }
  
  .section-title h2::after {
    left: calc(50% - 20px);
  }

  #footer {
    text-align: center;
  }

  #lista_cardapio .item-cardapio {
    width: 100%;
  }
}


