/* CSS for making Image Full-Screen */

html, body {
  height: 100%;
}

#about_container {
  width: 100%;
  height: 100%;
  margin: 0px;
}

/* CSS for white Discription and Head */

@media (min-width: 1100px) {
  #about_head_text {
    width: 900px;
  }
}

@media (max-width: 1100px) {
  #about_head_text {
    width: 80%;
  }
}

.about_white_discription {
  color: white;
  font-size: 1.2rem;
  text-align: justify;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .about_white_discription {
    font-size: 1rem;
  }
}

/* CSS for Features Section */

.about_features_img {
  width: 55px;
  margin-right: 30px;
  padding-bottom: 20px;
}

@media (max-width: 575px) {
  .about_features_img {
    margin-right: 0px;
  }
}

.about_features_heading {
  color: rgb(28,28,28);
  padding-top: 0px;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 575px) {
  .about_features_heading {
    text-align: center;
  }
}

@media (min-width: 767px) {
  .row.about_features_row {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .about_features_col {
    margin-bottom: 20px;
  }
}

