header {
  position: relative;
  min-height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

header.active {
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  -webkit-box-shadow: 0px 3px 15px -3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 15px -3px rgba(0, 0, 0, 0.1);
}

header.active #logo-green {
  display: block;
}

header.active #logo-white {
  display: none;
}

header #logo-green {
  display: none;
}

header #logo-green img {
  width: 175px;
}

header #logo-white {
  display: block;
}

header #logo-white img {
  width: 175px;
}

header div#search {
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  right: 0;
  top: 100%;
  background: #f3f3f3;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

header div#search.active {
  opacity: 1;
  visibility: visible;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

header div#search.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.831372549);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}

header div#search form#searchform {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 5px solid #2c6650;
  margin-top: 0;
}

header div#search form#searchform input#search-input {
  height: 100%;
  margin-bottom: 0;
  font-size: 22px;
  padding: 0;
  background: #f3f3f3;
}

header div#search form#searchform input#search-input:focus-visible {
  outline: #fff;
}

header div#search form#searchform input#searchsubmit {
  float: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.9992 20.9992L16.6992 16.6992' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-color: rgba(0, 0, 0, 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 35px;
  cursor: pointer;
  padding: 20px;
  width: 35px;
  height: 35px;
  margin-bottom: 0;
}

header div#search #search-results {
  background-color: #fff;
}

header div#search #search-results .current-results {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 40px;
}

header div#search #search-results .current-results .current-results-item {
  position: relative;
  width: 45%;
}

@media only screen and (max-width: 767px) {
  header div#search #search-results .current-results .current-results-item {
    position: relative;
    width: 100%;
  }
}

header div#search #search-results .current-results .current-results-item .current-results-info {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  height: 70px;
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

header div#search #search-results .current-results .current-results-item .current-results-info span.current-results-title {
  color: #222;
  font-size: 14px;
  line-height: 1.4rem;
  font-style: normal;
  font-weight: 600;
}

header div#search #search-results .current-results .current-results-item .current-results-info span.current-results-date {
  opacity: 0;
}

header div#search #search-results .current-results .current-results-item a img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-right-radius: 80px;
}

header div#search #search-results #no-results-found {
  margin-top: 60px;
  margin-bottom: 60px;
}

header .section-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

header .section-menu #menu-container {
  width: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.3s ease;
  transition-duration: 0.3s ease;
}

@media only screen and (max-width: 1270px) {
  header .section-menu #menu-container {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50vw;
    background-color: #f3f3f3;
    z-index: 999;
    height: 100vh;
    -webkit-transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    display: inherit;
    overflow: scroll;
  }
}

header .section-menu #menu-container.active {
  width: 100%;
  opacity: 1;
  visibility: visible;
  display: block;
  -webkit-transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition-duration: 0.3s ease;
  transition-duration: 0.3s ease;
}

@media only screen and (max-width: 1270px) {
  header .section-menu #menu-container.active {
    left: 0;
    -webkit-transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 100vw;
  }
}

header .section-menu #icons-search-open-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

header .section-menu #icons-search-open-menu .search.search-icon {
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.9992 20.9992L16.6992 16.6992' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 20px;
}

header .section-menu #icons-search-open-menu .search.search-icon.active {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .section-menu #icons-search-open-menu .search.search-icon.active.icon-green {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

header .section-menu #icons-search-open-menu .search.search-icon.icon-green {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.9992 20.9992L16.6992 16.6992' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

header .section-menu #icons-search-open-menu #open-menu {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 6H20' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18H20' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  padding: 20px;
}

header .section-menu #icons-search-open-menu #open-menu.active {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

header .section-menu #icons-search-open-menu #open-menu.open-menu-green {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 6H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

header .section-menu #icons-search-open-menu #open-menu.open-menu-green.active {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

@media only screen and (max-width: 999px) {
  header .section-menu #icons-search-open-menu #open-menu.open-menu-green.active {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 6H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  }
}

@media only screen and (max-width: 1270px) {
  header #menu-container {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50vw;
    background-color: #f3f3f3;
    z-index: 999;
    height: 100vh;
    -webkit-transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
}

@media only screen and (max-width: 1270px) {
  header #menu-container.active {
    left: 0;
    -webkit-transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 50vw;
  }
}

header #menu-container #close-menu-mobile {
  display: none;
}

@media only screen and (max-width: 1270px) {
  header #menu-container #close-menu-mobile {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6L18 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 6L6 18' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding: 50px 20px 20px 70px;
  }
}

header #menu-container nav.menu-principal-classe {
  margin-left: 20px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3 ease-in;
  transition: 0.3 ease-in;
}

@media only screen and (max-width: 1300px) {
  header #menu-container nav.menu-principal-classe {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe {
    padding-left: 30px;
  }
}

