/* Target section & why */
.target {
  /* min-height: 100vh; */
  /* background: #000; */
}

.target .container {
  padding-top: 50px;
  /* padding-bottom: 100px; */
}

.target .container .content {
  display: flex;
  /* background-color: blueviolet; */
  min-height: 50vh;
  justify-content: space-between;
}
.content-2 {
  flex-direction: row-reverse;
  margin-top: 100px;
}

.content-write-up {
  flex: 1;
  /* background: #000; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-write-up div {
  width: 70%;
}

.content-write-up div h3 {
  font-weight: 400;
  font-size: 34px;
  line-height: 36px;
  margin-bottom: 20px;
}
.content-write-up div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.content-image {
  flex: 1;
  /* background: green; */
}

.content-image .image-container {
  height: 100%;
  width: 100%;
  /* margin-top: 40px; */
}

/* Why section */
.why {
  /* min-height: 50vh; */
  padding-bottom: 100px;
}

.why .container .content {
  display: flex;
  /* background-color: blueviolet; */
  min-height: 50vh;
  justify-content: space-between;
}

.why .container .content .content-image {
  transform: rotateY(180deg);
}

.why .content-write-up div p {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}

.why .mail-btn {
  margin-top: 30px;
  display: inline-block;
}

/* Media query */
@media screen and (max-width: 900px) {
  .target .container .content {
    display: flex;
    /* background-color: blueviolet; */
    min-height: 50vh;
    flex-direction: column;
    text-align: center;
  }

  .content-image .image-container {
    margin-top: 40px;
  }

  .why {
    /* min-height: 50vh;
    padding-bottom: 100px; */
  }

  .why .container .content {
    display: flex;
    flex-direction: column-reverse;
  }

  .content-write-up div {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .content-write-up div h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 44px;
    margin-bottom: 10px;
  }
  .content-write-up div p,
  .why .content-write-up div p {
    /* font-weight: 500; */
    font-size: 14px;
    line-height: 23px;
    /* margin-bottom: 10px; */
  }
}
