@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #0d462b;
  --primary-color-dark: #066839;
  --text-dark: #333333;
  --text-light: #767268;
  --white: #ffffff;
  --bg-color: #e1e1e1;
  --max-width: 1400px;
  --header-font: 'Bebas Neue', sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: 0.3s linear;
}


.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__counter {
  margin-top: 57px;
  float: right;
}

body {
  font-family: 'Poppins', sans-serif;
}

nav {
  position: relative;
  isolation: isolate;
  width: 100%;
  z-index: 1000;
}

.nav__header {
  padding: 0 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 60px;
  height: 60px;
}

.nav__logo a {
  margin-left: 10px;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.nav-logo {
  width: 65px;
  height: 65px;
  object-fit: cover;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  padding: 2rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateY(-100%);
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
}

.nav__btns {
  display: none;
}

.header-bg {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

#header {
  height: 800px;
}

.header {
    display: flex;
    justify-content: center;
    position: relative;
    top: -30rem;
}

.header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__content h1 {
  margin-bottom: 1rem;
  font-size: 45px;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
  line-height: 5rem;
  text-align: center;
}

.header__content p {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 2rem;
  text-align: center;
  width: 900px;
}

.header__content h4 {
  color: #5dbb5d;
  font-size: 25px;
  text-align: center;
  font-weight: 500;
}

.header__content .bar {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (max-width: 1024px) {
  .header__content h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}

@media (max-width: 830px) {
  .header__image__card {
    display: none;
  }

  .header__container {
    padding-block: 0;
    padding-inline: 0;
  }
}

@media (max-width: 768px) {
  #header {
    height: 600px;
  }

  .header-bg {
    height: 500px;
  }

  .header {
    top: -25rem;
  }
}

@media (max-width: 730px) {
  .header__content p {
    padding: 0 10px;
  }
}

@media (max-width: 550px) {
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
  
  .header__content p {
    font-size: 20px;
  }

  .header__content h4 {
    font-size: 20px;
  }
}

@media (width > 830px) {
  nav {
    background: #252525;
    position: static;
    padding-inline: 1rem;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    background-color: transparent;
  }

  .nav__logo a {
    color: #fff;
  }

  .nav__logo a:hover {
    color: var(--primary-color);
  }

  .nav__logo a span {
    color: var(--primary-color);
    transition: 0.2s linear;
  }

  .nav__logo a span:hover {
    color: var(--white);
  } 


  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
  }

  .nav__links a {
    padding-block: 5px;
    color: #fff;
    font-weight: 600;
    border-bottom: 4px solid transparent;
  }

  .nav__links a:hover {
    border-color: #fff;
  }

  .nav__btns {
    display: flex;
    flex: 1;
  }

  .nav__btns .btn {
    padding: 0.75rem 1.5rem;
    outline: none;
    border: none;
    font-size: 1rem;
    white-space: nowrap;
    border-radius: 10px;
    transition: 0.3s;
    cursor: pointer;
  }
}

@media (width > 1024px) {
  .header__content form {
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .header__content p {
    width: 100%;
  }
}

#revealing {
  background: var(--bg-color);
}

.revealing {
  /* margin-top: 60px; */
  padding-top: 50px;
  padding-bottom: 50px;
}

.revealing__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.revealing__desc {
  text-align: center;
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

@media (max-width: 1400px) {
  .revealing {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .revealing__title {
    font-size: 1.5rem;
  }

  .revealing__desc {
    font-size: 1rem;
  }
}

.species {
  margin-top: 100px;
}

.species__title {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
}

.species__cards {
  margin-bottom: 70px;
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.species-images {
  width: 350px;
  height: 300px;
  border-radius: 2px;
  object-fit: cover;
}

.species-desc {
  width: 350px;
  padding: 5px;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  background: var(--primary-color);
  color: var(--white);
  display: block;
  transition: 0.2s linear;
}

.species-desc:hover {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.species-list {
  margin-top: 10px;
  margin-left: 15px;
}

.species-list li {
  margin-top: 7px;
  color: var(--text-dark);
  font-weight: 500;
  width: 330px;
  text-align: justify;
}

.species-list li::marker {
  color: var(--primary-color);
}

.species-cnt {
  display: flex;
  justify-content: center;
}

.species-link {
  padding: 10px 20px;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 4%;
}

.species-link:hover {
  background: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media (max-width: 1400px) {
  .species {
    padding: 0 15px;
  }

  .species__cards {
    margin-top: 0;
  }

  .species__card {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .species__title {
    font-size: 1.5rem;
  }

  .species-desc {
    font-size: 1.2rem;
  }

  .species-list li {
    font-size: 14px;
  }
}

@media (max-width: 630px) {
  .species__cards {
    justify-content: center;
  }
}

.slider-wrapper {
  position: relative;
  margin-top: 100px;
}

.project__title {
  margin-bottom: 60px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.5rem;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  height: 40px;
  width: 40px;
  color: #fff;
  background-color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  border: none;
  outline: none;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  z-index: 1;
}
.slider-wrapper .slide-button:hover {
  background: #444;
}

.slider-wrapper .slide-button#prev-slide {
  left: -20px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -20px;
}

.slider-wrapper .image-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(10, 1fr);
  font-size: 0;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 400px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;

  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  height: 2px;
  width: 100%;
  background-color: #ccc;
  position: relative;
  border-radius: 4px;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  height: 100%;
  width: 50%;
  background-color: #000;
  border-radius: inherit;
  cursor: grab;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

@media (max-width: 1400px) {
  .slider-wrapper {
    padding: 0 15px;
  }

  .slider-wrapper .slide-button#next-slide {
    right: 7px;
  }

  .slider-wrapper .slide-button#prev-slide {
    left: 7px;
  }
}

@media (max-width: 768px) {
  .project__title {
    font-size: 2rem;
  }
}

@media (max-width: 1024px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }
  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
  }
  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }
  .slider-scrollbar .scrollbar-thumb {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }
  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
  }
  .slider-wrapper .image-list .image-item {
    width: 220px;
    height: 320px;
  }
  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}

