@import '../../common.css';

.hero {
  position: relative;
}

.hero .complaint-status {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 20px 30px;
}

.hero .complaint-status .modal {
  display: flex;
  width: 80vw;
}

.hero .complaint-status .title-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80vw;
}

.hero .complaint-status .title-bar h1 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

.hero .complaint-status .title-bar .complaint-modal-close-icon {
  cursor: pointer;
  padding: 0 10px 0 0;
}

.hero .content-wrapper {
  display: flex;
  justify-content: space-around;
}

.hero .content-half {
  flex: 1;
}

.hero .content-half:first-child {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 120px 100px;
}

.hero-img {
  height: 555px;
  width: 555px;
}

.features-content {
  display: flex;
  flex-direction: column;
}

.features-content .content-sections-wrapper {
  display: flex;
  justify-content: center;
}

.features-content .content-sections-wrapper .section-half {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 40px;
}

.features-content .content-sections-wrapper .section-half .section-desc {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .hero .content-wrapper {
    flex-direction: column;
  }

  .hero-img {
    width: 100%;
    height: 100%;
  }

  .hero .content-wrapper .content-half:first-child {
    padding: 0;
  }

  /* .hero .content-wrapper .content-half:last-child {
    display: flex;
    justify-content: center;
  } */

  .features .content-sections-wrapper {
    flex-direction: column;
  }

  .features .features-content .section-half .section-desc {
    flex: 2;
  }
}
