/*
Theme Name: Dew Design

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support



*/

.responsive_menu_btn {
  margin-right: 20px;
  margin-left: 0px;
}

.home_about_box {
  right: -30%;
  left: auto;
}

.home_about_box_reverse {
  left: -30%;
  right: auto;
}

.news_date {
  left: 0px;
  text-align: left;
}

.download_btn i {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.social_media i {
  margin-left: 15px;
}

.page_header_content {
  right: 20%;
}

.form_container label {
  text-align: right;
  width: 100%;
}

.form_input,
.form_text {
  text-align: right;
}

@media only screen and (max-width: 1200px) {
  .home_about_box {
    left: 0px;
    right: 0px;
  }

  .home_about_box_reverse {
    left: 0px;
    right: 0px;
  }
}