.benefit {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}

.benefit-img {
  width: 100%;
}

.map {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .map iframe {
    height: 300px;
  }
}

#footer {
  background: var(--primary-color);
}

.footer {
  padding-top: 70px;
  padding-bottom: 30px;
  margin-top: 100px;
}

.footer__connect {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10px;
}

.footer-content {
  padding-top: 10px;
}

.footer-content a {
  padding: 10px 25px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: -10px 0 -10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  border-radius: 3px;
}

.footer-content a:hover {
  background: var(--primary-color-dark);
}

.footer__social-skills {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.footer__applications {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: -10px 0 -10px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  padding: 7px;
  border-radius: 5px;
  margin: 0 10px 0 0;
}

.footer-step-cnt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__applications:hover {
  scale: 1.15;
  transition: all 0.2s ease;
}

.fa-facebook {
  color: var(--white);
}

.fa-instagram {
  color: var(--white);
}

.fa-whatsapp {
  color: var(--white);
}

.footer-sub {
  margin-top: 50px;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1400px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-content {
    padding-top: 50px;
  }
}

@media (max-width: 450px) {
  .footer-content a {
    font-size: 12.5px;
  }

  .footer__applications {
    width: 50px;
    height: 45px;
  }
}

.moss {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.moss-pic {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.moss__title {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--text-dark);
}

.moss__desc {
  font-size: 1.3rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 10px;
}

.moss__cards {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.moss__card {
  margin-top: 30px;
  margin-bottom: 50px;
}

.moss__picture {
  width: 400px;
  height: 400px;
  border-radius: 5px;
  object-fit: cover;
}

.moss-subtitle {
  position: relative;
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-top: 70px;
}

.moss-subtitle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  left: 0;
}

.moss-subtitle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  bottom: 0;
}

.moss-p {
  position: relative;
  font-size: 20px;
  color: var(--text-dark);
  font-weight: 500;
  text-align: center;
  margin-top: 70px;
}

.moss-p::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--text-dark);
  bottom: -20px;
}

.moss__content {
  margin-top: 40px;
}

