.main_content {
  width: 100%;
  padding: 20px 0;
}

.contact_container {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  margin: 20px auto;
  box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
  border-radius: 6px;
  overflow: hidden;
  flex-direction: row;
}

.left_cont {
  align-items: flex-start;
  width: 50%;
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
}

.left_cont img {
  height: 80px;
  margin-bottom: 20px;
  border-radius: 41px;
  padding: 0 20px;
  background: white;
}

.right_cont {
  width: 50%;
}

.contact_data {
  margin: 5px;
  color: #fff;
}

.contact_data a {
  color: #fff;
}

.contact_container .inluke-icons {
  margin-right: 10px;
  font-size: 20px;
}

.customer_contact_form {
  width: 100%;
  max-width: 350px;
  padding: 20px;
  padding-top: 0;
  border-radius: 4px;
  background-color: #fff;
}

.contact_msg {
  height: 110px;
  padding-top: 3px;
}

@media screen and (max-width: 800px) {
  .contact_container {
    flex-direction: column;
    height: auto;
    border-radius: 0;
  }

  .left_cont {
    width: 100%;
  }

  .right_cont {
    width: 100%;
  }
}
