@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  color: #282a28;
}

/*Content Area -----------------------------------------*/

.content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 10%;
  margin-right: 5%;
}

.content .about-text {
  width: 45%;
  
}
.content .about-text .intro-text {
  font-size: 15px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.content .about-text .symbols {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 0;
  padding: 3px;
}

.content .about-text .symbols .trait {
  display: flex;
  align-items: center;
  
}
.content .about-text .symbols .trait img {
  width: 20%;
  margin-right: 20px;
  border-radius: 0;
}

.content .about-text .symbols .trait p {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
.content .about-text .symbols .trait{
  width: 50%;
  display: flex;
  align-items: space-between;
}

.content .about-img {
  width: 45%;
}
.content .about-img img {
  width: 90%;
  border-radius: 100%;

}

.facts {
  list-style: square;
}

.facts .fact-item {
  font-weight: 300;
  font-size: 15px;
  text-decoration: none;
  text-transform: none;
  display: list-item;
  font-family: 'Poppins', sans-serif;

}

@media only screen and (max-width: 600px) {

  
  .content {
    justify-content: flex-start;
  }
  .content .about-text {
    width: 100%;
  }

  .content .about-text .symbols{
    display: flex;
    flex-wrap: wrap;
  }

  .content .about-text .symbols .trait{
    width: 100%;
  }

  .content .about-text .symbols .trait img{
    width: 15%;
  }

  .content .about-img {
    width: 100%;
    align-items: center;
  }
  
}