.contact_us_form {
  position: fixed;
  z-index: 6;
  background: #FEFDFE;
  padding: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #4A4D51;
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 770px;
  box-sizing: border-box;
  justify-content: space-between;
}

.hide {
  display: none;
}

.cu__form_title {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 63px;
  margin-top: 0;
  margin-bottom: 40px;
  width: 100%;
  text-align: center;
}

.cu__form_input_container {
  width: 100%;
  max-width: 310px;
}

.cu_form_input {
  width: 100%;
  height: 50px;
  background: #F4F9FF;
  border: none;
  box-sizing: border-box;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  margin-bottom: 16px;
  padding: 16px 20px;
}

.cu_form_input:hover {
  border: 1px solid #4AD9FE;
  box-sizing: border-box;
}

.cu__form_textarea_container {
  width: 100%;
}

.cu_form_textarea {
  width: 100%;
  height: 152px;
  background: #F4F9FF;
  border: none;
  box-sizing: border-box;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  padding: 0 20px;
  margin-bottom: 40px;
}

.cu_form_textarea:hover {
  border: 1px solid #4AD9FE;
}

.cu_form_label {
  display: block;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 16px;
}

.button_wrapper {
  width: 100%;
  text-align: right;
}

#contact_us_submit {
  padding: 20px 60px;
  background: #F14B59;
  color: #FEFDFE;
  font-family: Poppins;
  font-style: normal;
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}

#contact_us_submit:hover {
  background-color: #181C22;
}

@media screen and (max-width: 820px) {
  .cu__form_input_container {
    max-width: 100%;
  }
}

@media screen and (max-width: 520px) {
  .contact_us_form {
    padding: 30px;
  }
}
