/*===============================ABOUT SECTION===============================*/
.about-section{
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)), url(../images/about-image.jpg);
  background-size: cover;
  background-position: center;
  padding: 10px 8%;
  position: relative;
}
.about-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  margin-top: 3rem;
}
.about-content h1{
  font-size: 4rem;
  line-height: 1.7;
  font-weight: 600;
  max-width: 650px;
  margin-bottom: 20px;
}
.about-content h3{
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  color: var(--color-red);
  margin-top: 1rem;
}
.about{
  padding: 50px 12%;
  font-size: 22px;
}
.about h2{
  font-size: 2rem;
  color: var(--color-red);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.about h3{
  font-size: 1.7rem;
  color: var(--color-red);
  font-weight: 400;
  margin-bottom: 1.2rem;
}
.about p, .myworld p{
  font-size: 1rem;
  line-height: 2;
  text-align: justify;
}
/*------------------------RESPONSIVENESS ABOUT SECTION---------------------*/ 
@media only screen and (max-width: 600px) {
  .about-content h1 {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.4;
      text-transform: uppercase;
      width: 80vw;
  }
  .about-content h3{
    font-size: 1.2rem;
    margin-top: 0.6rem auto;
    line-height: 1.5;
  }
  .about h2{
    font-size: 1.2rem;
  }
  .about h3{
    font-size: 1rem;
  }
  .about p{
    font-size: 0.9rem;
  }
  .about{
    padding: 3rem 5%;
  }
}
