@import url('https://fonts.googleapis.com/css2?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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* SCROLL BAR */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #292727;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(58, 128, 78);
}

/* COLOR */

.text-green {
  color: rgb(58, 128, 78);
}

.text-light-green {
  color: rgb(161, 247, 76);
}

.text-black {
  color: rgb(0, 0, 0);
}

.text-white {
  color: rgb(255, 255, 255)
}

.bg-green-gradient {
  background: linear-gradient(45deg, rgb(58, 128, 78) 50%, rgb(161, 247, 76));
}

.bg-green {
  background-color: rgb(58, 128, 78);
}

.bg-light-green  {
  background-color: rgb(161, 247, 76);
}

.bg-white {
  background-color: rgb(255, 255, 255);
}

.bg-black {
  background-color: rgb(0, 0, 0);
}


/* FONT SIZE */

.heading-1 {
  font-size: 4rem;
  font-weight: 500;
}

.heading-2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.heading-4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.fs-1 {
  font-size: 1rem;
  text-align: justify;
  font-weight: 300;
}

p.fs-1 {
  line-height: 2rem;
}

.fs-2 {
  font-size: 0.95rem;
  text-align: justify;
}

/* FONT WEIGHT */

.weight-100{
  font-weight: 100;
}
.weight-300{
  font-weight: 300;
}
.weight-500{
  font-weight: 500;
}

.weight-700{
  font-weight: 700;
}

/* GRID */

.container {
  padding: 4rem 4rem;
}

.row {
  width: 100%;
  display: grid;
  row-gap: 3rem;
  justify-content: space-between;
  align-items: center;
}

.row:has(.col-6) {
  grid-template-columns: 48% 48%;
}

.col-6, .col-4 {
  width: 100%;
}

.row:has(.col-4){
  grid-template-columns: 33.33% 33.33% 33.33%;
}
.row:has(.col-3) {
  grid-template-columns: 20% 20% 20% 20%;
}

.col-3 {
  width: 100%;
  align-items: center;
  margin-bottom: 1rem;
}


.show {
  display: block;
}

.hide {
  display: none;
}

.btn {
  padding: 0.8rem 1.3rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(58, 128, 78);
  opacity: 0.2;
}

@media screen and (max-width: 1400px) {
  .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 100%;
  }
  .navbar-nav {
    display: none;
  }
  .responsive-navbar.show {
    width: 60%;
  }
  .row:has(.col-6) {
    grid-template-columns: 45% 53%;
  }
}

@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  .navbar-nav {
    display: none;
  }
  .responsive-navbar.show {
    width: 60%;
  }
  .row.home-about {
    display: block;
  }
  .row:has(.col-3) {
    grid-template-columns: 45% 45%;
  }
  .col-3 {
    margin-bottom: 3rem;
  }
  .row:has(.col-6) {
    grid-template-columns: 100%;
  }
  .row:has(.col-4) {
    grid-template-columns: 100%;
  }
}

@media screen and (max-width: 800px) {
  .container {
    padding: 4rem 1.5rem;
  }
  .responsive-navbar.show {
    width: 50%;
  }
  .row:has(.col-3) {
    grid-template-columns: 50% 50%;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 4rem 1rem;
  }
  .responsive-navbar.show {
    width: 70%;
  }
}