.about-me {
  background: #0d121b;
  color: #fff;
}

.section.about {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  position: relative;

}

.about__des-image {
  display: none;
}

.section.about {
  padding-top: 0;
}

.mob-menu-icon {
  fill: #fff;
}

.about__container {
  display: grid;
  gap: 40px;
}

.about__title {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 400;
}

.about__text {
  display: grid;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .about__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .section.about {
    padding-top: 80px;
  }
  .about__title {
    font-size: 40px;
    margin-bottom: 58px;
  }
  .about__text {
    gap: 20px;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__image {
    order: 2;
  }
  .about__image img {
    display: none;
  }
  .about__des-image {
    display: block;
    position: absolute; 
    top: -210px;
    width: 599px;
    height: 928px;
    right: 0;
  }
}
