* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

.btn {
  display: block;
  text-decoration: none;
  width: 100%;
  background-color: #4A4A4A;
  color: white;
  padding: 8px;
  text-align: center;
  margin-top: 30px;
  -webkit-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s; }
  .btn:hover, .btn:focus {
    background-color: #242424; }

.form_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .form_group div {
    margin-left: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }
    .form_group div .form_control {
      display: block;
      width: 100%;
      background-color: #fff;
      color: darkgray;
      border: 1px solid #ced4da;
      height: 30px; }

body {
  height: 100vh;
  background-image: -webkit-linear-gradient(280deg, white 50%, #e9eef6 50%);
  background-image: -o-linear-gradient(280deg, white 50%, #e9eef6 50%);
  background-image: linear-gradient(170deg, white 50%, #e9eef6 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.card {
  width: 600px;
  height: 370px;
  background-color: white;
  -webkit-box-shadow: 0 2px 23px rgba(63, 65, 68, 0.16);
  box-shadow: 0 2px 23px rgba(63, 65, 68, 0.16);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.photo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60%;
  background-image: url(../img/dumpling.jpg);
  background-size: 700px 470px;
  background-position: -230px -50px;
  -webkit-clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 70% 0%, 100% 100%, 0% 100%); }

.card_block {
  z-index: 3;
  width: 50%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: darkgray; }
  .card_block .card_body {
    margin-top: 20px; }
  .card_block .card_footer {
    margin-top: auto; }
    .card_block .card_footer p {
      margin-bottom: 10px; }
  .card_block h1 {
    color: #414141; }
  .card_block h3 {
    color: #939393; }

.tag_wrap {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 160px;
  height: 160px;
  overflow: hidden; }
  .tag_wrap .tag {
    width: 160px;
    background-color: orange;
    text-align: center;
    color: white;
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-transform: translateX(50%) rotate(45deg) translateY(150%);
    -ms-transform: translateX(50%) rotate(45deg) translateY(150%);
    transform: translateX(50%) rotate(45deg) translateY(150%);
    margin-top: -10px; }
    .tag_wrap .tag:before, .tag_wrap .tag:after {
      content: "";
      position: absolute;
      border: 5px solid transparent; }
    .tag_wrap .tag:before {
      border-top-color: #b37400;
      bottom: -10px;
      left: 6px; }
    .tag_wrap .tag:after {
      border-top-color: #b37400;
      bottom: -10px;
      right: 14px; }
