table.mg-banner-section-main {
  width: 100%;
  border-collapse: collapse;
}
.mg-banner-section-main > tbody > tr > td {
  border: 7px solid #000;
}
table.mg-banner-section-main > tbody > tr > td:last-child {
  background-color: #000;
}
table.mg-banner-section-main > tbody > tr > td:first-child, table.mg-banner-section-main > tbody > tr > td:last-child {
  width: 25%;
}
@media only screen and (max-width: 1024px) {
  table.mg-banner-section-main > tbody > tr > td:first-child, table.mg-banner-section-main > tbody > tr > td:last-child {
    width: auto;
  }
  .mg-testimonials {
    width: 100%;
  }
  table.mg-banner-section-main > tbody > tr {
    display: grid;
  }
  table.mg-banner-section-main > tbody > tr > td:nth-child(1) {
    order: 2;
  }
  table.mg-banner-section-main > tbody > tr > td:nth-child(2) {
    order: 1;
  }
  table.mg-banner-section-main > tbody > tr > td:nth-child(3) {
    order: 3;
  }
}

/*contact*/
.mg-contact-us-main {
  padding: 10px;
  background-color: orange;
}
.mg-contact-us-main .mg-c-heading {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}
.mg-contact-us-main .mg-c-field {
  margin-bottom: 10px;
}
.mg-contact-us-main label {
  display: none;
  font-size: 16px;
  font-weight: bold;
}
.mg-contact-us-main input, .mg-contact-us-main textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid #ddd;
}
.mg-contact-us-main textarea {
  height: 80px;
}
.mg-contact-us-main button {
  width: 100%;
  padding: 15px 70px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}
.mg-alert {
  color: #fff;
  padding: 15px;
  position: relative;
}
.mg-alert.mg-a-success {
  background-color: #00a65a;
}
.mg-alert.mg-a-danger {
  background-color: #dd4b39;
}
.mg-alert .mg-a-close-btn {
  position: absolute;
  top: 6px;
  right: 10px;
  color: #fff;
  font-size: 31px;
}