.thankYou {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 50px 0;
}
.thankYou_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px;
  background-color: #DFE1E3;
  box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
  -moz-box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
  -webkit-box-shadow: 0 3px 5px 0 rgba(163, 163, 163, 0.3);
}
.thankYou_logo {
  margin-bottom: 25px;
}
.thankYou_logo img {
  height: 62px;
  width: 240px;
}
.thankYou_message {
  margin-bottom: 60px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: #273a5d;
  font-size: 44px;
  line-height: 52px;
  width: 50%;
  text-align: center;
}
.thankYou_close {
  background-color: #578899;
  color: white;
  width: 180px;
  padding-top: 10px;
}
.thankYou_close.btn.btn-primary {
  background-color: #578899;
}
.thankYou_imageContainer {
  margin-bottom: 62px;
}
/* ============================================ *
 * MAX WIDTH QUERIES
* ============================================ */
@media (max-width: 979px) {
  .thankYou_message {
    width: 75%;
    font-size: 34px;
    line-height: 40px;
  }
}
@media (max-width: 769px) {
  .thankYou_message {
    width: 80%;
  }
}
@media (max-width: 599px) {
  .thankYou_message {
    width: 90%;
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 479px) {
  .thankYou_message {
    width: 95%;
  }
}
/* ============================================ *
 * MIN WIDTH QUERIES
 * ============================================ */
