#about {
  align-items: flex-start;
  background: var(--color-muted-bg, #f0f2f4);
}

#about-image-container img {
  height: 40rem;
  position: relative;
  top: 5rem;
  left: 5rem;
  border: 0.5rem solid var(--color-surface, #fff);
  border-radius: var(--radius-lg, 1.6rem);
  z-index: 2;
  box-shadow: var(--shadow-card, 0 0.4rem 2.4rem rgba(23, 28, 30, 0.08));
}

#about-image-container {
    position: relative;
    margin-right: 10rem;
}

#about-image-bg {
    height: 40rem;
    width: 100%;
    position: absolute;
    top: 0;
    background: #171c1e;
    z-index: 1;
}

.about-text {
    font-size: 1.8rem;
    padding: 2rem;
    line-height: 2.7rem;
}

.about-text p {
    margin-top: 1.5rem;
    text-align: justify;
}

.about-text p:last-child {
    margin-top: 3rem;
}

#about .title {
  text-align: center;
  background: none;
  border-left: none;
  letter-spacing: 0.12em;
  border-bottom: 0.4rem solid var(--color-accent, #ef7c00);
  z-index: 30;
}

@media screen and (max-width: 1200px) {
    .about-text {
        font-size: 2rem;
        line-height: 3rem;
    }
}

@media screen and (max-width: 992px) {
    #about-image-container img {
        height: 35rem;
    }

    #about-image-bg {
        height: 35rem;
    }

    #about-image-container {
        margin-right: 5rem;
    }
}

@media screen and (max-width: 768px) {
    #about-image-container img {
        top: 3rem;
        left: 3rem;
    }

    #about {

        flex-direction: column;
        align-items: center;
    }
}