*, *::after, *::before{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family: "Poppins", sans-serif;
  line-height: 1.5em;
  scroll-behavior: smooth;
}
.inner{
  display: flex;
  justify-content: space-between;
}
.inner_grid{
  display: grid;
  justify-content: space-between;
}
.ul{
  list-style: none;
}
.ul li{
  display: inline-block;
}
a{
  display: block;
  text-decoration: none;
  transition: 0.5s;
}

/* image Optimization */
img{
  max-width: 100%;
  height: auto;
}
.m-top{
  margin-top: 40px;
}