@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
  color: #ffffff;
}
:root {
  --span-color: #1ed760;
  --text-color: #827e82;
  --background-color: #000000;
  --heading-color: #ffffff;
  --heading--font: "Poppins", sans-serif;
  --text-font: "Nunito", sans-serif;
  --footer-color: #0e0e0e;
}
span{
  color: var(--span-color);
}
section {
  padding: 0px 200px 0px 100px;
}
/* <--------------------------------animation--------------------------> */
@keyframes move {
  from {
    padding-left: 60px;
  }
  to {
    padding-left: auto;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
/* <---------------------------------------------------------------------> */
body {
  background-color: var(--background-color);
}
.bg {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.t_left > h2 {
  font-family: var(--heading--font);
  font-size: 2.8rem;
  letter-spacing: 2px;
  border-left: var(--span-color) solid 2px;
  padding: 8px 15px;
  color: var(--heading-color);
  animation: move 1.1s ease-in-out 0s;
}

.icon {
  width: 60px;
  margin: 21px;
}
.d_1 {
  animation: fade 1.5s ease-in-out 0s;
}
.d_2 {
  animation: fade 1.8s ease-in-out 0s;
}
.d_3 {
  animation: fade 2.1s ease-in-out 0s;
}





/* ------------------for mobile------------ */
@media screen and (max-width: 600px){
  section {
    padding: 0px;
  }
  @keyframes m {
    from {
      padding-top:70px;
    }
    to {
      padding-top: auto;
    }
  }
  .bg{
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
.icon{
  width: 45px;
}
.d_1,.d_2,.d_3{
  animation: m 1.1s ease-in 0s;
}
.t_right{
  margin-top: 40px;
}
.t_left > h2 {
  margin-right: 80px;
  animation: m 1.1s ease-in 0s;
}
  }
