* {
  box-sizing: border-box;
}

#navbar-menu-items ul:first-child li a {
  color: rgba(0, 0, 0, 0.7);
}

#gallery .feed-noticia-items {
  transition: all 0.3s ease-in-out;
}

#gallery .feed-noticia-items:hover {
  transform: scale(1.03);
}


/*body {
    background-color: rgb(41,42,46) !important;
}*/

.primary-color {
  color: rgb(191, 205, 46);
}

#header-nav {
  min-width: 100%;
  z-index: 1;
  top: -5%; /*TEMPORARIO*/
}

@media (max-width: 768px) {
  #header-nav {
    top: 0;
  }
}

#logotipo {
  margin-left: 2%;
}

#navbar-menu-items ul:first-child {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0 50px;
}

#navbar-menu-items ul:first-child li {
  color: rgb(74, 75, 76);
}

@media (max-width: 768px) {
  #logotipo {
    margin-left: 0 !important;
  }

  #navbar-menu-items ul:first-child li a {
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  #header-nav > div {
    position: relative;
    z-index: 1 !important;
    bottom: 60px;
  }

  header {
    height: 18px !important;
  }

  #header-nav > div button {
    margin-left: 80%;
    margin-top: 6px;
  }

  #navbar-menu-items {
    position: relative;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 50px 0px;
    z-index: 999 !important;
  }

  #portfolio {
    z-index: 0 !important;
  }

  #navbar-menu-items {
    padding-top: 3%;
  }

  #navbar-menu-items ul:first-child {
    background-color: transparent !important;
    border-radius: 0 !important;
  }

  #navbar-menu-items ul:last-child a img {
    width: 30% !important;
    margin-left: 35%;
  }
}

#navbar-menu-items ul:first-child li a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

#navbar-menu-items ul:first-child li a:hover {
  color: rgb(191, 205, 46);
}

#navbar-menu-items ul:last-child a {
  /*width: 70%;*/
  margin: auto;
}

#navbar-menu-items ul:last-child a img {
  width: 80%;
}

.myVideo {
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

.videoContent {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1 !important;
}

/*FEED NOTICIAS*/

#gallery {
  padding: 0 18% 8% 18%;
}

.feed-noticia-items {
  padding: 0.5% !important;
}

#bt-mais {
  width: 50%;
}

@media (max-width: 768px) {
  #bt-mais {
    width: 100%;
  }
}

/*IMAGENS NOTICIAS COM MESMO TAMANHO*/
#all-noticias .feed-noticia-items {
  padding: 0.5% !important;
  height: 160px;
}

@media (max-width: 320px) {
  #all-noticias .feed-noticia-items {
    height: 130px;
  }
}

#all-noticias .feed-noticia-items a {
  height: 100%;
}

#all-noticias .feed-noticia-items > a img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#all-noticias .feed-noticia-items > a video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
/*END IMAGENS NOTICIAS COM MESMO TAMANHO*/

/*======================================================*/
/*PORTFOLIO*/
/*======================================================*/

#portfolioBackSide {
  top: -21px;
  height: 100%;
  z-index:0;
  position: absolute;
  background: rgb(152, 188, 27);
  width: 100%;
  opacity: 0.6;
  /*top: 120%;*/
  -webkit-clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0% 100%);
}

.portfolio-content {
  padding: 6% 0 0 0;
  background-image: url("../image/FeedBG02.png");
  height: 100%;
  background-color:#ffF;
  z-index: 1;
  position: relative;
  background-size: 100% 100% !important;


}

#portfolio{
  z-index: 999;
  position: relative;
  top: -5px;
}

@media (max-width: 768px) {
  #bt-mais {
    width: 100%;
  }

  #portfolio {
    background-size: cover !important;
  }
}

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto;
}

.portfolio-box .portfolio-box-caption {
  color: white;
  opacity: 0;
  display: block;
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.9)
  );
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 95%;
  height: 100%;
  -webkit-transition: all 0.35s;
  -moz-transition: all 0.35s;
  transition: all 0.35s;
  left: 5%;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
  width: 100%;
  text-align: right;
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
}

.portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-category,
.portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-name {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  padding: 0 15px;
  color: rgb(191, 205, 46);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-category {
  text-transform: uppercase;
  font-weight: 600;
}

.portfolio-box:hover .portfolio-box-caption {
  opacity: 1;
}

.portfolio-box:focus {
  outline: none;
}

@media (min-width: 768px) {
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-category,
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-name {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-category,
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-name {
    font-size: 0.7rem !important;
  }

  .portfolio-box .portfolio-box-caption {
    opacity: 1;
  }

  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
    top: 50%;
    transform: translateY(0);
  }
}

@media (max-width: 320px) {
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-category,
  .portfolio-box
    .portfolio-box-caption
    .portfolio-box-caption-content
    .project-name {
    font-size: 0.7rem !important;
  }

  .portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
    top: 45%;
  }
}
/* unnecessary block of css */
/*Noticia Infoorma��o Mobile #Infomobile */
#Noticia-Infomobile {
  top: 0%;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  height: 100%;

  /* justify on center */
  display: none;
}

