@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Serif 4", sans-serif;
  letter-spacing: 1px;
  text-shadow: rgba(12, 24, 33, 0.3882352941) 0px 0px 1px;
}
* a {
  text-decoration: none;
  color: inherit;
}
* .arrow {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 5px;
  align-items: center;
}
* .arrow svg {
  width: 14px;
  height: 14px;
}
* .header {
  position: relative;
  font-family: "Playfair", serif;
}
* .header ul {
  list-style-type: none;
}
* .header:not(.header-home) {
  height: 30vw;
}
* .header .header-content {
  position: absolute;
  text-align: left;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.316);
}
* .header .header-content .header-title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
* .header .header-content h2 {
  font-family: "Playfair", serif;
  font-size: 58px;
  border-radius: 8px;
  font-weight: bold;
  text-transform: capitalize;
}
* .header .header-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 400px;
}
* .page-content {
  margin: 0 auto;
  padding: 0;
  background-color: white;
}
* .page-content h3 {
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  position: relative;
  font-family: "Playfair", serif;
}
* .page-content h4 {
  font-size: 1.5rem;
  font-weight: normal;
}
* .page-content p, * .page-content ul {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
* .page-content p strong, * .page-content ul strong {
  font-weight: 900;
}
* .page-content ul {
  margin-left: 40px;
}
* .page-content section {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  text-align: justify;
}
* .page-content section > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
* .page-content .fade-in-left {
  opacity: 0;
}
* .page-content .fade-in-left.active {
  animation: fade-in-left 1.5s ease both;
}
* .page-content .fade-in-right {
  opacity: 0;
}
* .page-content .fade-in-right.active {
  animation: fade-in-right 1.5s ease both;
}
* .page-content .fade-in-up {
  opacity: 0;
}
* .page-content .fade-in-up.active {
  animation: fade-in-up 1.5s ease-out both;
}
* .page-content .date {
  background-color: #e1e4d8;
  padding: 5px 10px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
* .page-content .read-more {
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
* .page-content .read-more:hover {
  background-color: #e0e0e0;
}
* .page-content .back {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #f5f5f5;
  padding: 10px 20px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
* .page-content .back svg {
  width: 16px;
  height: 16px;
}
* .page-content .back:hover {
  background-color: #e0e0e0;
}

@keyframes fade-in-right-absolute {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    transform: translateX(50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down-title {
  0% {
    opacity: 0;
    top: 40%;
  }
  100% {
    top: 50%;
  }
}
@keyframes fade-in-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1.08);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
nav {
  padding: 2px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.448);
  z-index: 2;
  text-shadow: rgba(12, 24, 33, 0.1843137255) 4px 4px 2px;
  position: sticky;
  top: 0;
  transition: all 0.3s ease-in-out;
}
nav .logo {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
nav .logo img {
  width: 100px;
  height: 100px;
}
nav .links {
  width: 100%;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}
nav .links .close {
  display: none;
}
nav .links ul.menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  list-style-type: none;
}
nav .links ul.menu li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
nav .links ul.menu li::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #16342f;
  transition: all 0.5s;
}
nav .links ul.menu li:hover::after {
  width: 100%;
}
nav .links ul.menu li a {
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
nav .links ul.menu li:last-child a {
  color: white;
  background-color: #16342f;
  padding: 14px 20px;
}
nav .links ul.menu li:last-child:hover a {
  background-color: rgb(6.8378378378, 16.1621621622, 14.6081081081);
}
nav .links ul.menu li:last-child:hover::after {
  width: 0;
}
nav .links ul.menu .link-hover {
  position: relative;
}
nav .links ul.menu .link-hover ul {
  width: 200%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  position: absolute;
  left: 0;
  transform-origin: top;
  z-index: 1;
  transform: scaleY(0);
  transform: translateX(-50%);
  opacity: 0;
  background: white;
  transition: all 0.5s;
}
nav .links ul.menu .link-hover ul li {
  padding: 0;
  font-size: 14px;
  width: 100%;
}
nav .links ul.menu .link-hover:hover ul {
  transform: scaleY(1);
  transform: translate(-25%);
  opacity: 1;
  border-radius: 0 0 5px 5px;
}
nav .burger {
  display: none;
}
nav.scrolled {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 3px 7px rgb(0, 0, 0);
}
nav.scrolled .links ul li, nav.scrolled .logo h1 {
  color: rgb(0, 0, 0);
}
nav.scrolled .links ul li:hover {
  color: #0e4773;
}
nav.scrolled ul.menu .link-hover ul {
  background: rgb(255, 255, 255);
}

.home-page .header-home {
  position: relative;
  height: 700px;
}
.home-page .header-home .mySwiper {
  height: 100%;
}
.home-page .header-home .mySwiper .swiper-wrapper {
  height: 100%;
}
.home-page .header-home .mySwiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
.home-page .header-home .mySwiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .header-home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.516);
  z-index: 1;
}
.home-page .header-home .overlay .overlay-content {
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page .header-home .overlay .overlay-content h1, .home-page .header-home .overlay .overlay-content p {
  color: white;
  text-align: left;
  animation: none;
  position: static;
}
.home-page .header-home .overlay .overlay-content h1 {
  font-size: 60px;
  font-family: "Playfair", serif;
}
.home-page .header-home .overlay .overlay-content .buttons {
  display: flex;
  gap: 20px;
}
.home-page .header-home .overlay .overlay-content .buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-page .header-home .overlay .overlay-content .buttons a svg {
  width: 20px;
  height: 20px;
  fill: white;
}
.home-page .header-home .overlay .overlay-content .buttons a.green {
  padding: 10px 20px;
  background-color: #16342f;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.home-page .header-home .overlay .overlay-content .buttons a.green:hover {
  background-color: rgb(6.8378378378, 16.1621621622, 14.6081081081);
}
.home-page .header-home .overlay .overlay-content .buttons a.white {
  padding: 8px 20px;
  background-color: transparent;
  color: white;
  font-weight: 500;
  border: 1px solid white;
  transition: all 0.3s ease-in-out;
}
.home-page .header-home .overlay .overlay-content .buttons a.white:hover {
  background-color: white;
  color: #16342f;
}
.home-page .header-home .overlay .overlay-content .buttons a.white:hover svg {
  fill: #16342f;
}
.home-page .mySwiper .swiper-slide {
  width: 100%;
  height: 400px;
}
.home-page .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .page-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0;
}
.home-page .page-content .card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}
.home-page .page-content .card .text {
  display: flex;
  gap: 5px;
  flex-direction: column;
  color: #16342f;
}
.home-page .page-content .card .text h3 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  font-weight: 300;
  text-transform: capitalize;
}
.home-page .page-content .card .text p {
  font-size: 14px;
}
.home-page .page-content .global-information {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.home-page .page-content .global-information .line {
  width: 1px;
  height: 50px;
  background-color: rgba(31, 54, 42, 0.2509803922);
}
.home-page .page-content .global-information .img {
  width: 120px;
  background-color: #f1f1ed;
  padding: 10px;
  border-radius: 50%;
}
.home-page .page-content .global-information .img svg {
  width: 100%;
  height: 100%;
  fill: #16342f;
}
.home-page .page-content .presentation {
  width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page .page-content .presentation h2 {
  text-align: center;
  color: rgba(60, 60, 60, 0.8039215686);
  margin-bottom: 60px;
}
.home-page .page-content .presentation .presentation-content {
  display: flex;
  align-items: center;
}
.home-page .page-content .presentation .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding: 40px;
  color: rgba(60, 60, 60, 0.8039215686);
}
.home-page .page-content .what-we-do {
  background-color: #f1f1ed;
  position: relative;
  padding: 80px 0;
}
.home-page .page-content .what-we-do h3 {
  color: white;
  margin-bottom: 60px;
}
.home-page .page-content .what-we-do .what-we-do-cards {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work, .home-page .page-content .what-we-do .what-we-do-cards .relevance {
  display: flex;
  height: 300px;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .image, .home-page .page-content .what-we-do .what-we-do-cards .relevance .image {
  width: 55%;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .image img, .home-page .page-content .what-we-do .what-we-do-cards .relevance .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .text, .home-page .page-content .what-we-do .what-we-do-cards .relevance .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  text-align: justify;
  padding: 20px;
  background-color: white;
  border-radius: 20px;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .text hr, .home-page .page-content .what-we-do .what-we-do-cards .relevance .text hr {
  height: 1px;
  width: 100px;
  background-color: rgba(31, 54, 42, 0.2509803922);
  border: none;
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .text h4, .home-page .page-content .what-we-do .what-we-do-cards .our-work .text p, .home-page .page-content .what-we-do .what-we-do-cards .relevance .text h4, .home-page .page-content .what-we-do .what-we-do-cards .relevance .text p {
  color: rgba(60, 60, 60, 0.8039215686);
}
.home-page .page-content .what-we-do .what-we-do-cards .our-work .text svg, .home-page .page-content .what-we-do .what-we-do-cards .relevance .text svg {
  width: 40px;
  height: 40px;
  fill: #16342f;
}
.home-page .page-content .research-topics, .home-page .page-content .who-we-are, .home-page .page-content .last-news {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.home-page .page-content .research-topics .title, .home-page .page-content .who-we-are .title, .home-page .page-content .last-news .title {
  width: 30%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page .page-content .research-topics .title h3, .home-page .page-content .who-we-are .title h3, .home-page .page-content .last-news .title h3 {
  color: rgba(60, 60, 60, 0.8039215686);
  margin: 10px 0 20px;
  text-align: left;
  font-size: 22px;
}
.home-page .page-content .research-topics .title h4, .home-page .page-content .who-we-are .title h4, .home-page .page-content .last-news .title h4 {
  font-size: 16px;
}
.home-page .page-content .research-topics .list-card-container, .home-page .page-content .who-we-are .list-card-container, .home-page .page-content .last-news .list-card-container {
  width: 70%;
  display: flex;
  justify-content: space-between;
}
.home-page .page-content .research-topics .researchs {
  max-width: 1200px;
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
.home-page .page-content .research-topics .list-card-container .topic-card {
  cursor: pointer;
  position: relative;
  width: 30%;
  text-align: center;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease-in-out;
}
.home-page .page-content .research-topics .list-card-container .topic-card .topic-image {
  width: 100%;
  height: 100%;
}
.home-page .page-content .research-topics .list-card-container .topic-card .topic-image img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-page .page-content .research-topics .list-card-container .topic-card .topic-title {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: all 0.3s ease-in-out;
  color: white;
  text-transform: uppercase;
}
.home-page .page-content .research-topics .list-card-container .topic-card .topic-title h4 {
  font-size: 18px;
}
.home-page .page-content .research-topics .list-card-container .topic-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.0784313725);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.home-page .page-content .research-topics .list-card-container .topic-card:hover {
  transform: scale(1.03);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.home-page .page-content .research-topics .list-card-container .topic-card:hover .topic-title {
  top: 45%;
}
.home-page .page-content .research-topics .list-card-container .topic-card:hover .topic-title h4 {
  z-index: 2;
}
.home-page .page-content .who-we-are {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  margin: 40px auto;
  background-color: #f1f1ed;
  padding: 80px;
}
.home-page .page-content .who-we-are h2 {
  text-align: center;
}
.home-page .page-content .who-we-are .list-cards, .home-page .page-content .who-we-are .team {
  max-width: 1200px;
  margin: 0 auto;
}
.home-page .page-content .who-we-are .list-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.home-page .page-content .who-we-are .list-cards .card {
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.home-page .page-content .who-we-are .list-cards .card .img {
  width: 20%;
  min-width: 60px;
  max-width: 80px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50%;
}
.home-page .page-content .who-we-are .list-cards .card .img svg {
  max-width: 40px;
  max-height: 40px;
  fill: white;
  stroke: white;
  color: white;
}
.home-page .page-content .who-we-are .list-cards .card .text {
  width: 80%;
}
.home-page .page-content .who-we-are .list-cards .card.green {
  background-color: #d9e5de;
}
.home-page .page-content .who-we-are .list-cards .card.green .img {
  background-color: #16342f;
}
.home-page .page-content .who-we-are .list-cards .card.blue {
  background-color: #d9e5f1;
}
.home-page .page-content .who-we-are .list-cards .card.blue .img {
  background-color: #0e4773;
}
.home-page .page-content .who-we-are .list-cards .card.red {
  background-color: #eee8df;
}
.home-page .page-content .who-we-are .list-cards .card.red .img {
  background-color: #a38969;
}
.home-page .page-content .who-we-are .team {
  display: flex;
  gap: 20px;
}
.home-page .page-content .who-we-are .team .list-card-container {
  justify-content: space-between;
  display: flex;
  gap: 20px;
}
.home-page .page-content .who-we-are .team .list-card-container .member-card {
  width: calc(25% - 15px);
}
.home-page .page-content .who-we-are .team .list-card-container img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.home-page .page-content .last-news {
  display: flex;
  gap: 20px;
}
.home-page .page-content .last-news .list-card-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.home-page .page-content .last-news .list-card-container .news {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease-in-out;
}
.home-page .page-content .last-news .list-card-container .news a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f1f1ed;
  padding: 10px;
  width: 300px;
  gap: 20px;
}
.home-page .page-content .last-news .list-card-container .news a .news-image {
  width: -moz-fit-content;
  width: fit-content;
}
.home-page .page-content .last-news .list-card-container .news a .news-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.home-page .page-content .last-news .list-card-container .news a .news-text {
  color: #16342f;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.home-page .page-content .last-news .list-card-container .news a .news-text .news-title {
  text-transform: capitalize;
  text-shadow: none;
  font-size: 18px;
  text-align: left;
  font-family: "Playfair", serif;
  font-weight: bold;
  color: #16342f;
}
.home-page .page-content .last-news .list-card-container .news a .news-text .news-date {
  font-size: 12px;
  font-weight: 400;
}
.home-page .page-content .last-news .list-card-container .news:hover {
  transform: scale(1.07);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
.home-page .page-content .view-all {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 14px;
  background-color: #16342f;
  color: white;
  padding: 10px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  transition: all;
}
.home-page .page-content .view-all svg {
  width: 16px;
  height: 16px;
  fill: white;
}
.home-page .page-content .view-all:hover {
  background-color: rgb(14.4189189189, 34.0810810811, 30.8040540541);
}

.page-why-wetlands .header-why-wetlands {
  background: url("../images/headers/bg_why_wetlands.webp") bottom/cover;
}
.page-why-wetlands .header-why-wetlands h2 {
  text-transform: capitalize;
}
.page-why-wetlands .page-content {
  width: 1200px;
}
.page-why-wetlands .page-content section {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
.page-why-wetlands .page-content section img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.page-why-wetlands .page-content section {
  text-align: center;
}
.page-why-wetlands .page-content .why-wetlands {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: justify;
  padding-top: 80px;
}
.page-why-wetlands .page-content .wetlands-diversity {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-why-wetlands .page-content .wetlands-diversity .coastal-wetlands,
.page-why-wetlands .page-content .wetlands-diversity .terrestrial-wetlands {
  display: flex;
  padding: 0;
}
.page-why-wetlands .page-content .wetlands-diversity .title-wetlands-diversity {
  width: 50%;
  display: flex;
  align-items: center;
}
.page-why-wetlands .page-content .wetlands-diversity .title-wetlands-diversity h4 {
  font-size: 1rem;
  line-height: 1.3rem;
}
.page-why-wetlands .page-content .wetlands-diversity .terrestrial-wetlands .title-wetlands-diversity {
  padding-left: 20px;
}
.page-why-wetlands .page-content .wetlands-diversity .img {
  width: 50%;
  overflow: hidden;
}
.page-why-wetlands .page-content .wetlands-diversity .img div {
  width: 100%;
  height: 300px;
  cursor: pointer;
}
.page-why-wetlands .page-content .wetlands-diversity .img div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.page-why-wetlands .page-content .wetlands-stats {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.page-why-wetlands .page-content .wetlands-stats div:nth-child(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-why-wetlands .page-content .wetlands-stats div:nth-child(1) img {
  width: 60%;
}
.page-why-wetlands .page-content .wetlands-stats div:nth-child(1) p {
  width: 40%;
  text-align: justify;
  padding: 0 20px;
}
.page-why-wetlands .page-content .wetlands-stats div:nth-child(2) p {
  margin-bottom: 40px;
  text-align: left;
}
.page-why-wetlands .page-content .ecosystem-services, .page-why-wetlands .page-content .wetlands-challenges {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.page-why-wetlands .page-content .ecosystem-services .project, .page-why-wetlands .page-content .wetlands-challenges .project {
  height: 300px;
  display: flex;
}
.page-why-wetlands .page-content .ecosystem-services .project .img, .page-why-wetlands .page-content .wetlands-challenges .project .img {
  width: 50%;
  display: flex;
  align-items: center;
}
.page-why-wetlands .page-content .ecosystem-services .project .img img, .page-why-wetlands .page-content .wetlands-challenges .project .img img {
  height: 100%;
  width: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-why-wetlands .page-content .ecosystem-services .project .paragraphe, .page-why-wetlands .page-content .wetlands-challenges .project .paragraphe {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: justify;
  letter-spacing: 2px;
  padding-right: 20px;
}
.page-why-wetlands .page-content .ecosystem-services {
  gap: 40px;
}
.page-why-wetlands .page-content .ecosystem-services .paragraphe {
  margin-right: 0;
  padding-left: 20px;
}
.page-why-wetlands .page-content .wetlands-challenges .project_1 .img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.page-why-wetlands .page-content .wetlands-challenges .project_1 a {
  color: blue;
  text-decoration: underline;
}
.page-why-wetlands .page-content .wetlands-challenges .references {
  margin-top: 40px;
  text-align: left;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-why-wetlands .page-content .wetlands-challenges .references h5 {
  font-size: 20px;
}

.header-our-team {
  background: url("../images/headers/bg_our_team.webp") center/cover;
}
.header-our-team h2 {
  text-transform: capitalize;
}

.page-our-team .list-members {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-our-team .list-card-container {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.page-our-team .member-card {
  width: 400px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  border-radius: 8px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background-color: #f1f1ed;
}
.page-our-team .member-card a {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-our-team .member-card a .member-picture {
  width: 180px;
  max-width: 180px;
  min-width: 180px;
  height: 200px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  display: flex;
}
.page-our-team .member-card a .member-picture img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-our-team .member-card a .member-name {
  margin-top: 10px;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  text-align: left;
}
.page-our-team .member-card:hover {
  transform: scale(1.05);
}

.header-single-member {
  background: url("../images/headers/bg_our_team.webp") center/cover;
}
.header-single-member h2 {
  text-transform: capitalize;
}

.single-member-page .page-content section {
  text-align: justify;
}
.single-member-page .page-content section:nth-child(2) {
  background-color: rgba(220, 223, 209, 0.4392156863);
  position: relative;
  padding: 40px 0;
}
.single-member-page .page-content section:nth-child(2)::after {
  content: "";
  width: 100%;
  height: 45px;
  position: absolute;
  top: -0.3%;
  left: 0;
  background-size: auto;
  background-repeat: repeat no-repeat;
  background-position: 20vw;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200  80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 59L50 55C100 51 200 44 300 30C400 15 500 -6 600 1C700 8 800 44 900 59C1000 73 1100 66 1150 62L1200 59V80H1150C1100 80 1000 80 900 80C800 80 700 80 600 80C500 80 400 80 300 80C200 80 100 80 50 80H0V59Z' fill='%23ffffff'/></svg>");
}
.single-member-page .page-content .card-member .member-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: #f1f1ed;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.single-member-page .page-content .card-member .member-details .member-picture {
  max-width: 200px;
  width: -moz-fit-content;
  width: fit-content;
}
.single-member-page .page-content .card-member .member-details .member-picture img {
  max-width: 100%;
}
.single-member-page .page-content .card-member .member-details .member-info {
  display: flex;
  flex-direction: column;
  position: relative;
}
.single-member-page .page-content .card-member .member-details .member-info span {
  font-weight: bold;
}
.single-member-page .page-content .card-member .member-details .member-info .links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single-member-page .page-content .card-member .member-details .member-info .links img {
  max-width: 40px;
}
.single-member-page .page-content .member-research-biography div, .single-member-page .page-content .member-research-interest div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f1f1ed;
  padding: 20px;
  border-radius: 10px;
}

.page-news .header-news {
  background: url("../images/headers/bg_news.webp") center/cover;
}
.page-news .header-news h2 {
  text-transform: capitalize;
}
.page-news .page-content {
  width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f1f1ed;
}
.page-news .page-content .news {
  width: 300px;
  height: 400px;
  transition: all 0.3s ease;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
.page-news .page-content .news a {
  position: relative;
  display: block;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.page-news .page-content .news a .news-image {
  width: 100%;
  height: 60%;
}
.page-news .page-content .news a .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-news .page-content .news a .news-text {
  width: 100%;
  padding: 10px;
  height: 40%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.page-news .page-content .news a .news-text .date {
  font-size: 12px;
  color: #666;
}
.page-news .page-content .news a .news-text h3 {
  font-size: 16px;
  text-align: left;
  margin-top: 10px;
}
.page-news .page-content .news:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.single-news-page .header-single-news {
  background: url("../images/headers/bg_news.webp") center/cover;
}
.single-news-page .page-content {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}
.single-news-page .page-content img {
  max-width: 100%;
}
.single-news-page .page-content .single-news {
  padding: 0;
  margin-bottom: 60px;
}
.single-news-page .page-content .single-news .news-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
}
.single-news-page .page-content .single-news .news-content .news-image {
  width: 100%;
  display: flex;
  justify-content: center;
}
.single-news-page .page-content .single-news .news-content .news-image img {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.single-news-page .page-content .single-news .news-content .news-description {
  text-align: justify;
}
.single-news-page .page-content .single-news .news-content .news-description p {
  text-align: justify;
  line-height: 1.5;
  font-weight: 400;
}

.page-research .header-research {
  background: url("../images/headers/bg_research.webp") center/cover;
}
.page-research .header-research h2 {
  text-transform: capitalize;
}
.page-research .research-list-projects {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 0;
}
.page-research section {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.page-research section:nth-child(2n) {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-research section:nth-child(2n) .research-information {
  flex-direction: row-reverse;
}
.page-research section div {
  width: 100%;
  padding: 0;
  justify-content: space-between;
}
.page-research section img {
  border-radius: 10px;
}
.page-research section .research-card-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0;
}
.page-research section .research-card-content .research-information {
  display: flex;
  gap: 20px;
}
.page-research section .research-card-content .research-information div {
  width: 50%;
  max-width: 580px;
  overflow: hidden;
}
.page-research section .research-card-content .research-information img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.page-research section .research-card-content .image-zoom img {
  width: 100%;
  max-width: 580px;
  height: 100%;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-research section .research-card-content .research-image {
  display: flex;
  gap: 20px;
  height: 400px;
}
.page-research section .research-card-content .research-image-2 img {
  width: 50%;
}

.single-research-page .header-single-research {
  background: url("../images/NorthernPeatland_1.jpg") center/cover;
}
.single-research-page .page-content .single-research {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single-research-page .page-content .single-research .research-image {
  margin: 0 auto;
  display: flex;
  gap: 2%;
  justify-content: center;
  width: 100%;
}
.single-research-page .page-content .single-research .research-image img {
  max-height: 100%;
  width: 30%;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  transition: all 0.5s;
}
.single-research-page .page-content .single-research .research-image img:hover {
  transform: scale(2);
  z-index: 1;
}

.page-opportunities .header-opportunities {
  background: url("../images/headers/bg_opportunities.webp") center/cover;
}
.page-opportunities .header-opportunities h2 {
  text-transform: capitalize;
}
.page-opportunities .page-content .opportunity {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.page-opportunities .page-content .opportunity img {
  width: 50%;
  cursor: pointer;
}
.page-opportunities .page-content .opportunity.zoom {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 50vw;
  height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid white;
  cursor: unset;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 60px 40px -7px;
}
.page-opportunities .page-content .opportunity.zoom img {
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-opportunities .page-content .opportunity.zoom::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
}
.page-opportunities .page-content .opportunity.zoom .cross {
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: black;
  color: white;
  border: 1px solid white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s ease-in-out;
}
.page-opportunities .page-content .opportunity.zoom .cross:hover {
  background-color: white;
  color: black;
}
.page-opportunities .page-content .opportunity.job-description {
  display: flex;
  flex-direction: column;
}

.header-publications {
  background: url("../images/headers/bg_publications.webp") center/cover;
}
.header-publications h2 {
  text-transform: capitalize;
}

.page-publications section {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.page-publications section h3 {
  text-transform: capitalize;
}
.page-publications section h4 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.page-publications section .publication-year {
  font-weight: 800;
  margin-bottom: 10px;
}
.page-publications section .publications-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-publications section .publications-list .publication {
  padding: 0;
}
.page-publications section .publications-list .publication .publication-content {
  width: 100%;
}

.header-contact {
  background: url("../images/headers/bg_contact.webp") center/cover;
}
.header-contact h2 {
  text-transform: capitalize;
}

.page-contact section h3 {
  white-space: normal;
  margin-bottom: 20px;
}
.page-contact section a, .page-contact section h5, .page-contact section p {
  font-size: 20px;
}
.page-contact section h5 {
  margin-bottom: 10px;
}
.page-contact section .form {
  text-align: center;
}
.page-contact section .form a {
  margin-bottom: 40px;
}
.page-contact section .form a span {
  text-decoration: underline;
  font-weight: bold;
}
.page-contact section .informations {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3vw;
  text-align: center;
  margin: 40px 0;
}
.page-contact section .informations p {
  padding: 0;
}
.page-contact section .informations a {
  text-decoration: underline;
}
.page-contact section .informations .line {
  width: 1px;
  height: 50px;
  background-color: black;
}
.page-contact section #map {
  height: 500px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
}

footer {
  width: 100%;
  margin-top: 40px;
  padding: 40px 0;
  background: #16342f;
}
footer ul {
  list-style-type: none;
}
footer .footer-top, footer .footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
  font-weight: 300;
  display: flex;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
}
footer .footer-top .logo, footer .footer-top .links, footer .footer-top .contact, footer .footer-top .follow {
  width: 23%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .footer-top .logo .list, footer .footer-top .links .list, footer .footer-top .contact .list, footer .footer-top .follow .list {
  border-radius: 12px;
  padding: 10px;
  background-color: white;
  display: flex;
  justify-content: space-around;
}
footer .footer-top .logo h3, footer .footer-top .links h3, footer .footer-top .contact h3, footer .footer-top .follow h3 {
  font-size: 16px;
  font-weight: 200;
  text-transform: uppercase;
}
footer .footer-top .logo p, footer .footer-top .links p, footer .footer-top .contact p, footer .footer-top .follow p {
  font-size: 14px;
  font-weight: 300;
}
footer .footer-top h4 {
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
}
footer .footer-top img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
}
footer .line {
  max-width: 1200px;
  margin: 40px auto 10px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6823529412);
}
footer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer ul li a {
  font-size: 12px;
  display: flex;
  align-items: center;
}
footer ul li a svg {
  height: 20px;
  width: 20px;
  fill: white;
  color: white;
  margin-right: 10px;
}
footer .footer-bottom {
  color: rgba(255, 255, 255, 0.6823529412);
  font-size: 12px;
}

@media only screen and (max-width: 768px) {
  nav {
    z-index: 3;
    position: sticky;
  }
  nav .logo {
    width: -moz-fit-content;
    width: fit-content;
  }
  nav .logo h1 {
    font-size: 18px;
  }
  nav .logo.hidden {
    opacity: 0;
  }
  nav .burger {
    right: 5%;
    top: 20%;
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  nav .burger div {
    height: 3px;
    width: 25px;
    background: black;
  }
  nav .burger.hidden {
    opacity: 0;
  }
  nav.scrolled .burger div {
    background: black;
  }
  nav .links {
    display: block;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    color: black;
    background: white;
    transform-origin: top;
    transform: scaleY(0);
  }
  nav .links .close img {
    width: 80px;
  }
  nav .links .close div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    width: 100%;
  }
  nav .links .close div p {
    color: black;
  }
  nav .links .close {
    position: absolute;
    top: 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
  }
  nav .links ul.menu {
    align-items: center;
  }
  nav .links ul.menu .link-hover ul {
    display: none;
  }
  nav .links.active {
    transform: scaleY(1);
    opacity: 1;
  }
  nav .links.active ul.menu {
    flex-direction: column;
    margin: 0 auto;
    height: 100%;
  }
  nav .links.active ul.menu li::after {
    display: none;
  }
  nav .links.active ul.menu li a {
    color: black;
  }
  nav .links.active ul.menu > a {
    border: 1px solid red;
  }
  nav .links.active ul.menu .link-hover {
    position: relative;
    border: 1px s;
  }
  nav .links.active ul.menu .link-hover:hover ul.sub-menu {
    display: none;
  }
  .customize-support {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header {
    min-height: 200px;
  }
  .header .header-content h2 {
    font-size: 24px;
  }
  .page-content {
    margin: 0;
    padding: 0;
    text-align: justify;
    max-width: 100vw;
    overflow: hidden;
  }
  .page-content h3 {
    font-size: 20px;
  }
  .page-content section {
    padding: 50px 20px;
  }
  .page-content section > div {
    max-width: 100%;
    padding: 0;
  }
  .page-content section p {
    line-height: 26px;
    font-size: 20px;
  }
  footer {
    font-size: 12px;
    padding: 20px 10px;
    margin-top: 40px;
  }
  footer img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 12px;
  }
  footer .footer-linkedin {
    display: none;
  }
  .home-page .header-home {
    height: 400px;
  }
  .home-page .header-home .overlay .overlay-content {
    padding: 0;
  }
  .home-page .header-home .overlay .overlay-content h1 {
    font-size: 28px;
    padding: 5px;
  }
  .home-page .header-home .overlay .overlay-content h1 img {
    width: 160px;
  }
  .home-page .header-home .overlay .overlay-content h1 strong {
    font-size: 16px;
  }
  .home-page .header-home .overlay .overlay-content h2 {
    font-size: 18px;
  }
  .home-page .page-content {
    gap: 0;
    margin-top: 40px;
  }
  .home-page .page-content p {
    font-size: 20px;
  }
  .home-page .page-content .presentation {
    width: 100%;
  }
  .home-page .page-content .presentation .presentation-content {
    flex-direction: column;
  }
  .home-page .page-content .presentation .presentation-content div {
    width: 100%;
  }
  .home-page .page-content .presentation .presentation-content .text {
    padding: 20px;
  }
  .home-page .page-content .presentation .presentation-content .image {
    height: auto;
  }
  .home-page .page-content .presentation .presentation-content .image .swiper-slide {
    height: 300px;
  }
  .home-page .page-content .presentation .presentation-content .image .swiper-slide img {
    border-radius: 0;
  }
  .home-page .page-content .what-we-do {
    background-color: white;
    padding: 40px 0 0;
  }
  .home-page .page-content .what-we-do h3 {
    color: black;
  }
  .home-page .page-content .what-we-do .what-we-do-cards {
    width: 100%;
    box-shadow: none;
  }
  .home-page .page-content .what-we-do .what-we-do-cards .our-work,
  .home-page .page-content .what-we-do .what-we-do-cards .relevance {
    flex-direction: column;
    height: auto;
  }
  .home-page .page-content .what-we-do .what-we-do-cards .our-work .image,
  .home-page .page-content .what-we-do .what-we-do-cards .our-work .text,
  .home-page .page-content .what-we-do .what-we-do-cards .relevance .image,
  .home-page .page-content .what-we-do .what-we-do-cards .relevance .text {
    width: 100%;
  }
  .home-page .page-content .what-we-do .what-we-do-cards .our-work .text,
  .home-page .page-content .what-we-do .what-we-do-cards .relevance .text {
    padding: 20px;
  }
  .home-page .page-content .what-we-do .what-we-do-cards .relevance {
    flex-direction: column-reverse;
  }
  .home-page .page-content .background-parallax {
    display: none;
  }
  .home-page .page-content .research-topics {
    margin-top: 40px;
  }
  .home-page .page-content .research-topics h3 {
    margin-bottom: 20px;
  }
  .home-page .page-content .research-topics .topic-card-container {
    flex-direction: column;
    align-items: center;
  }
  .home-page .page-content .research-topics .topic-card-container .topic-card {
    width: 100%;
    border-radius: 0;
  }
  .home-page .page-content .research-topics .topic-card-container .topic-card h4 {
    font-size: 24px;
  }
  .page-news .page-content .news .news-image {
    width: 100%;
  }
  .page-news .page-content .news .news-text {
    width: 100%;
  }
  .page-why-wetlands .header-why-wetlands h2 {
    width: 100%;
  }
  .page-why-wetlands .page-content section {
    padding: 20px 0;
  }
  .page-why-wetlands .page-content p {
    font-size: 20px;
  }
  .page-why-wetlands .page-content .why-wetlands {
    padding: 20px;
  }
  .page-why-wetlands .page-content .wetlands-diversity .img,
  .page-why-wetlands .page-content .wetlands-diversity .title-wetlands-diversity,
  .page-why-wetlands .page-content .wetlands-diversity h4 {
    width: 100%;
    font-size: 22px;
  }
  .page-why-wetlands .page-content .wetlands-diversity .title-wetlands-diversity {
    padding-left: 0;
  }
  .page-why-wetlands .page-content .wetlands-diversity .title-wetlands-diversity h4 {
    text-align: center;
    padding: 5px;
  }
  .page-why-wetlands .page-content .wetlands-diversity .coastal-wetlands,
  .page-why-wetlands .page-content .wetlands-diversity .terrestrial-wetlands {
    gap: 20px;
  }
  .page-why-wetlands .page-content .wetlands-diversity .coastal-wetlands {
    flex-direction: column;
  }
  .page-why-wetlands .page-content .wetlands-diversity .terrestrial-wetlands {
    flex-direction: column-reverse;
  }
  .page-why-wetlands .page-content .wetlands-diversity .terrestrial-wetlands .title-wetlands-diversity {
    padding-left: 0;
  }
  .page-why-wetlands .page-content .wetlands-stats p {
    padding: 0 20px;
  }
  .page-why-wetlands .page-content .wetlands-stats div {
    gap: 20px;
  }
  .page-why-wetlands .page-content .wetlands-stats div:nth-child(1) {
    flex-direction: column;
  }
  .page-why-wetlands .page-content .wetlands-stats div:nth-child(1) img,
  .page-why-wetlands .page-content .wetlands-stats div:nth-child(1) p {
    width: 100%;
  }
  .page-why-wetlands .page-content .wetlands-stats div:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
  }
  .page-why-wetlands .page-content .wetlands-stats div:nth-child(2) p {
    margin-bottom: 0px;
  }
  .page-why-wetlands .page-content .ecosystem-services .project,
  .page-why-wetlands .page-content .wetlands-challenges .project {
    flex-direction: column;
  }
  .page-why-wetlands .page-content .ecosystem-services .project .paragraphe,
  .page-why-wetlands .page-content .ecosystem-services .project .img,
  .page-why-wetlands .page-content .wetlands-challenges .project .paragraphe,
  .page-why-wetlands .page-content .wetlands-challenges .project .img {
    width: 100%;
  }
  .page-why-wetlands .page-content .ecosystem-services .project .paragraphe,
  .page-why-wetlands .page-content .wetlands-challenges .project .paragraphe {
    padding: 20px;
  }
  .page-why-wetlands .page-content .ecosystem-services .project {
    height: auto;
    gap: 20px;
  }
  .page-why-wetlands .page-content .ecosystem-services .project_1 {
    flex-direction: column-reverse;
  }
  .page-why-wetlands .page-content .wetlands-challenges {
    gap: 40px;
  }
  .page-why-wetlands .page-content .wetlands-challenges .project {
    height: auto;
    gap: 20px;
  }
  .page-why-wetlands .page-content .wetlands-challenges .project_2 {
    flex-direction: column-reverse;
  }
  .page-why-wetlands .page-content .wetlands-challenges .references {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .page-our-team .page-content .list-members .list-card-container .member-card .member-name p {
    font-size: 20px;
  }
  .page-our-team .page-content .list-members .list-card-container .member-card .member-picture {
    width: 100px;
    height: 200px;
  }
  .single-member-page .page-content section {
    padding: 10px 20px;
  }
  .single-member-page .page-content section:nth-child(2) {
    background: none;
    padding: 40px 20px;
  }
  .single-member-page .page-content .card-member .member-details {
    display: block;
  }
  .single-member-page .page-content .card-member .member-details .member-picture {
    margin: 0 auto;
    max-width: 140px;
  }
  .single-member-page .page-content .card-member .member-details .member-info p {
    font-size: 20px;
  }
  .single-member-page .page-content .card-member .member-details .member-info a {
    display: block;
    height: 30px;
    width: 30px;
  }
  .single-member-page .page-content .card-member .member-details .member-info a img {
    max-width: 100%;
  }
  .page-research .page-content .research-list-projects {
    gap: 40px;
    padding: 40px 0;
  }
  .page-research .page-content section {
    padding: 0;
  }
  .page-research .page-content section .research-card-content {
    gap: 20px;
  }
  .page-research .page-content section .research-card-content img {
    border-radius: 0;
  }
  .page-research .page-content section .research-card-content .research-information {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .page-research .page-content section .research-card-content .research-information .research-description,
  .page-research .page-content section .research-card-content .research-information .research-description-image {
    width: 100%;
    padding: 0;
  }
  .page-research .page-content section .research-card-content .research-information .research-description {
    padding: 0 20px;
    width: 100%;
  }
  .page-research .page-content section .research-card-content .research-image {
    flex-direction: column;
    height: auto;
  }
  .page-research .page-content section .research-card-content .research-image-2 img {
    width: 100%;
  }
  .page-publications .page-content section {
    max-width: 100%;
  }
  .page-publications .page-content section p {
    font-size: 20px;
  }
  .page-opportunities .page-content .opportunity.zoom {
    width: 100vw;
  }
  .page-contact section h3 {
    display: flex;
    flex-direction: column;
  }
  .page-contact section > div {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-contact section .informations {
    flex-direction: column;
    height: auto;
  }
  .page-contact section .informations .line {
    height: 1px;
    width: 50px;
  }
  .page-contact section .map {
    margin-top: 0;
  }
  .page-contact section .map #map {
    height: 250px;
  }
  .page-publications section {
    padding: 20px;
    text-align: left;
  }
  footer {
    margin-top: 0;
  }
}/*# sourceMappingURL=style-theme.css.map */