header #menu-container nav.menu-principal-classe.disable {
  opacity: 0;
  -webkit-transition: 0.3 ease-out;
  transition: 0.3 ease-out;
  visibility: hidden;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal li.menu-item {
  -ms-flex-item-align: center;
  align-self: center;
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal li.menu-item {
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 100%;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item a {
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--Pantone-555-C, #2c6650);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  position: relative;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item a::after {
  content: "";
  display: block;
  width: 0%;
  height: 5px;
  background-color: #2c6650;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
  -webkit-transition: 0.05s ease-in;
  transition: 0.05s ease-in;
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item a::after {
    display: none;
  }
}

@media only screen and (max-width: 1100px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item a {
    padding: 30px 10px;
  }
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item a {
    padding: 10px;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item.active a::after {
  width: 80%;
}

/* header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista>.menu-item ul.sub-menu.mega-menu>.menu-item {
  position: relative
} */

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item ul.sub-menu.mega-menu > .menu-item a {
  padding: 15px;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item ul.sub-menu.mega-menu > .menu-item a:hover {
  font-weight: 900;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item ul.sub-menu.mega-menu > .menu-item a::after {
  display: none;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item ul.sub-menu.mega-menu > .menu-item.active > a {
  font-weight: 900;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item ul.sub-menu.mega-menu.recent-posts > .recent-post-item a::after {
  display: none;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item .submenu-container.depth-1 {
  position: absolute;
  top: 0px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  width: 300px;
  transform: translateX(220px);
}

@media only screen and (max-width: 1270px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item .submenu-container.depth-1 {
    position: relative;
    height: 0;
    left: 0;
    padding: 0;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item .submenu-container.depth-1 .menu-item {
  width: 260px;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > .menu-item .sub-menu.mega-menu.depth-0 .menu-item-has-children.active .submenu-container.depth-1 {
  opacity: 1 !important;
  visibility: visible !important;
}

@media only screen and (max-width: 1270px) {
  header
    #menu-container
    nav.menu-principal-classe
    ul#menu-menu-header-principal.menu-principal-lista
    > .menu-item
    .sub-menu.mega-menu.depth-0
    .menu-item-has-children.active
    .submenu-container.depth-1 {
    position: relative;
    height: auto !important;
    left: -200px;
    padding: 0 0 0 30px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
  }
}

header .submenu-container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #f3f3f3;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0s 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s, -webkit-transform 0.3s ease;
  z-index: 999;
}

@media only screen and (max-width: 1270px) {
  header .submenu-container {
    position: relative;
    padding: 0;
    height: 0 !important;
    min-height: 0 !important;
  }
}

header .submenu-container .recent-posts.sub-menu.mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1270px) {
  header .submenu-container .recent-posts.sub-menu.mega-menu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

header .submenu-container .recent-posts.sub-menu.mega-menu .recent-post-item {
  width: 50%;
}

header .submenu-container .recent-posts.sub-menu.mega-menu .recent-post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

header .submenu-container.submenu-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media only screen and (max-width: 1270px) {
  header .submenu-container.submenu-visible {
    padding: 10px 10px 10px 30px;
    height: auto !important;
  }
}

header .submenu-container.submenu-visible::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.831372549);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  header .submenu-container.submenu-visible::after {
    display: none;
  }
}

header ul#menu-menu-header-principal.menu-principal-lista .submenu-container .recent-posts.sub-menu.mega-menu a {
  display: block;
}

header ul#menu-menu-header-principal.menu-principal-lista .submenu-container .recent-posts.sub-menu.mega-menu a span {
  display: block;
}

header .has-mega-menu:hover .submenu-container {
  display: block;
}

header .mega-menu li {
  width: 25%;
}

header .mega-menu a {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
}

header .menu-item-has-children > a i.fa-chevron-down,
header .menu-item-16981 > a i.fa-chevron-down {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_4057_5015' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect width='24' height='24' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_4057_5015)'%3E%3Cpath d='M12 15.4L6 9.4L7.4 8L12 12.6L16.6 8L18 9.4L12 15.4Z' fill='%232C6650'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  font-size: 12px;
  vertical-align: middle;
}

header .menu-item-has-children .sub-menu li > a i.fa-chevron-right {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_6331_3080' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Crect y='24' width='24' height='24' transform='rotate(-90 0 24)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_6331_3080)'%3E%3Cpath d='M15.4 12L9.4 18L8 16.6L12.6 12L8 7.4L9.4 6L15.4 12Z' fill='%232C6650'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  font-size: 12px;
  vertical-align: middle;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16976 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  max-width: 1065px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16976 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16976 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 > li.menu-item {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
  max-width: 263px;
}

@media only screen and (max-width: 767px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16976 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 > li.menu-item {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
  }
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16976
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link {
  width: 100%;
  height: 112px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 20px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

@media only screen and (max-width: 767px) {
  header
    #menu-container
    nav.menu-principal-classe
    ul#menu-menu-header-principal.menu-principal-lista
    > li#menu-item-16976
    .submenu-container.depth-0
    .sub-menu.mega-menu.depth-0
    > li.menu-item
    > a.prod-serv-link {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16976
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link
  .prod-serv-title {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16976
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link
  .prod-serv-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.99984 1.12988C6.99984 1.7504 7.61477 2.67895 8.23641 3.45879C9.03693 4.46281 9.99231 5.33992 11.0886 6.00964C11.9098 6.51108 12.9071 6.99241 13.7082 6.99241M6.99984 12.8695C6.99984 12.2489 7.61477 11.3204 8.23641 10.5406C9.03693 9.53654 9.99231 8.65943 11.0886 7.98971C11.9098 7.48826 12.9071 7.00694 13.7082 7.00694M13.7082 6.99967H0.291504' stroke='%232C6650' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16976
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16976
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link:hover
  .prod-serv-title {
  font-weight: 600;
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16984 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 20px;
  max-width: 1065px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16984 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 {
    padding: 10px;
  }
}

header #menu-container nav.menu-principal-classe ul#menu-menu-header-principal.menu-principal-lista > li#menu-item-16984 .submenu-container.depth-0 .sub-menu.mega-menu.depth-0 > li.menu-item {
  width: inherit;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16984
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link {
  width: 100%;
  height: 112px;
  border-radius: 12px;
  background: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16984
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link
  .prod-serv-title {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16984
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link
  .prod-serv-title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.99984 1.12988C6.99984 1.7504 7.61477 2.67895 8.23641 3.45879C9.03693 4.46281 9.99231 5.33992 11.0886 6.00964C11.9098 6.51108 12.9071 6.99241 13.7082 6.99241M6.99984 12.8695C6.99984 12.2489 7.61477 11.3204 8.23641 10.5406C9.03693 9.53654 9.99231 8.65943 11.0886 7.98971C11.9098 7.48826 12.9071 7.00694 13.7082 7.00694M13.7082 6.99967H0.291504' stroke='%232C6650' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16984
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header
  #menu-container
  nav.menu-principal-classe
  ul#menu-menu-header-principal.menu-principal-lista
  > li#menu-item-16984
  .submenu-container.depth-0
  .sub-menu.mega-menu.depth-0
  > li.menu-item
  > a.prod-serv-link:hover
  .prod-serv-title {
  font-weight: 600;
}

header li#menu-item-16981 .submenu-container.depth-0:nth-of-type(2) {
  display: none;
}

header #menu-container nav.menu-principal-classe #menu-menu-header-principal li#menu-item-16981 .submenu-container.depth-0 {
  min-height: 350px;
}

header #menu-container nav.menu-principal-classe #menu-menu-header-principal li#menu-item-16981 .submenu-container.depth-0.submenu-visible ul.recent-posts.sub-menu.mega-menu.depth-0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-width: 1263px;
  margin: 0 auto;
  padding: 0 20px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0.submenu-visible
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: inherit;
  width: 220px;
}

@media only screen and (max-width: 999px) {
  header
    #menu-container
    nav.menu-principal-classe
    #menu-menu-header-principal
    li#menu-item-16981
    .submenu-container.depth-0.submenu-visible
    ul.recent-posts.sub-menu.mega-menu.depth-0
    li.menu-item.menu-item-fixed.menu-item-fixed-posts {
    -ms-flex-item-align: start;
    align-self: flex-start;
    position: inherit;
    width: 220px;
  }
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0.submenu-visible
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  pointer-events: all;
  padding: 0 20px;
}

@media only screen and (max-width: 999px) {
  header
    #menu-container
    nav.menu-principal-classe
    #menu-menu-header-principal
    li#menu-item-16981
    .submenu-container.depth-0.submenu-visible
    ul.recent-posts.sub-menu.mega-menu.depth-0
    li.menu-item.menu-item-fixed.menu-item-fixed-posts
    .sub-menu.active {
    position: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }
}

header #menu-container nav.menu-principal-classe #menu-menu-header-principal li#menu-item-16981 .submenu-container.depth-0 ul.recent-posts.sub-menu.mega-menu.depth-0 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: inherit;
  width: 220px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu {
  position: absolute;
  left: calc(50% - 320px);
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  pointer-events: none;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item {
  width: 100%;
  background-color: #fff;
  border-top-right-radius: 60px;
  overflow: hidden;
  height: 250px;
  max-height: 250px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 200px;
  flex: 1 1 200px;
}

@media only screen and (max-width: 999px) {
  header
    #menu-container
    nav.menu-principal-classe
    #menu-menu-header-principal
    li#menu-item-16981
    .submenu-container.depth-0
    ul.recent-posts.sub-menu.mega-menu.depth-0
    li.menu-item.menu-item-fixed.menu-item-fixed-posts
    .sub-menu
    .recent-post-item {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    height: auto;
    max-height: initial;
  }
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  a {
  padding: 0;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  img.recent-post-thumbnail.wp-post-image {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  .info {
  padding: 30px;
  width: 100%;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  .info
  span.recent-post-date {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  background-color: #909288;
  padding: 5px 20px;
  border-radius: 90px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  .info
  span.recent-post-title {
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu
  .recent-post-item
  .info
  span.recent-post-title::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.99984 1.12988C6.99984 1.7504 7.61477 2.67895 8.23641 3.45879C9.03693 4.46281 9.99231 5.33992 11.0886 6.00964C11.9098 6.51108 12.9071 6.99241 13.7082 6.99241M6.99984 12.8695C6.99984 12.2489 7.61477 11.3204 8.23641 10.5406C9.03693 9.53654 9.99231 8.65943 11.0886 7.98971C11.9098 7.48826 12.9071 7.00694 13.7082 7.00694M13.7082 6.99967H0.291504' stroke='%232C6650' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-posts
  .sub-menu.active {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  pointer-events: all;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais {
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: inherit;
  width: 220px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu {
  position: absolute;
  left: calc(50% - 320px);
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu
  .recent-post-item {
  width: 283px;
  background-color: #fff;
  border-top-right-radius: 60px;
  overflow: hidden;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu
  .recent-post-item
  img.recent-post-thumbnail.wp-post-image {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu
  .recent-post-item
  span.recent-post-date {
  background-color: #909288;
  padding: 5px;
  border-radius: 90px;
  margin-top: 25px;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu
  .recent-post-item
  span.recent-post-title {
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

header
  #menu-container
  nav.menu-principal-classe
  #menu-menu-header-principal
  li#menu-item-16981
  .submenu-container.depth-0
  ul.recent-posts.sub-menu.mega-menu.depth-0
  li.menu-item.menu-item-fixed.menu-item-fixed-materiais
  .sub-menu.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

header li#menu-item-16965 .submenu-container.depth-0 {
  height: 368px;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 100%;
  max-width: 550px;
}

@media only screen and (max-width: 999px) {
  header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque {
    display: none;
  }
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento {
  width: 100%;
  max-width: 547px;
  height: 245px;
  border-top-right-radius: 60px;
  overflow: hidden;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento a {
  padding: 0 !important;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento a .info {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  width: 70%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  padding: 25px 20px;
}

p#emphasisBuilding {
  color: var(--Pantone-Neutral-Black, #222);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  margin-bottom: 10px;
}

.menu-item-empreendimento span.empreendimento-title {
  max-width: 90px;
  color: #222;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento span.empreendimento-dormitorios {
  color: #909288;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  /* 220% */
}

header div#results-search span.empreendimento-dormitorios {
  color: #909288;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  /* 220% */
}

@media only screen and (max-width: 767px) {
  header div#results-search span.empreendimento-dormitorios {
    flex-direction: column;
    align-items: flex-start;
  }
}

header div#results-search span.empreendimento-dormitorios picture {
  margin-right: 5px;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento span.empreendimento-dormitorios picture {
  display: flex;
  margin-right: 3px;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento span.empreendimento-tamanho_plantas {
  color: #909288;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  /* 220% */
}

header div#results-search span.empreendimento-tamanho_plantas {
  color: #909288;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: flex;
  align-items: center;
  /* 220% */
}

@media only screen and (max-width: 767px) {
  header div#results-search span.empreendimento-tamanho_plantas {
    flex-direction: column;
    align-items: flex-start;
  }
}

header div#results-search span.empreendimento-tamanho_plantas picture {
  margin-right: 5px;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento span.empreendimento-tamanho_plantas picture {
  display: flex;
  margin-right: 3px;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento.active span.empreendimento-title {
  font-weight: 400;
}

header li#menu-item-16965 .submenu-container.depth-0 ul#sub-menu-destaque li.menu-item.menu-item-empreendimento.active span.empreendimento-dormitorios {
  font-weight: 400;
}

header li#menu-item-16965 .submenu-container.depth-0.submenu-visible ul.sub-menu.mega-menu.depth-0 {
  position: relative;
  max-width: 1263px;
  margin: 0 auto;
}

header li#menu-item-16965 .submenu-container.depth-0.submenu-visible ul.sub-menu.mega-menu.depth-0 li.menu-item {
  width: 250px;
}

@media screen and (max-width: 1100px) {
  header li#menu-item-16964 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  header li#menu-item-16964 {
    display: block;
  }
}

i.logo-planeta.logo-planeta-header {
  background-image: url("data:image/svg+xml,%3Csvg width='175' height='36' viewBox='0 0 175 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.9275 0H0V13.8172H13.9275V0Z' fill='%23F8F4E5'/%3E%3Cpath d='M0 15.8945H13.9275V29.7117H8.851C3.96316 29.7117 0 25.78 0 20.9308V15.8945Z' fill='%23F8F4E5'/%3E%3Cpath d='M30.0726 6.90937C30.0726 10.7215 26.9352 13.8172 23.0617 13.8172H16.0508V0H23.0617C26.9352 0 30.0726 3.09265 30.0726 6.90783' fill='%23F8F4E5'/%3E%3Cpath d='M30.0726 22.6715C30.0726 26.4867 26.9336 29.5793 23.0617 29.5793C19.1898 29.5793 16.0508 26.4867 16.0508 22.6715C16.0508 18.8563 19.1898 15.7637 23.0617 15.7637C26.9336 15.7637 30.0726 18.8563 30.0726 22.6715Z' fill='%23C2E76B'/%3E%3Cpath d='M48.4974 7.29143V14.0448H56.3827C59.353 14.0448 61.1666 12.9493 61.1666 10.6819C61.1666 8.41456 59.353 7.29143 56.3827 7.29143H48.4974ZM48.4974 17.0436V24.5576H47.1277C45.7434 24.5576 44.6211 23.4443 44.6211 22.0708V4.29102H56.4089C62.4282 4.29102 65.0167 6.42999 65.0167 10.6803C65.0167 14.9306 62.4282 17.0436 56.4089 17.0436H48.4974Z' fill='%23F8F4E5'/%3E%3Cpath d='M67.4746 5.33789H71.4623V24.3741H69.9944C68.6034 24.3741 67.4762 23.2559 67.4762 21.8759V5.33789H67.4746Z' fill='%23F8F4E5'/%3E%3Cpath d='M84.1201 22.0565C85.6143 22.0565 87.4902 21.7249 89.3038 19.8704V14.3783C88.1193 13.4161 85.6159 12.852 84.0956 12.852C80.9811 12.852 78.8873 14.8317 78.8873 17.5705C78.8873 20.3092 81.0057 22.0565 84.1201 22.0565ZM77.018 12.3563C78.4875 11.0268 80.4814 10.375 83.0487 10.375C85.6159 10.375 87.7835 11.1308 89.253 12.644H89.3776L89.602 10.6887H93.3653V24.5611H89.7527L89.5037 22.2921H89.3792C87.8588 23.9874 85.7404 24.8212 83.0487 24.8212C80.3569 24.8212 78.4892 24.1694 77.018 22.8399C75.5467 21.5103 74.8242 19.7631 74.8242 17.5721C74.8242 15.3811 75.5467 13.6875 77.018 12.3563Z' fill='%23F8F4E5'/%3E%3Cpath d='M164.712 22.0565C166.208 22.0565 168.082 21.7249 169.896 19.8704V14.3783C168.711 13.4161 166.208 12.852 164.688 12.852C161.573 12.852 159.479 14.8317 159.479 17.5705C159.479 20.3092 161.598 22.0565 164.712 22.0565ZM157.61 12.3563C159.08 11.0268 161.074 10.375 163.641 10.375C166.208 10.375 168.376 11.1308 169.845 12.644H169.97L170.194 10.6887H173.957V24.5611H170.345L170.096 22.2921H169.971C168.451 23.9874 166.333 24.8212 163.642 24.8212C160.952 24.8212 159.081 24.1694 157.612 22.8399C156.142 21.5103 155.418 19.7631 155.418 17.5721C155.418 15.3811 156.14 13.6875 157.612 12.3563' fill='%23F8F4E5'/%3E%3Cpath d='M113.947 12.331C115.343 13.6345 116.041 15.3818 116.041 17.5728V24.5618H111.98V17.5728C111.98 14.782 109.912 13.1404 106.747 13.1404C103.581 13.1404 101.538 14.8096 101.538 17.5224V24.5634H97.5508V10.691H101.163L101.388 12.7259H101.512C103.082 11.1607 105.325 10.3789 108.19 10.3789C110.657 10.3789 112.576 11.0307 113.947 12.3342' fill='%23F8F4E5'/%3E%3Cpath d='M133.062 16.528C132.962 14.363 131.144 13.1115 128.179 13.1115C125.687 13.1115 123.793 14.467 123.493 16.528H133.062ZM137.248 18.797H123.493C123.991 21.092 126.009 22.0038 129.773 22.0038C130.869 22.0038 132.04 21.8738 133.287 21.6121C134.558 21.3504 135.554 21.0643 136.301 20.7246V23.7234C135.479 24.0095 134.308 24.2712 132.813 24.5052C131.344 24.7133 129.973 24.8189 128.752 24.8189C122.746 24.8189 119.207 22.2379 119.207 17.6218C119.207 15.4569 120.029 13.7096 121.65 12.38C123.27 11.0505 125.462 10.3711 128.203 10.3711C130.944 10.3711 133.187 10.9969 134.807 12.2484C136.428 13.4999 137.25 15.1952 137.25 17.3585V18.7921L137.248 18.797Z' fill='%23F8F4E5'/%3E%3Cpath d='M154.095 21.7703V24.5871C153.024 24.7431 152.026 24.8211 151.154 24.8211C148.289 24.8211 146.171 24.3254 144.825 23.3615C143.505 22.3961 142.832 20.6488 142.832 18.1718V13.3477H138.57V10.687H142.832V6.30664H146.819V10.687H153.648V13.3477H146.819V18.0157C146.819 20.8065 148.064 21.98 151.38 21.98L154.097 21.7719L154.095 21.7703Z' fill='%23F8F4E5'/%3E%3Cpath d='M116.288 35.3922C115.824 34.9875 115.592 34.417 115.592 33.6807C115.592 32.9444 115.824 32.3739 116.288 31.9692C116.752 31.5645 117.396 31.3613 118.218 31.3613C118.923 31.3613 119.466 31.5044 119.85 31.7888C120.233 32.0732 120.487 32.5056 120.612 33.0875L119.734 33.2809C119.671 32.9038 119.522 32.6291 119.285 32.4552C119.047 32.2829 118.692 32.1951 118.22 32.1951C117.633 32.1951 117.201 32.3187 116.92 32.5657C116.64 32.8128 116.499 33.185 116.499 33.6791C116.499 34.1732 116.639 34.5454 116.92 34.7925C117.201 35.0395 117.635 35.163 118.22 35.163C118.711 35.163 119.07 35.0737 119.294 34.8932C119.519 34.7144 119.665 34.4268 119.734 34.0302L120.612 34.2252C120.487 34.8185 120.232 35.2622 119.845 35.5564C119.458 35.8506 118.916 35.9969 118.218 35.9969C117.396 35.9969 116.752 35.7953 116.288 35.389' fill='%23F8F4E5'/%3E%3Cpath d='M125.654 34.8042C125.937 34.5636 126.08 34.1898 126.08 33.6827C126.08 33.1756 125.944 32.8099 125.674 32.566C125.403 32.3222 124.971 32.1987 124.379 32.1987C123.788 32.1987 123.382 32.3222 123.103 32.5693C122.826 32.8164 122.687 33.1886 122.687 33.6827C122.687 34.1768 122.83 34.5717 123.116 34.809C123.403 35.0463 123.824 35.1666 124.378 35.1666C124.932 35.1666 125.371 35.0463 125.654 34.8042ZM122.481 35.3925C122.007 34.9878 121.77 34.4173 121.77 33.681C121.77 32.9448 122.007 32.3678 122.481 31.9663C122.954 31.5648 123.586 31.3633 124.378 31.3633C125.169 31.3633 125.819 31.5664 126.29 31.9712C126.76 32.3759 126.996 32.9464 126.996 33.6827C126.996 34.419 126.758 34.996 126.285 35.3974C125.811 35.8005 125.176 36.0004 124.378 36.0004C123.58 36.0004 122.954 35.7989 122.481 35.3925Z' fill='%23F8F4E5'/%3E%3Cpath d='M132.586 31.8535C132.903 32.1818 133.062 32.6678 133.062 33.3098V35.9071H132.155V33.5325C132.155 33.0741 132.048 32.7361 131.832 32.5166C131.617 32.2972 131.291 32.1867 130.856 32.1867C130.362 32.1867 129.984 32.3297 129.72 32.6174C129.455 32.9051 129.322 33.3293 129.322 33.8917V35.9039H128.406V31.452H129.183L129.322 32.6483H129.34C129.489 32.2403 129.719 31.9234 130.027 31.6975C130.335 31.4715 130.716 31.3594 131.172 31.3594C131.794 31.3594 132.266 31.5235 132.584 31.8502' fill='%23F8F4E5'/%3E%3Cpath d='M135.189 35.6474C134.788 35.4117 134.545 35.085 134.465 34.6641L135.315 34.4511C135.377 34.7486 135.522 34.968 135.744 35.1094C135.969 35.2508 136.287 35.3223 136.698 35.3223C137.06 35.3223 137.335 35.2687 137.525 35.1598C137.715 35.0509 137.81 34.8916 137.81 34.6819C137.804 34.508 137.722 34.3731 137.563 34.274C137.404 34.1748 137.147 34.0952 136.791 34.0334L135.866 33.8839C135.436 33.8221 135.112 33.6823 134.894 33.4613C134.676 33.2419 134.566 32.9623 134.566 32.6226C134.566 32.2211 134.734 31.9091 135.066 31.6913C135.4 31.4719 135.872 31.3613 136.482 31.3613C137.679 31.3613 138.392 31.8278 138.623 32.7608L137.781 32.9363C137.725 32.6275 137.589 32.3934 137.375 32.2358C137.16 32.0781 136.875 32.0001 136.519 32.0001C136.164 32.0001 135.916 32.0521 135.739 32.1578C135.563 32.2634 135.472 32.4146 135.472 32.6129C135.486 32.9217 135.735 33.1167 136.221 33.1964L137.278 33.354C137.751 33.4223 138.11 33.5637 138.353 33.7799C138.595 33.996 138.718 34.2772 138.718 34.6234C138.718 35.0623 138.538 35.4004 138.176 35.6393C137.814 35.8782 137.306 35.9969 136.652 35.9969C136.079 35.9969 135.59 35.8798 135.189 35.6442' fill='%23F8F4E5'/%3E%3Cpath d='M141.627 32.2545V35.0745L141.655 35.1021H143.095V35.9083H141.768C141.432 35.9083 141.171 35.8173 140.988 35.6352C140.804 35.4532 140.713 35.1947 140.713 34.8599V32.2545L140.17 32.2642H139.562V31.458H140.17L140.713 31.4678L140.927 30.0684H141.628V31.4678L142.208 31.458H143.218V32.2642H142.208L141.628 32.2545H141.627Z' fill='%23F8F4E5'/%3E%3Cpath d='M145.451 31.457L145.582 32.6711H145.601C145.733 32.2258 145.959 31.9056 146.278 31.7105C146.599 31.5155 146.999 31.418 147.479 31.418C147.559 31.418 147.7 31.4245 147.9 31.4375L147.769 32.281C147.631 32.2697 147.526 32.2632 147.451 32.2632C146.915 32.2632 146.471 32.4192 146.119 32.7313C145.767 33.0433 145.592 33.4968 145.592 34.0901V35.9072H144.676V31.4554H145.452L145.451 31.457Z' fill='%23F8F4E5'/%3E%3Cpath d='M153.779 35.9066H153.012L152.873 34.7103H152.854C152.722 35.1362 152.501 35.458 152.19 35.6742C151.879 35.8904 151.489 35.9993 151.022 35.9993C150.398 35.9993 149.926 35.8351 149.605 35.5068C149.284 35.1801 149.123 34.6941 149.123 34.0504V31.4531H150.039V33.8278C150.039 34.2861 150.147 34.6242 150.362 34.8436C150.576 35.063 150.902 35.1736 151.338 35.1736C151.825 35.1736 152.201 35.0305 152.469 34.7429C152.736 34.4552 152.872 34.0293 152.872 33.4669V31.4547H153.778V35.9066H153.779Z' fill='%23F8F4E5'/%3E%3Cpath d='M157.134 32.2545V35.0745L157.162 35.1021H158.602V35.9083H157.275C156.938 35.9083 156.679 35.8173 156.494 35.6352C156.31 35.4532 156.218 35.1947 156.218 34.8599V32.2545L155.676 32.2642H155.068V31.458H155.676L156.218 31.4678L156.433 30.0684H157.134V31.4678L157.714 31.458H158.723V32.2642H157.714L157.134 32.2545Z' fill='%23F8F4E5'/%3E%3Cpath d='M163.711 34.8042C163.994 34.5636 164.137 34.1898 164.137 33.6827C164.137 33.1756 164.001 32.8099 163.731 32.566C163.46 32.3222 163.028 32.1987 162.436 32.1987C161.845 32.1987 161.437 32.3222 161.16 32.5693C160.883 32.8164 160.744 33.1886 160.744 33.6827C160.744 34.1768 160.888 34.5717 161.173 34.809C161.46 35.0463 161.881 35.1666 162.436 35.1666C162.992 35.1666 163.429 35.0463 163.713 34.8042M160.539 35.3925C160.066 34.9878 159.828 34.4173 159.828 33.681C159.828 32.9448 160.064 32.3678 160.539 31.9663C161.013 31.5648 161.645 31.3633 162.436 31.3633C163.228 31.3633 163.878 31.5664 164.348 31.9712C164.818 32.3759 165.054 32.9464 165.054 33.6827C165.054 34.419 164.817 34.996 164.343 35.3974C163.87 35.8005 163.234 36.0004 162.436 36.0004C161.638 36.0004 161.011 35.7989 160.539 35.3925Z' fill='%23F8F4E5'/%3E%3Cpath d='M167.24 31.457L167.371 32.6711H167.389C167.52 32.2258 167.746 31.9056 168.067 31.7105C168.388 31.5155 168.788 31.418 169.268 31.418C169.348 31.418 169.489 31.4245 169.689 31.4375L169.558 32.281C169.42 32.2697 169.316 32.2632 169.24 32.2632C168.704 32.2632 168.26 32.4192 167.908 32.7313C167.556 33.0433 167.381 33.4968 167.381 34.0901V35.9072H166.465V31.4554H167.241L167.24 31.457Z' fill='%23F8F4E5'/%3E%3Cpath d='M173.294 35.1302C173.553 34.9807 173.758 34.7791 173.907 34.5223C174.057 34.2655 174.128 33.9795 174.121 33.6641L173.382 33.7747C172.878 33.8608 172.501 33.9339 172.252 33.9925C172.003 34.051 171.8 34.1355 171.644 34.2476C171.488 34.3582 171.41 34.5126 171.41 34.7109C171.41 34.9092 171.5 35.0733 171.682 35.1838C171.862 35.296 172.124 35.3513 172.467 35.3513C172.76 35.3513 173.035 35.2765 173.294 35.1286M174.416 31.7901C174.806 32.0745 174.999 32.4825 174.999 33.014V35.9071H174.233L174.111 34.7856H174.093C173.956 35.1757 173.72 35.4748 173.387 35.6845C173.055 35.8941 172.657 35.9998 172.196 35.9998C171.679 35.9998 171.269 35.8925 170.967 35.6747C170.666 35.4585 170.514 35.1611 170.514 34.784C170.514 34.4622 170.601 34.2119 170.776 34.0331C170.951 33.8543 171.23 33.7113 171.613 33.6056C171.996 33.5 172.581 33.3894 173.366 33.2708L174.123 33.1505L174.113 32.9652C174.095 32.3785 173.674 32.0843 172.852 32.0843C172.421 32.0843 172.104 32.1623 171.898 32.32C171.693 32.4776 171.574 32.7263 171.544 33.066L170.777 32.8807C170.822 32.3866 171.033 32.0095 171.413 31.7495C171.793 31.4894 172.28 31.3594 172.871 31.3594C173.513 31.3594 174.03 31.5008 174.418 31.7852' fill='%23F8F4E5'/%3E%3C/svg%3E%0A");
  width: 175px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 0;
}

body header.active i.logo-planeta.logo-planeta-header {
  background-image: url("data:image/svg+xml,%3Csvg width='175' height='36' viewBox='0 0 175 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48.1804 17.5593V24.8322H46.8081C45.4198 24.8322 44.2959 23.7536 44.2959 22.4261V5.21875H56.1136C62.1479 5.21875 64.7421 7.28861 64.7421 11.4021C64.7421 15.5156 62.1479 17.5593 56.1136 17.5593H48.1804ZM48.1804 8.12049V14.6576H56.0863C59.0635 14.6576 60.8827 13.5964 60.8827 11.4021C60.8827 9.20781 59.0635 8.12049 56.0863 8.12049H48.1804Z' fill='%2310312B'/%3E%3Cpath d='M67.2041 6.40918H71.2003V24.8327H69.7277C68.3325 24.8327 67.2041 23.7497 67.2041 22.4157V6.40918Z' fill='%2310312B'/%3E%3Cpath d='M76.772 13.0196C78.2469 11.7335 80.2439 11.1025 82.8176 11.1025C85.4916 11.1025 87.5639 11.834 89.0388 13.299H89.1642L89.3899 11.406H93.1627V24.8317H89.5403L89.2896 22.6352H89.1642C87.6414 24.275 85.5167 25.0828 82.8199 25.0828C80.2462 25.0828 78.2492 24.4518 76.7743 23.1658C75.2993 21.8776 74.5767 20.1877 74.5767 18.0676C74.5744 15.9737 75.2993 14.3078 76.772 13.0196ZM83.8913 22.4082C85.3914 22.4082 87.2698 22.0872 89.0867 20.2925V18.0414V14.9759C87.899 14.0436 85.3891 13.4999 83.8663 13.4999C80.7431 13.4999 78.6459 15.4169 78.6459 18.0676C78.6459 20.7684 80.7682 22.4082 83.8913 22.4082Z' fill='%2310312B'/%3E%3Cpath d='M157.563 13.0196C159.038 11.7335 161.035 11.1025 163.609 11.1025C166.283 11.1025 168.355 11.834 169.83 13.299H169.955L170.181 11.406H173.954V24.8317H170.331L170.081 22.6352H169.955C168.432 24.275 166.308 25.0828 163.611 25.0828C161.037 25.0828 159.04 24.4518 157.565 23.1658C156.09 21.8776 155.368 20.1877 155.368 18.0676C155.363 15.9737 156.088 14.3078 157.563 13.0196ZM164.682 22.4082C166.182 22.4082 168.061 22.0872 169.878 20.2925V18.0414V14.9759C168.69 14.0436 166.18 13.4999 164.657 13.4999C161.534 13.4999 159.437 15.4169 159.437 18.0676C159.437 20.7684 161.559 22.4082 164.682 22.4082Z' fill='%2310312B'/%3E%3Cpath d='M113.796 12.9963C115.196 14.2583 115.895 15.9483 115.895 18.0683V24.8325H111.824V18.0683C111.824 15.3675 109.749 13.778 106.578 13.778C103.455 13.778 101.358 15.3937 101.358 18.0181V24.8325H97.3618V11.4068H100.984L101.21 13.3762H101.335C102.908 11.8609 105.158 11.1055 108.031 11.1055C110.497 11.1033 112.421 11.7343 113.796 12.9963Z' fill='%2310312B'/%3E%3Cpath d='M137.153 19.2539H123.363C123.862 21.4744 125.887 22.3587 129.66 22.3587C130.758 22.3587 131.932 22.2321 133.182 21.981C134.456 21.7277 135.455 21.4504 136.205 21.1229V24.0246C135.379 24.3019 134.205 24.5552 132.708 24.7823C131.233 24.9831 129.86 25.0858 128.636 25.0858C122.615 25.0858 119.068 22.588 119.068 18.1207C119.068 16.0268 119.894 14.3347 121.517 13.0487C123.14 11.7627 125.34 11.1055 128.087 11.1055C130.859 11.1055 133.084 11.7103 134.707 12.9221C136.33 14.1338 137.155 15.7736 137.155 17.8696V19.2539H137.153ZM132.956 17.0596C132.856 14.9657 131.032 13.7539 128.059 13.7539C125.561 13.7539 123.662 15.0661 123.363 17.0596H132.956Z' fill='%2310312B'/%3E%3Cpath d='M154.041 22.131V24.8559C152.967 25.0066 151.966 25.083 151.093 25.083C148.221 25.083 146.096 24.6026 144.749 23.6703C143.424 22.7358 142.75 21.0459 142.75 18.6485V13.9804H138.478V11.4062H142.75V7.16602H146.746V11.4062H153.592V13.9804H146.746V18.4978C146.746 21.1987 147.995 22.3341 151.317 22.3341L154.041 22.131Z' fill='%2310312B'/%3E%3Cpath d='M0.000833511 13.3379L13.9272 13.3379L13.9272 -0.000481606L0.000833511 -0.000481606L0.000833511 13.3379Z' fill='%2310312B'/%3E%3Cpath d='M0 15.3447H13.9264V28.6831H8.8519C3.96432 28.6831 0.00228014 24.8884 0.00228014 20.2071V15.3447H0Z' fill='%2310312B'/%3E%3Cpath d='M30.0711 6.67005C30.0711 10.3513 26.9343 13.3381 23.0612 13.3381H16.0513V0.00195313H23.0612C26.9343 0.00195312 30.0711 2.98666 30.0711 6.67005Z' fill='%2310312B'/%3E%3Cpath d='M23.0612 28.5549C26.9327 28.5549 30.0711 25.5695 30.0711 21.8868C30.0711 18.2042 26.9327 15.2188 23.0612 15.2188C19.1897 15.2188 16.0513 18.2042 16.0513 21.8868C16.0513 25.5695 19.1897 28.5549 23.0612 28.5549Z' fill='%232C6650'/%3E%3Cpath d='M116.287 35.4125C115.822 35.0217 115.59 34.4715 115.59 33.7597C115.59 33.0479 115.822 32.4977 116.287 32.1069C116.752 31.716 117.395 31.5195 118.218 31.5195C118.923 31.5195 119.465 31.6571 119.851 31.9322C120.234 32.2073 120.487 32.6243 120.612 33.1855L119.732 33.3732C119.67 33.0086 119.52 32.7444 119.283 32.5763C119.046 32.4082 118.69 32.3252 118.218 32.3252C117.632 32.3252 117.199 32.4453 116.919 32.6833C116.638 32.9213 116.499 33.2793 116.499 33.7575C116.499 34.2357 116.638 34.5938 116.919 34.8317C117.199 35.0697 117.632 35.1898 118.218 35.1898C118.711 35.1898 119.069 35.1025 119.294 34.93C119.518 34.7575 119.666 34.4802 119.734 34.0981L120.614 34.2859C120.489 34.8579 120.233 35.2881 119.848 35.5719C119.461 35.8558 118.92 35.9977 118.221 35.9977C117.395 35.9999 116.752 35.8055 116.287 35.4125Z' fill='%2310312B'/%3E%3Cpath d='M122.481 35.4125C122.007 35.0217 121.77 34.4715 121.77 33.7597C121.77 33.0435 122.007 32.4911 122.481 32.1025C122.955 31.7139 123.587 31.5195 124.378 31.5195C125.183 31.5195 125.819 31.716 126.291 32.1069C126.76 32.4977 126.997 33.0479 126.997 33.7597C126.997 34.4759 126.76 35.0283 126.286 35.4169C125.812 35.8055 125.176 35.9999 124.378 35.9999C123.587 35.9999 122.955 35.8055 122.481 35.4125ZM125.655 34.8448C125.937 34.6112 126.081 34.251 126.081 33.7619C126.081 33.2793 125.946 32.9191 125.675 32.6833C125.404 32.4475 124.973 32.3296 124.38 32.3296C123.806 32.3296 123.382 32.4497 123.104 32.6876C122.826 32.9256 122.689 33.2837 122.689 33.7619C122.689 34.2575 122.832 34.62 123.12 34.8492C123.407 35.0785 123.826 35.1942 124.383 35.1942C124.946 35.1942 125.372 35.0785 125.655 34.8448Z' fill='%2310312B'/%3E%3Cpath d='M132.587 31.9982C132.904 32.3148 133.063 32.7843 133.063 33.4043V35.9109H132.156V33.6183C132.156 33.1751 132.049 32.8498 131.835 32.638C131.62 32.4262 131.294 32.3192 130.857 32.3192C130.364 32.3192 129.986 32.4568 129.721 32.7362C129.457 33.0135 129.325 33.424 129.325 33.9677V35.9109H128.408V31.614H129.183L129.322 32.769H129.341C129.491 32.376 129.719 32.0681 130.027 31.8519C130.335 31.6336 130.717 31.5244 131.171 31.5244C131.798 31.5223 132.268 31.6816 132.587 31.9982Z' fill='%2310312B'/%3E%3Cpath d='M135.19 35.6592C134.789 35.4322 134.547 35.1156 134.465 34.7095L135.316 34.5042C135.377 34.7903 135.521 35.002 135.746 35.1396C135.97 35.2772 136.289 35.3448 136.699 35.3448C137.062 35.3448 137.338 35.2924 137.527 35.1876C137.716 35.0828 137.812 34.93 137.812 34.7269C137.805 34.5588 137.723 34.4278 137.563 34.3339C137.404 34.2379 137.148 34.1614 136.793 34.1003L135.867 33.9562C135.436 33.8973 135.113 33.7619 134.894 33.5479C134.675 33.3361 134.568 33.0654 134.568 32.7379C134.568 32.3492 134.734 32.0501 135.067 31.8383C135.4 31.6265 135.872 31.5195 136.483 31.5195C137.68 31.5195 138.393 31.9715 138.623 32.8711L137.782 33.0414C137.725 32.7444 137.591 32.5173 137.376 32.3645C137.162 32.2117 136.877 32.1374 136.522 32.1374C136.18 32.1374 135.92 32.1877 135.742 32.2903C135.564 32.3929 135.475 32.537 135.475 32.7291C135.489 33.0283 135.737 33.216 136.223 33.2924L137.278 33.4453C137.753 33.5108 138.111 33.6483 138.354 33.8579C138.598 34.0676 138.719 34.3383 138.719 34.6724C138.719 35.0959 138.539 35.4234 138.177 35.6527C137.814 35.882 137.308 35.9977 136.654 35.9977C136.079 35.9999 135.591 35.8863 135.19 35.6592Z' fill='%2310312B'/%3E%3Cpath d='M141.626 32.3821V35.1048L141.653 35.131H143.092V35.9105H141.765C141.427 35.9105 141.168 35.8231 140.985 35.6463C140.801 35.4694 140.709 35.2205 140.709 34.8974V32.3821L140.167 32.3908H139.558V31.6113H140.167L140.709 31.6201L140.924 30.2686H141.626V31.6201L142.205 31.6113H143.215V32.3908H142.205L141.626 32.3821Z' fill='%2310312B'/%3E%3Cpath d='M145.451 31.6131L145.581 32.7855H145.599C145.729 32.3554 145.955 32.0476 146.276 31.8598C146.598 31.672 146.997 31.5781 147.478 31.5781C147.557 31.5781 147.699 31.5847 147.897 31.5956L147.767 32.41C147.63 32.3991 147.523 32.3925 147.448 32.3925C146.912 32.3925 146.468 32.5432 146.117 32.8445C145.763 33.1458 145.588 33.5825 145.588 34.1567V35.9122H144.671V31.6152H145.451V31.6131Z' fill='%2310312B'/%3E%3Cpath d='M153.779 35.9102H153.013L152.874 34.7552H152.855C152.723 35.1679 152.502 35.4779 152.192 35.6875C151.88 35.8971 151.492 35.9997 151.023 35.9997C150.4 35.9997 149.926 35.8425 149.607 35.5259C149.286 35.2093 149.126 34.7421 149.126 34.1198V31.6133H150.042V33.9058C150.042 34.3491 150.15 34.6744 150.366 34.8862C150.58 35.098 150.906 35.205 151.344 35.205C151.83 35.205 152.208 35.0674 152.475 34.7879C152.744 34.5107 152.876 34.1002 152.876 33.5565V31.6133H153.783V35.9102H153.779Z' fill='%2310312B'/%3E%3Cpath d='M157.136 32.3821V35.1048L157.164 35.131H158.605V35.9105H157.278C156.94 35.9105 156.681 35.8231 156.496 35.6463C156.311 35.4694 156.22 35.2205 156.22 34.8974V32.3821L155.678 32.3908H155.069V31.6113H155.678L156.22 31.6201L156.434 30.2686H157.134V31.6201L157.713 31.6113H158.723V32.3908H157.713L157.136 32.3821Z' fill='%2310312B'/%3E%3Cpath d='M160.538 35.4125C160.064 35.0217 159.827 34.4715 159.827 33.7597C159.827 33.0435 160.064 32.4911 160.538 32.1025C161.012 31.7139 161.644 31.5195 162.437 31.5195C163.242 31.5195 163.878 31.716 164.347 32.1069C164.819 32.4977 165.054 33.0479 165.054 33.7597C165.054 34.4759 164.817 35.0283 164.343 35.4169C163.868 35.8055 163.235 35.9999 162.437 35.9999C161.646 35.9999 161.012 35.8055 160.538 35.4125ZM163.713 34.8448C163.996 34.6112 164.14 34.251 164.14 33.7619C164.14 33.2793 164.005 32.9191 163.734 32.6833C163.463 32.4475 163.032 32.3296 162.439 32.3296C161.865 32.3296 161.441 32.4497 161.163 32.6876C160.884 32.9256 160.745 33.2837 160.745 33.7619C160.745 34.2575 160.889 34.62 161.176 34.8492C161.463 35.0785 161.883 35.1942 162.439 35.1942C163.004 35.1942 163.429 35.0785 163.713 34.8448Z' fill='%2310312B'/%3E%3Cpath d='M167.242 31.6131L167.372 32.7855H167.39C167.52 32.3554 167.746 32.0476 168.067 31.8598C168.389 31.672 168.788 31.5781 169.269 31.5781C169.349 31.5781 169.49 31.5847 169.691 31.5956L169.558 32.41C169.422 32.3991 169.314 32.3925 169.241 32.3925C168.706 32.3925 168.261 32.5432 167.91 32.8445C167.559 33.1458 167.381 33.5825 167.381 34.1567V35.9122H166.465V31.6152H167.242V31.6131Z' fill='%2310312B'/%3E%3Cpath d='M174.416 31.9344C174.806 32.2095 175 32.6025 175 33.1156V35.9082H174.234L174.113 34.8252H174.095C173.958 35.2007 173.721 35.4911 173.388 35.6942C173.055 35.8972 172.657 35.9977 172.196 35.9977C171.679 35.9977 171.268 35.8929 170.967 35.6854C170.664 35.4758 170.514 35.1898 170.514 34.8252C170.514 34.5152 170.6 34.2728 170.776 34.1003C170.951 33.9278 171.229 33.7903 171.612 33.6876C171.995 33.585 172.579 33.478 173.366 33.3645L174.122 33.2488L174.113 33.0697C174.095 32.5021 173.673 32.2182 172.85 32.2182C172.419 32.2182 172.103 32.2946 171.897 32.4453C171.692 32.5981 171.574 32.8383 171.542 33.1658L170.776 32.9868C170.819 32.5086 171.031 32.1462 171.412 31.8951C171.793 31.644 172.278 31.5195 172.871 31.5195C173.511 31.5217 174.027 31.6593 174.416 31.9344ZM173.295 35.1593C173.552 35.0152 173.758 34.8208 173.908 34.5719C174.059 34.3252 174.129 34.0479 174.122 33.7444L173.384 33.8514C172.88 33.9344 172.502 34.0042 172.253 34.0632C172.005 34.12 171.802 34.2007 171.644 34.3099C171.489 34.4169 171.41 34.5676 171.41 34.7575C171.41 34.954 171.501 35.1069 171.681 35.2138C171.861 35.3208 172.123 35.3754 172.467 35.3754C172.759 35.3732 173.035 35.3012 173.295 35.1593Z' fill='%2310312B'/%3E%3C/svg%3E%0A");
}

body.page-id-17052 header i.logo-planeta.logo-planeta-header,
body.page-id-17049 header i.logo-planeta.logo-planeta-header,
body.page-id-17045 header i.logo-planeta.logo-planeta-header,
body.page-id-29 header i.logo-planeta.logo-planeta-header,
body.page-id-17 header i.logo-planeta.logo-planeta-header,
body.page-id-83 header i.logo-planeta.logo-planeta-header,
body.page-id-17066 header i.logo-planeta.logo-planeta-header,
body.page-id-17530 header i.logo-planeta.logo-planeta-header,
body.search.search-results header i.logo-planeta.logo-planeta-header {
  background-image: url("data:image/svg+xml,%3Csvg width='175' height='36' viewBox='0 0 175 36' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48.1804 17.5593V24.8322H46.8081C45.4198 24.8322 44.2959 23.7536 44.2959 22.4261V5.21875H56.1136C62.1479 5.21875 64.7421 7.28861 64.7421 11.4021C64.7421 15.5156 62.1479 17.5593 56.1136 17.5593H48.1804ZM48.1804 8.12049V14.6576H56.0863C59.0635 14.6576 60.8827 13.5964 60.8827 11.4021C60.8827 9.20781 59.0635 8.12049 56.0863 8.12049H48.1804Z' fill='%2310312B'/%3E%3Cpath d='M67.2041 6.40918H71.2003V24.8327H69.7277C68.3325 24.8327 67.2041 23.7497 67.2041 22.4157V6.40918Z' fill='%2310312B'/%3E%3Cpath d='M76.772 13.0196C78.2469 11.7335 80.2439 11.1025 82.8176 11.1025C85.4916 11.1025 87.5639 11.834 89.0388 13.299H89.1642L89.3899 11.406H93.1627V24.8317H89.5403L89.2896 22.6352H89.1642C87.6414 24.275 85.5167 25.0828 82.8199 25.0828C80.2462 25.0828 78.2492 24.4518 76.7743 23.1658C75.2993 21.8776 74.5767 20.1877 74.5767 18.0676C74.5744 15.9737 75.2993 14.3078 76.772 13.0196ZM83.8913 22.4082C85.3914 22.4082 87.2698 22.0872 89.0867 20.2925V18.0414V14.9759C87.899 14.0436 85.3891 13.4999 83.8663 13.4999C80.7431 13.4999 78.6459 15.4169 78.6459 18.0676C78.6459 20.7684 80.7682 22.4082 83.8913 22.4082Z' fill='%2310312B'/%3E%3Cpath d='M157.563 13.0196C159.038 11.7335 161.035 11.1025 163.609 11.1025C166.283 11.1025 168.355 11.834 169.83 13.299H169.955L170.181 11.406H173.954V24.8317H170.331L170.081 22.6352H169.955C168.432 24.275 166.308 25.0828 163.611 25.0828C161.037 25.0828 159.04 24.4518 157.565 23.1658C156.09 21.8776 155.368 20.1877 155.368 18.0676C155.363 15.9737 156.088 14.3078 157.563 13.0196ZM164.682 22.4082C166.182 22.4082 168.061 22.0872 169.878 20.2925V18.0414V14.9759C168.69 14.0436 166.18 13.4999 164.657 13.4999C161.534 13.4999 159.437 15.4169 159.437 18.0676C159.437 20.7684 161.559 22.4082 164.682 22.4082Z' fill='%2310312B'/%3E%3Cpath d='M113.796 12.9963C115.196 14.2583 115.895 15.9483 115.895 18.0683V24.8325H111.824V18.0683C111.824 15.3675 109.749 13.778 106.578 13.778C103.455 13.778 101.358 15.3937 101.358 18.0181V24.8325H97.3618V11.4068H100.984L101.21 13.3762H101.335C102.908 11.8609 105.158 11.1055 108.031 11.1055C110.497 11.1033 112.421 11.7343 113.796 12.9963Z' fill='%2310312B'/%3E%3Cpath d='M137.153 19.2539H123.363C123.862 21.4744 125.887 22.3587 129.66 22.3587C130.758 22.3587 131.932 22.2321 133.182 21.981C134.456 21.7277 135.455 21.4504 136.205 21.1229V24.0246C135.379 24.3019 134.205 24.5552 132.708 24.7823C131.233 24.9831 129.86 25.0858 128.636 25.0858C122.615 25.0858 119.068 22.588 119.068 18.1207C119.068 16.0268 119.894 14.3347 121.517 13.0487C123.14 11.7627 125.34 11.1055 128.087 11.1055C130.859 11.1055 133.084 11.7103 134.707 12.9221C136.33 14.1338 137.155 15.7736 137.155 17.8696V19.2539H137.153ZM132.956 17.0596C132.856 14.9657 131.032 13.7539 128.059 13.7539C125.561 13.7539 123.662 15.0661 123.363 17.0596H132.956Z' fill='%2310312B'/%3E%3Cpath d='M154.041 22.131V24.8559C152.967 25.0066 151.966 25.083 151.093 25.083C148.221 25.083 146.096 24.6026 144.749 23.6703C143.424 22.7358 142.75 21.0459 142.75 18.6485V13.9804H138.478V11.4062H142.75V7.16602H146.746V11.4062H153.592V13.9804H146.746V18.4978C146.746 21.1987 147.995 22.3341 151.317 22.3341L154.041 22.131Z' fill='%2310312B'/%3E%3Cpath d='M0.000833511 13.3379L13.9272 13.3379L13.9272 -0.000481606L0.000833511 -0.000481606L0.000833511 13.3379Z' fill='%2310312B'/%3E%3Cpath d='M0 15.3447H13.9264V28.6831H8.8519C3.96432 28.6831 0.00228014 24.8884 0.00228014 20.2071V15.3447H0Z' fill='%2310312B'/%3E%3Cpath d='M30.0711 6.67005C30.0711 10.3513 26.9343 13.3381 23.0612 13.3381H16.0513V0.00195313H23.0612C26.9343 0.00195312 30.0711 2.98666 30.0711 6.67005Z' fill='%2310312B'/%3E%3Cpath d='M23.0612 28.5549C26.9327 28.5549 30.0711 25.5695 30.0711 21.8868C30.0711 18.2042 26.9327 15.2188 23.0612 15.2188C19.1897 15.2188 16.0513 18.2042 16.0513 21.8868C16.0513 25.5695 19.1897 28.5549 23.0612 28.5549Z' fill='%232C6650'/%3E%3Cpath d='M116.287 35.4125C115.822 35.0217 115.59 34.4715 115.59 33.7597C115.59 33.0479 115.822 32.4977 116.287 32.1069C116.752 31.716 117.395 31.5195 118.218 31.5195C118.923 31.5195 119.465 31.6571 119.851 31.9322C120.234 32.2073 120.487 32.6243 120.612 33.1855L119.732 33.3732C119.67 33.0086 119.52 32.7444 119.283 32.5763C119.046 32.4082 118.69 32.3252 118.218 32.3252C117.632 32.3252 117.199 32.4453 116.919 32.6833C116.638 32.9213 116.499 33.2793 116.499 33.7575C116.499 34.2357 116.638 34.5938 116.919 34.8317C117.199 35.0697 117.632 35.1898 118.218 35.1898C118.711 35.1898 119.069 35.1025 119.294 34.93C119.518 34.7575 119.666 34.4802 119.734 34.0981L120.614 34.2859C120.489 34.8579 120.233 35.2881 119.848 35.5719C119.461 35.8558 118.92 35.9977 118.221 35.9977C117.395 35.9999 116.752 35.8055 116.287 35.4125Z' fill='%2310312B'/%3E%3Cpath d='M122.481 35.4125C122.007 35.0217 121.77 34.4715 121.77 33.7597C121.77 33.0435 122.007 32.4911 122.481 32.1025C122.955 31.7139 123.587 31.5195 124.378 31.5195C125.183 31.5195 125.819 31.716 126.291 32.1069C126.76 32.4977 126.997 33.0479 126.997 33.7597C126.997 34.4759 126.76 35.0283 126.286 35.4169C125.812 35.8055 125.176 35.9999 124.378 35.9999C123.587 35.9999 122.955 35.8055 122.481 35.4125ZM125.655 34.8448C125.937 34.6112 126.081 34.251 126.081 33.7619C126.081 33.2793 125.946 32.9191 125.675 32.6833C125.404 32.4475 124.973 32.3296 124.38 32.3296C123.806 32.3296 123.382 32.4497 123.104 32.6876C122.826 32.9256 122.689 33.2837 122.689 33.7619C122.689 34.2575 122.832 34.62 123.12 34.8492C123.407 35.0785 123.826 35.1942 124.383 35.1942C124.946 35.1942 125.372 35.0785 125.655 34.8448Z' fill='%2310312B'/%3E%3Cpath d='M132.587 31.9982C132.904 32.3148 133.063 32.7843 133.063 33.4043V35.9109H132.156V33.6183C132.156 33.1751 132.049 32.8498 131.835 32.638C131.62 32.4262 131.294 32.3192 130.857 32.3192C130.364 32.3192 129.986 32.4568 129.721 32.7362C129.457 33.0135 129.325 33.424 129.325 33.9677V35.9109H128.408V31.614H129.183L129.322 32.769H129.341C129.491 32.376 129.719 32.0681 130.027 31.8519C130.335 31.6336 130.717 31.5244 131.171 31.5244C131.798 31.5223 132.268 31.6816 132.587 31.9982Z' fill='%2310312B'/%3E%3Cpath d='M135.19 35.6592C134.789 35.4322 134.547 35.1156 134.465 34.7095L135.316 34.5042C135.377 34.7903 135.521 35.002 135.746 35.1396C135.97 35.2772 136.289 35.3448 136.699 35.3448C137.062 35.3448 137.338 35.2924 137.527 35.1876C137.716 35.0828 137.812 34.93 137.812 34.7269C137.805 34.5588 137.723 34.4278 137.563 34.3339C137.404 34.2379 137.148 34.1614 136.793 34.1003L135.867 33.9562C135.436 33.8973 135.113 33.7619 134.894 33.5479C134.675 33.3361 134.568 33.0654 134.568 32.7379C134.568 32.3492 134.734 32.0501 135.067 31.8383C135.4 31.6265 135.872 31.5195 136.483 31.5195C137.68 31.5195 138.393 31.9715 138.623 32.8711L137.782 33.0414C137.725 32.7444 137.591 32.5173 137.376 32.3645C137.162 32.2117 136.877 32.1374 136.522 32.1374C136.18 32.1374 135.92 32.1877 135.742 32.2903C135.564 32.3929 135.475 32.537 135.475 32.7291C135.489 33.0283 135.737 33.216 136.223 33.2924L137.278 33.4453C137.753 33.5108 138.111 33.6483 138.354 33.8579C138.598 34.0676 138.719 34.3383 138.719 34.6724C138.719 35.0959 138.539 35.4234 138.177 35.6527C137.814 35.882 137.308 35.9977 136.654 35.9977C136.079 35.9999 135.591 35.8863 135.19 35.6592Z' fill='%2310312B'/%3E%3Cpath d='M141.626 32.3821V35.1048L141.653 35.131H143.092V35.9105H141.765C141.427 35.9105 141.168 35.8231 140.985 35.6463C140.801 35.4694 140.709 35.2205 140.709 34.8974V32.3821L140.167 32.3908H139.558V31.6113H140.167L140.709 31.6201L140.924 30.2686H141.626V31.6201L142.205 31.6113H143.215V32.3908H142.205L141.626 32.3821Z' fill='%2310312B'/%3E%3Cpath d='M145.451 31.6131L145.581 32.7855H145.599C145.729 32.3554 145.955 32.0476 146.276 31.8598C146.598 31.672 146.997 31.5781 147.478 31.5781C147.557 31.5781 147.699 31.5847 147.897 31.5956L147.767 32.41C147.63 32.3991 147.523 32.3925 147.448 32.3925C146.912 32.3925 146.468 32.5432 146.117 32.8445C145.763 33.1458 145.588 33.5825 145.588 34.1567V35.9122H144.671V31.6152H145.451V31.6131Z' fill='%2310312B'/%3E%3Cpath d='M153.779 35.9102H153.013L152.874 34.7552H152.855C152.723 35.1679 152.502 35.4779 152.192 35.6875C151.88 35.8971 151.492 35.9997 151.023 35.9997C150.4 35.9997 149.926 35.8425 149.607 35.5259C149.286 35.2093 149.126 34.7421 149.126 34.1198V31.6133H150.042V33.9058C150.042 34.3491 150.15 34.6744 150.366 34.8862C150.58 35.098 150.906 35.205 151.344 35.205C151.83 35.205 152.208 35.0674 152.475 34.7879C152.744 34.5107 152.876 34.1002 152.876 33.5565V31.6133H153.783V35.9102H153.779Z' fill='%2310312B'/%3E%3Cpath d='M157.136 32.3821V35.1048L157.164 35.131H158.605V35.9105H157.278C156.94 35.9105 156.681 35.8231 156.496 35.6463C156.311 35.4694 156.22 35.2205 156.22 34.8974V32.3821L155.678 32.3908H155.069V31.6113H155.678L156.22 31.6201L156.434 30.2686H157.134V31.6201L157.713 31.6113H158.723V32.3908H157.713L157.136 32.3821Z' fill='%2310312B'/%3E%3Cpath d='M160.538 35.4125C160.064 35.0217 159.827 34.4715 159.827 33.7597C159.827 33.0435 160.064 32.4911 160.538 32.1025C161.012 31.7139 161.644 31.5195 162.437 31.5195C163.242 31.5195 163.878 31.716 164.347 32.1069C164.819 32.4977 165.054 33.0479 165.054 33.7597C165.054 34.4759 164.817 35.0283 164.343 35.4169C163.868 35.8055 163.235 35.9999 162.437 35.9999C161.646 35.9999 161.012 35.8055 160.538 35.4125ZM163.713 34.8448C163.996 34.6112 164.14 34.251 164.14 33.7619C164.14 33.2793 164.005 32.9191 163.734 32.6833C163.463 32.4475 163.032 32.3296 162.439 32.3296C161.865 32.3296 161.441 32.4497 161.163 32.6876C160.884 32.9256 160.745 33.2837 160.745 33.7619C160.745 34.2575 160.889 34.62 161.176 34.8492C161.463 35.0785 161.883 35.1942 162.439 35.1942C163.004 35.1942 163.429 35.0785 163.713 34.8448Z' fill='%2310312B'/%3E%3Cpath d='M167.242 31.6131L167.372 32.7855H167.39C167.52 32.3554 167.746 32.0476 168.067 31.8598C168.389 31.672 168.788 31.5781 169.269 31.5781C169.349 31.5781 169.49 31.5847 169.691 31.5956L169.558 32.41C169.422 32.3991 169.314 32.3925 169.241 32.3925C168.706 32.3925 168.261 32.5432 167.91 32.8445C167.559 33.1458 167.381 33.5825 167.381 34.1567V35.9122H166.465V31.6152H167.242V31.6131Z' fill='%2310312B'/%3E%3Cpath d='M174.416 31.9344C174.806 32.2095 175 32.6025 175 33.1156V35.9082H174.234L174.113 34.8252H174.095C173.958 35.2007 173.721 35.4911 173.388 35.6942C173.055 35.8972 172.657 35.9977 172.196 35.9977C171.679 35.9977 171.268 35.8929 170.967 35.6854C170.664 35.4758 170.514 35.1898 170.514 34.8252C170.514 34.5152 170.6 34.2728 170.776 34.1003C170.951 33.9278 171.229 33.7903 171.612 33.6876C171.995 33.585 172.579 33.478 173.366 33.3645L174.122 33.2488L174.113 33.0697C174.095 32.5021 173.673 32.2182 172.85 32.2182C172.419 32.2182 172.103 32.2946 171.897 32.4453C171.692 32.5981 171.574 32.8383 171.542 33.1658L170.776 32.9868C170.819 32.5086 171.031 32.1462 171.412 31.8951C171.793 31.644 172.278 31.5195 172.871 31.5195C173.511 31.5217 174.027 31.6593 174.416 31.9344ZM173.295 35.1593C173.552 35.0152 173.758 34.8208 173.908 34.5719C174.059 34.3252 174.129 34.0479 174.122 33.7444L173.384 33.8514C172.88 33.9344 172.502 34.0042 172.253 34.0632C172.005 34.12 171.802 34.2007 171.644 34.3099C171.489 34.4169 171.41 34.5676 171.41 34.7575C171.41 34.954 171.501 35.1069 171.681 35.2138C171.861 35.3208 172.123 35.3754 172.467 35.3754C172.759 35.3732 173.035 35.3012 173.295 35.1593Z' fill='%2310312B'/%3E%3C/svg%3E%0A");
}

header .section-menu #icons-search-open-menu .search.search-icon.icon-green {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.9992 20.9992L16.6992 16.6992' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

body.page-id-17052 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-17049 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-17045 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-29 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-17 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-83 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-17066 header .section-menu #icons-search-open-menu .search.search-icon,
body.page-id-17530 header .section-menu #icons-search-open-menu .search.search-icon,
body.search.search-results header .section-menu #icons-search-open-menu .search.search-icon {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 19C15.4183 19 19 15.4183 19 11C19 6.58172 15.4183 3 11 3C6.58172 3 3 6.58172 3 11C3 15.4183 6.58172 19 11 19Z' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M20.9992 20.9992L16.6992 16.6992' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

header .section-menu #icons-search-open-menu #open-menu.open-menu-green {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 6H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

body.page-id-17052 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-17049 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-17045 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-29 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-17 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-83 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-17066 header .section-menu #icons-search-open-menu #open-menu,
body.page-id-17530 header .section-menu #icons-search-open-menu #open-menu,
body.search.search-results .section-menu #icons-search-open-menu #open-menu {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 6H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 18H20' stroke='%232C6650' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

header#header-page-17530 {
  background: #fff;
}

header div#search-results {
  height: 80vh;
  overflow-y: scroll;
}

header div#search-results::-webkit-scrollbar {
  width: 5px;
}

header div#search-results::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

header div#search-results::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

header div#search-results {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