#Noticia-Infomobile .portfolio-box {
  /*top: 45%;*/
  height: 100%;
}

#Noticia-Infomobile
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-category,
#Noticia-Infomobile
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-name {
  font-size: 0.9rem !important;
  padding-right: 25px;
}

#Noticia-Infomobile
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .legenda {
  font-size: 0.8rem !important;
  padding-right: 25px;

}


@media (max-width: 425px) {
  #Noticia-Infomobile {
    display: block;
    padding: 0;
  }

  #Noticia-Infomobile .portfolio-box .img-fluid {
    height: 100% !important;
    width: 100% !important;
  }

  #recipeCarousel {
    height: 100% !important;
    display: flex;
    align-items: center;
  }

  #home-caroucel #recipeCarousel .element, #home-caroucel #recipeCarousel .element img {
    height: 250px !important;
  }

  .p-5 {
    padding: 2em !important;
  }
  #recipeCarousel .element video{
    object-fit: none !important;
  }
}

/*End Noticia Infoorma��o Mobile #Infomobile*/
/*CAROUSEL*/
#home-caroucel .carousel-control-prev,
.carousel-control-next {
    width: 3% !important;
    height: 100% !important;
    top: 0 !important;
    background-color: #87BC00 !important;
    opacity: 1 !important;
}

#home-caroucel .carousel-control-prev i,
.carousel-control-next i {
  color: white;
}

#home-caroucel .carousel-control-prev {
  left: -50px !important;
}

#home-caroucel .carousel-control-next {
  right: -50px !important;
}

/*Set Heigth Default*/

#home-caroucel #recipeCarousel {
  height: 330px;
}

#home-caroucel #carousel-noticia-destaque {
  height: 100%;
}

#home-caroucel #recipeCarousel .element,
#home-caroucel #recipeCarousel .element img,
#recipeCarousel .element video {
  height: 100%;
}

#recipeCarousel .element img,
#recipeCarousel .element video {
  object-fit: cover;
  object-position: center;
}

/*Set Height Item Central*/
#home-caroucel #carousel-item-central,
#home-caroucel #carousel-item-central a,
#home-caroucel #carousel-item-central a img,
#home-caroucel #carousel-item-central a video {
  height: 100%;
}

#home-caroucel #carousel-item-central a img,
#home-caroucel #carousel-item-central a video {
  width: 100%;
  object-fit: cover;
  object-position: center;
}
/*End Set Height Item Central*/
/*End Set Heigth Default*/
#home-caroucel #recipeCarousel .element {
  align-items: baseline !important;
  -webkit-box-align: baseline !important;
}

#home-caroucel .carousel-item .element-carousel {
  padding-left: 3px !important;
  padding-right: 3px !important;
  vertical-align: bottom !important;
}

#home-caroucel .carousel-item .element-carousel:nth-child(2) /*, .carousel-item .element-carousel:nth-child(3)*/ {
  visibility: hidden;
}

#home-caroucel #carousel-item-central {
  position: absolute;
  bottom: 0;
  left: 33%;
}

#home-caroucel #carousel-item-central .portfolio-box .portfolio-box-caption {
  opacity: 1 !important;
}

#home-caroucel
  #carousel-item-central
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .legenda {
  font-family: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  padding: 0 15px;
  width: 60%;
}

#home-caroucel
  #carousel-item-central
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-category,
#home-caroucel
  #carousel-item-central
  .portfolio-box
  .portfolio-box-caption
  .portfolio-box-caption-content
  .project-name {
  font-size: 20px;
}

#home-caroucel #carousel-item-central {
  padding: 5px 5px 0 5px !important;
}

#home-caroucel .carousel-inner .carousel-item.active,
#home-caroucel .carousel-inner .carousel-item-next,
#home-caroucel .carousel-inner .carousel-item-prev {
  display: flex;
}

#home-caroucel .carousel-inner .carousel-item-right.active,
#home-caroucel .carousel-inner .carousel-item-next {
  transform: translateX(25%);
}

#home-caroucel .carousel-inner .carousel-item-left.active,
#home-caroucel .carousel-inner .carousel-item-prev {
  transform: translateX(-25%);
}