.moss-sub {
  font-size: 30px;
  color: var(--text-dark);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.moss-list {
  font-size: 20px;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  .moss {
    padding: 0 15px;
  }
}

@media (max-width: 826px) {
  .moss__cards {
    justify-content: center;
  }

  .moss__picture {
	width: 100%;
  }

  .moss-subtitle {
	font-size: 2rem;
	text-align: center;
  }

  .moss-subtitle::after {
    display: none;
  }

  .moss-subtitle::before {
    display: none;
  }

  .moss-sub {
	font-size: 25px;
  }

  .moss-list {
	font-size: 17px;
  }

  .moss__desc {
	font-size: 1.2rem;
  }
}

.reply-pic {
	position: relative;
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.reply__title {
	color: var(--white);
	text-align: center;
	position: relative;
	z-index: 1;
	margin-top: -16%;
	font-weight: 600;
	font-size: 60px;
}

.reply-sub {
	color: var(--primary-color);
	text-align: center;
	font-weight: 500;
	font-size: 30px;
	margin-top: 10rem;
	border-bottom: 1px solid var(--text-dark);
}

.reply__cards {
	margin-top: 70px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reply__card {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.reply__content {
	margin-left: 20px;
}

.reply-img {
	width: 360px;
	height: 350px;
	object-fit: cover;
}

.reply-desc {
	text-transform: uppercase;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 20px;
	margin-top: 10px;
}

.reply-cnt {
  margin: 100px 0;
}

.reply__text {
	color: var(--text-light);
	font-weight: 500;
	font-size: 17px;
	margin-top: 10px;
	width: 700px;
	text-align: justify;
}

.reply-response {
	position: relative;
	text-transform: uppercase;
	color: var(--text-light);
	font-weight: 500;
	font-size: 35px;
	margin-top: 10px;
}

.reply-response::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--text-dark);
	left: 0;
  }
  
  .reply-response::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	background: var(--text-dark);
	bottom: -27px;
  }

  .reply-data {
	text-transform: uppercase;
	color: var(--text-light);
	font-weight: 500;
	font-size: 15px;
  }

  @media (max-width: 1400px) {
	.reply {
		padding: 0 15px;
	}
  }

  @media (max-width: 1120px) {
	.reply__title {
		margin-top: -25%;
	}

	.reply__text {
		width: 500px;
	}

	.reply-sub {
		margin-top: 15rem;
	}
  }

  @media (max-width: 785px) {
	.reply__title {
		margin-top: -30%;
		font-size: 45px;
	}

	.reply-sub {
		font-size: 25px;
	}
  }

  @media (max-width: 920px) {
	.reply__card {
		flex-direction: column;
	} 

  .reply__content {
    margin-left: 0;
  }

	.reply-img {
		margin-bottom: 20px;
	}

	.reply__text {
		width: 100%;
	}

	.reply-desc {
		font-size: 17px;
		text-align: center;
	}

	.reply__text {
		font-size: 15px;
	}

	.reply__content {
		margin-bottom: 50px;
	}
}

  @media (max-width: 600px) {
	.reply__title {
		margin-top: -36%;
		padding: 0 15px;
	}

	.reply-sub {
		margin-top: 12rem;
	}
  } 	

  @media (max-width: 550px) {
	.reply__title {
		margin-top: -48%;
		line-height: 40px;
	}

	.reply-response {
		font-size: 25px;
	}
  } 

  @media (max-width: 400px) {
	.reply__title {
		margin-top: -70%;
	}
  } 

  .care-pic {
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .care__title {
    color: var(--white);
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: -25%;
    font-weight: 600;
    font-size: 60px;
  }

  .care-sub {
    color: var(--white);
    text-align: center;
    font-size: 20px;
  }

  .care__content {
    margin-top: 15rem;
  }

  .care-text span {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
  }

  .care-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    margin-top: 30px;
    width: 100%;
  }

  .care-cnt {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }

.care-lists {
  margin-top: 100px;
}

.care-lists li span {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 17px;
}

.care-lists li {
  margin-top: 10px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 17px;
  text-align: justify;
  width: 100%;
}

.care-lists li::marker {
  color: var(--primary-color);
}

@media (max-width: 1400px) {
  .care {
    padding: 0 15px;
  }
}


@media (max-width: 1120px) {
  .care__title {
    margin-top: -32%;
  }

  .care__content {
    margin-top: 10rem;
  } 
} 

@media (max-width: 1024px) {
  .care__title {
    font-size: 50px;
  }

  .care-sub {
    font-size: 17px;
  }
}

@media (max-width: 880px) {
  .care__title {
    margin-top: -45%;
    line-height: 60px;
  }
}

@media (max-width: 725px) {
  .care__title {
    font-size: 35px;
  }

  .care-sub {
    font-size: 16px;
  }
}

@media (max-width: 660px) {
  .care__title {
    margin-top: -55%;
    line-height: 50px;
  }
}

@media (max-width: 550px) {
  .care__title {
    margin-top: -85%;
  }

  .care-sub {
    padding: 0 15px;
  }

  .care-lists li {
    font-size: 15px;
  }
}

@media (max-width: 425px) {
  .care__title {
    margin-top: -100%;
  }
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
}

.about-pic {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.about__title {
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 35px;
}

.about__sub {
  margin-top: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 30px;
}

.about__subtitle {
  margin-top: 10px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 35px;
}

.about-image {
  width: 400px;
  height: 550px;
  object-fit: contain;
}

.about__cards {
  margin-top: 70px;
}

.about__card {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 70px;
}

.about-text {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 17px;
  margin-top: 20px;
  text-align: justify;
}

.about-cnt {
  margin-left: 20px;
}

.about-mark {
  position: relative;
 color: var(--text-dark);
 font-weight: 500;
 font-size: 20px;
 margin-top: 20px;
 text-transform: uppercase;
 text-align: center;
 border-bottom: 2px solid #eee;
 border-top: 2px solid #eee;
}

.about-text-span {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}

@media (max-width: 1400px) {
  .about {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .about-text {
    font-size: 16px;
  }

  .about-image {
    width: 350px;
  }
}

@media (max-width: 700px) {
  .about__card {
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    width: 100%;
  }

  .about-text-span {
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 550px) {
  .about-text-span {
    font-size: 17px;
  }

  .about-text {
    font-size: 14px;
  }
}