.about__wrapper{
  margin-top: var(--space-btw);
  position: relative;
  width: 100%;
}
.about__img-container{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.about__container-img{
  filter: opacity(5%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;  
}
.about__container{
  padding: 0rem 3rem;
  width: 100%;  
}
.about__sides-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.about__leftSide{
  width: calc(100% - 600px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
.background__title{
  background: var(--purple-one);
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 5px solid var(--blue-one);
  border-top-left-radius: var(--borders-one);
  border-top-right-radius: var(--borders-one);
}
.about__leftSide h2{
  font-family: var(--ff-title);
  font-size: var(--fs-titles);
  color: white;
  font-weight: 800;
  letter-spacing: 2px;  
}
.about__rightSide{
  width: 600px;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  z-index: 1;
}
.rightSide__mansory-left{
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mansory__left-imgOne{
  width: 100%;
  height: 60%;
  display: block;
  border-radius: var(--borders-one);
  object-fit: cover;
}
.mansory__left-imgTwo{
  width: 100%;
  height: 40%;
  display: block;
  border-radius: var(--borders-one);
  object-fit: cover;
}
.rightSide__mansory-right{
  width: 50%;
}
.mansory__left-imgThree{
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--borders-one);
  object-fit: cover;
}


/*************MEDIAQUERIES**************/

@media (max-width: 1483px) {

}

@media (max-width: 1280px) {

}

@media (max-width: 1150px) {
  .about__sides-container{
    flex-direction: column;
    gap: 2rem;
  }
  .about__leftSide{
    width: 100%;
  }
  .about__rightSide{
    width: 100%;
    height: 100vh;
  }

}

@media (max-width: 950px) {/*2 REM padding*/
  .about__container{
    padding: 0 2rem;
  }

}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) { /*1 REM padding*/
  .about__container{
    padding: 0 1rem;
  }
  .about__rightSide{
    width: 100%;
    height: 50vh;
  }
  
}

@media (max-width: 480px) {

}

@media (max-width: 455px) {

}

@media (max-width: 350px) {

}

/**************************************/