#home-caroucel .carousel-inner .carousel-item-right,
#home-caroucel .carousel-inner .carousel-item-left {
  transform: translateX(0);
}

@media (max-width: 600px) {
  #home-caroucel {
    margin-top: 20% !important;
  }

  #home-caroucel #carousel-item-central {
    display: none;
  }

  #home-caroucel .carousel-item .element-carousel:nth-child(2) {
    visibility: visible;
  }

  #home-caroucel .carousel-inner .carousel-item-right.active,
  #home-caroucel .carousel-inner .carousel-item-next {
    transform: translateX(100%);
  }

  #home-caroucel .carousel-inner .carousel-item-left.active,
  #home-caroucel .carousel-inner .carousel-item-prev {
    transform: translateX(-100%);
  }

  #home-caroucel .carousel-inner .carousel-item-right,
  #home-caroucel .carousel-inner .carousel-item-left {
    transform: translateX(0);
  }

  #home-caroucel .carousel-item .element-carousel {
    filter: blur(0);
  }

  #home-caroucel .carousel-control-prev,
  #home-caroucel .carousel-control-next {
    width: 7% !important;
    height: 45% !important;
    top: 28% !important;
  }

  #home-caroucel .carousel-control-prev {
    left: 0.5% !important;
  }

  #home-caroucel .carousel-control-next {
    right: 0.5% !important;
  }
}

/*END CAROUSEL*/

/*FOOTER*/
/*#footer {
    z-index: -999 !important;
    position: relative;
    background-color: rgb(41,42,46);
    color: rgb(255,255,255);
    top: -70px;
}*/

#footer p {
  font-size: 14px;
}

#footer-info p {
  margin-block-end: 0 !important;
  margin-bottom: 0 !important;
  color: rgb(255, 255, 255);
  font-size: 14px;
}

#footer > div {
  margin-right: 0;
}

.social-link,
.social-link a {
  color: rgb(255, 255, 255);
}

/*MOBILE*/
@media (min-width: 768px) and (max-width: 1024px) {
  #recipeCarousel {
    height: 300px;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  #recipeCarousel {
    height: 220px;
  }
}

@media (max-width: 425px) {
  #recipeCarousel {
    height: 200px;
  }

  #carousel-noticia-destaque {
    height: 100%;
  }

  #gallery {
    padding: 0;
    padding-bottom: 18%;
  }
}

@media (min-width: 375px) and (max-width: 425px) {
  #gallery {
    padding-left: 8%;
    padding-right: 8%;
  }
}

/*POP UP*/
#noticia-popup {
  position: relative;
  color: #fff;
  padding: 20px;
  width: auto;
}

.mfp-close {
  top: -5% !important;
  right: 15px !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  /*background: rgba(255,255,255,.4)!important;*/
  border-radius: 50% !important;
  width: 44px !important;
  text-align: center !important;
  padding-right: 0 !important;
}

#noticia-popup-info {
  height: auto;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  /*#noticia-popup-info::-webkit-scrollbar {
    display: none;
  }*/

  /*#noticia-popup-info {
    height: 500px;
    overflow: -moz-scrollbars-none;
  }*/
}

/*END POP UP*/

/*OWL CAROUSEL*/
/*#noticia-popup .owl-carousel .owl-stage {
    display: flex;
}

#noticia-popup .owl-carousel .owl-item img {
    width: auto;
    height: 100%;
}*/

#noticia-popup .owl-carousel .owl-item {
  height: 500px;
  width: 100%;
}

.item-gallery-noticia img {
  object-fit: contain;
  object-position: center;
  height: 100%;
  height: 100%;
}

.item-gallery-noticia video {
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
}

.item-gallery-noticia {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#noticia-popup .owl-prev,
#noticia-popup .owl-next {
  border: 1px solid #fff !important;
  width: 6% !important;
  height: 100% !important;
  border-radius: 50% !important;
}

#noticia-popup .owl-prev span,
#noticia-popup .owl-next span {
  font-style: normal;
  font-size: 25px;
  font-family: Arial, Baskerville, monospace;
}

@media (max-width: 768px) {
  #noticia-popup .owl-prev,
  #noticia-popup .owl-next {
    display: none;
  }

  .mfp-close {
    top: 0% !important;
  }

  div.container-fluid {
    bottom: 100px !important;
  }

  .navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
  }
}

.btn-primary {
  background-color: rgb(152, 188, 27) !important;
  border-color: rgb(152, 188, 27) !important;
}
/*END OWL CAROUSEL*/

#digitalF {
  z-index: 1000000000;
  position: relative;
  left: 0%;
  top: 0;
  color: #66666694;
  font-size: 12px;
}