@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;600;800;900&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body {
  position: relative;
}

/* REUSEABLE CLASSSES */
.headings-all {
  font-size: 50px;
}

.box {
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: -11;
  filter: blur(300px);
}

/* CSS VARAIABLES */
:root {
  --main-clr: #37b24d;
  --hover-clr: #1d9332;
}

.section-nav {
  background-color: #fff;
}

.logo-cta {
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: black;
  font-family: "Inter", sans-serif !important;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 25px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  gap: 40px;
}

.nav-li {
  list-style: none;
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}

.nav-li a:hover {
  opacity: 80%;
}

.nav-li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", sans-serif !important;
}

.nav-ctabtn {
  text-decoration: none;
  background-color: #f03e37;
  padding: 10px 16px;
  color: #fff;
  transition: all 0.3s;
  border-radius: 40px;
  font-family: "Inter", sans-serif !important;
}

.nav-ctabtn:hover {
  background-color: #c92a2a;
}

#color-green {
  color: var(--main-clr);
}

/* SECTION MAIN */
.section-home {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
}

.left-box {
  width: 100%;
  margin-top: 100px;
}

.mh-bold {
  font-weight: 800 !important;
  font-size: 60px;
}

.main-heading {
  font-size: 60px;
  font-weight: 600;
  margin-top: -20px;
}

.main-para {
  margin-top: 30px;
  max-width: 500px;
  text-align: justify;
}

.right-box {
  width: 100%;
  align-self: self-end;
}

.cta {
  margin-top: 60px;
  display: inline-block;
  text-decoration: none;
  background-color: var(--main-clr);
  color: #fff;
  padding: 8px 15px;
  border-radius: 50px;
  transition: all 0.3s;
}

.cta:hover {
  background-color: var(--hover-clr);
}

.bg-img {
  border-radius: 40px;
}

/* SERVICES SECTION */
.section-services {
  width: 100%;
  height: 100vh;
  padding: 80px 0;
}

.section-services {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 250px;
}

.services-para {
  margin-top: 10px;
}

.services-box {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.s-box h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.s-box {
  width: 400px;
  align-items: center;
  display: flex;
  flex-flow: column;

  gap: 40px;
  padding: 40px;
  border-radius: 20px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #a0eab662;
}

.s-box:hover {
  transform: scale(1.1);
}

.s-img {
  width: 200px;
}

.ss-img {
  width: 200px;
}

/* SECTION NEWS */
.section-news {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.news-heading {
  padding-bottom: 50px;
}

.news-box {
  display: flex;
}

.news-item {
  display: flex;
  gap: 20px;
}

.news-box {
  padding: 20px;
  display: flex;
}

.news-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  column-gap: 40px;
}

.news-item {
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgba(0, 0, 0, 0.078);
}

.news1 {
  grid-column: 1 / 2;
}

.news2 {
  grid-column: 2/-1;
}

.news-left h1 {
  font-size: 20px;
  margin-bottom: 10px;
}

.news-left p {
  font-size: 16px;
  line-height: 1.5;
}

.nright-img1 {
  border-radius: 20px;
  background-color: rebeccapurple;
  width: 300px;
  height: 150px;
  background-size: cover;
  background-image: url("../img/news1.jpg");
}

.nright-img2 {
  border-radius: 20px;
  background-color: rebeccapurple;
  width: 300px;
  height: 150px;
  background-size: cover;
  background-image: url("../img/news2.jpg");
}

.nright-img3 {
  border-radius: 20px;
  background-color: rebeccapurple;
  width: 300px;
  height: 150px;
  background-size: cover;
  background-image: url("../img/news2.jpg");
}

.news-left a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #37b24d;
  padding: 10px 15px;
  border-radius: 10px;
  margin-top: 15px;
  transition: all 0.3s;
}

.news-left a:hover {
  background-color: var(--hover-clr);
}

/* SECTION RECYCLING */
.section-recycling {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
  padding-bottom: 100px;
}

.r-seprate {
  display: flex;
}

.recycling-img {
  border-radius: 80px;
}

.recycling-box {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #37b24d;
  padding: 40px;
  border-radius: 30px;
}

.r-boxes {
  padding: 10px 15px;
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.r-boxes p {
  display: inline-block;
  background-color: green;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
}

.footer {
  background-color: green;
}

.footer {
  text-align: center;
  position: absolute;
  background-color: var(--main-clr);
}

footer {
  display: flex;
  text-align: center;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  color: #fff;
  background-color: green;
}

footer a {
  text-decoration: none;
  color: #fff;
}
