@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
:root {
  --gren: #07c026;
  --black: #130f40;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --border: 2rem solid rgba(0, 0, 0, 0.1);
  --outline: 0.1rem solid rgba(0, 0, 0, 0.1);
  --outline-hover: 2rem solid rgba(0, 0, 0, 0.1);
  --light-color: rgb(148, 147, 147);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: none;
  transition: all 0.2s linear;
   text-align: ; 
}

html {
  font-size: 65.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  background: rgba(78, 73, 73, 0.164);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 9%;
  background: #fff;
  box-shadow: var(--box-shadow);
}


.header .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--gren);
}

.header .navbar i {
  color: var(--gren);
  /* text-decoration:underline; */
}

.header .navbar a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 2rem;
  margin: 0 1rem;
  color: var(--black);
  text-decoration: none;
  position: center;
  content: "";
  gap: 3rem;
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

.header .navbar a:hover {
  color: var(--gren);
  border-bottom: #07c026;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 8rem;
  background-size: cover;
  margin: 5px 5px 5px 5px;
}

.header .icon div {
  height: 4.9rem;
  width: 4.5rem;
  line-height: 4.5rem;
  border-radius: 0.5rem;
  background-color: #eee;
  color: var(--black);
  font-size: 2rem;
  margin-right: 0.3rem;
  text-align: center;
}

.header .icon div:hover {
  color: rgb(255, 255, 255);
  background-color: #47ff65da;
  cursor: pointer;
}

/* Footer */

.footer {
  background: rgb(247, 255, 248);
  margin-top: 5%;
  box-shadow: 0 0.5rem 1rem #000000;
}
.footer.box-container.share{
  /* display:  */
  justify-content:stretch;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
  padding-left: 20rem;
}

.footer .box-container .box h3 {
  font-size: 2.5rem;
  color: var(--black);
  padding: 1rem 0;
}

.footer .box-container .box h3 i {
  color: var(--gren);
}

.footer .box-container .box a {
  display:flex;
  font-size: 1.5rem;
  color: var(--light-color);
  padding: 1rem 0;
}

.footer .box-container .box a:hover {
  color: var(--gren);
}

.footer .box-container .box a i {
  color: var(--gren);
  padding-right: 0.5rem;
}

.footer .box-container .box a:hover i {
  color: var(--gren);
  padding-right: 0.2rem;
}

.footer .box-container .box p {
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--light-color);
  padding: 1rem 0;
}


/* end footer */
