/* About section */
.about {
  /* min-height: 100vh; */
  /* margin-bottom: 200px; */

  min-height: 65vh;
}
.about .contents {
  display: flex;
  min-height: 65vh;
  /* max-width: 1200px; */
  /* margin-left: auto; */
  /* justify-content: space-between; */
  /* background: pink; */
  align-items: top;
}

.about .about-content {
  /* background: #000; */
  /* width: 50%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin-top: 80px; */
  flex: 1;
  /* padding-top: 40px; */
}
.about .about-content div {
  width: 70%;
}
.about .about-content div h2 {
  font-weight: 400;
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 36px;
}
.about .about-content div p {
  font-weight: 400;
  font-size: 16px;
  /* margin-bottom: 10px; */
  line-height: 24px;
}
.about .about-image {
  /* background: #009998; */
  width: 45%;
  height: 700px;
}

.about-image .image-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  transform: rotateY(180deg);
}

.about-image .image-container img {
  object-position: bottom;
  object-fit: cover;
  /* width: 100%; */
  /* height: 100%; */
}

/* Media query */
@media screen and (max-width: 900px) {
  .about {
    padding-top: 20px;
    /* min-height: 100vh; */
  }
  .about .contents {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about .about-content {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .about .about-content div h2 {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 36px;
    margin-top: 20px;
  }

  .hide-br {
    display: none;
  }

  .about .about-content div {
    width: 100%;
  }
  .about .about-content div p {
    font-weight: 400;
    font-size: 14px;
    width: 80%;
    margin: 0 auto;
    /* margin-bottom: 10px; */
    line-height: 21px;
  }

  .about .about-image {
    /* background: #009998; */
    /* width: 60%; */
    margin-top: 24px;
    flex: 1;
  }
}
