.sidemenu__list__item__link, .sidemenu__list__item__link i {
  transition: all 0.5s ease-in-out;
}

.banner__pages {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 193px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner__pages__title {
  font-size: 2.25rem;
  color: #FFFFFF;
  font-weight: 900;
  margin-bottom: 14px;
}
@media (max-width: 599px) {
  .banner__pages__title {
    font-size: 1.875rem;
  }
}
.banner__pages__title::after {
  content: "";
  display: block;
  height: 2px;
  max-width: 600px;
  background-color: #FFFFFF;
  margin-top: 5px;
  border-radius: 4px;
}
.banner__pages__subtitle {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 599px) {
  .banner__pages__subtitle {
    font-size: 1.125rem;
  }
}
.banner__pages__link {
  color: #7A9B84;
  background-color: #d7e1da;
  padding: 14px 70px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in;
}
.banner__pages__link:hover {
  color: #4e7b78;
}
@media (max-width: 599px) {
  .banner__pages__link {
    font-size: 1rem;
    padding: 14px 40px;
  }
}
.banner__pages .breadcrumb-item {
  color: #FFFFFF;
  font-size: 1.125rem;
}
.banner__pages .breadcrumb-item__link {
  text-decoration: none;
}
.banner__pages .breadcrumb-item__link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}
.banner__pages .breadcrumb-item::before {
  color: #FFFFFF;
}
@media (max-width: 599px) {
  .banner__pages .breadcrumb-item {
    font-size: 0.875rem;
  }
}

.sidemenu__title {
  color: #7A9B84;
  font-weight: 900;
  font-size: 1.125rem;
}
.sidemenu__subTitle {
  color: rgba(0, 0, 0, 0.53);
  font-size: 0.875rem;
}
.sidemenu__list__item {
  margin-bottom: 5px;
}
.sidemenu__list__item__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.53);
  padding: 10px 15px;
  border-radius: 5px;
}
.sidemenu__list__item__link i {
  color: #FFFFFF;
  background-color: #7A9B84;
  padding: 5px 9px;
  border-radius: 50%;
}
@media (max-width: 599px) {
  .sidemenu__list__item__link {
    font-size: 0.875rem;
  }
}
.sidemenu__list__item__link.sidemenu__list__item__link__active {
  color: #4e7b78;
}
.sidemenu__list__item__link:hover {
  color: #4e7b78;
}
.sidemenu__list__item__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #eaecee;
}
.sidemenu__list__toggle {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin-top: 5px;
  border: none;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: #4e7b78;
  cursor: pointer;
}
.sidemenu__list__toggle i {
  color: #4e7b78;
}

.hidden-toggle {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin: 0 !important;
  padding: 0 !important;
}
.hidden-toggle.show {
  max-height: 500px;
  opacity: 1;
  margin: initial !important;
  padding: initial !important;
  overflow: visible;
}

.publication__item {
  background-color: #FFFFFF;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publication__item__article {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.publication__item__article__date {
  font-size: 0.875rem;
}
.publication__item__article__category {
  color: #D1E1DD;
}
.publication__item__article__title {
  color: #7A9B84;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
@media (max-width: 599px) {
  .publication__item__article__title {
    font-size: 1.125rem;
  }
}
.publication__item__article__description p {
  color: #595959;
}
.publication__item__figure img {
  border-radius: 20px;
}
.publication__item__image {
  width: 100%;
  height: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.publication__item-gallery__title {
  font-size: 1.875rem;
}
.publication__item-gallery__title::after {
  margin-right: unset;
  margin-left: unset;
}
@media (min-width: 600px) {
  .publication__item__item {
    display: grid;
    grid-template-columns: 240px auto;
    grid-template-rows: auto;
    gap: 1rem;
  }
  .publication__item__figure {
    margin-bottom: unset;
  }
  .publication__item__image {
    width: 175px;
    height: 100%;
  }
}

.news__content {
  margin-left: 30px !important;
}
@media (max-width: 599px) {
  .news__content {
    margin-left: 0 !important;
  }
}
.news__content__title {
  font-size: 2.25rem;
  color: #7A9B84;
  font-weight: 600;
}
@media (max-width: 599px) {
  .news__content__title {
    font-size: 1.5rem;
  }
}
.news__content__section figure {
  float: right;
  margin-left: 10px;
  max-width: 350px;
}
@media (max-width: 599px) {
  .news__content__section figure {
    margin-left: 0;
  }
}
.news__content__section__img {
  border-radius: 10px;
}
.news__content h3 {
  font-size: 1.5rem;
  color: #7A9B84;
}
@media (max-width: 599px) {
  .news__content h3 {
    font-size: 1.25rem;
  }
}
