main {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-height: 85vh;
}

main > div {
  width: 50%;
}

/* main .about-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;
    height: 100%;
} */

main .about-content h1 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 3em;

  line-height: 60px;
}

main .about-content p {
    font-family: "Poppins", sans-serif;
    font-size: 1.3em;
    line-height: 38px;
    font-weight: 200;
    margin-top: 60px;
    text-align: justify;
}

main .about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

main .about-img .img {
    height: 65vh;
    aspect-ratio: 65/90;
    border-radius: 25px;
    background-image: url(https://findit-resources.s3.amazonaws.com/forums/1697201214900.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media(max-width: 1024px){
    main .about-content h1 {
        font-size: 2em;
        line-height: 50px;
    }
    main .about-content p { 
        line-height: 35px;
        font-size: 1.1em;
    }
    main .about-img .img {
        height: 30vh;}
}

@media(max-width: 875px){
    main  {
        display: block;
        width: 100%;
    }

    main > div {
        width: 100%;
        top: 0;
    }
    
    main .about-img {
        display: none;
    }
}

@media (max-width: 767px) {
  main {
    min-height: 88vh;
  }
}
/* 
@media (max-width: 475px){
    main .about-content h1 {
        text-align: left;
    }
} */