.contactUs_container {
  position: relative;
  background-image: url("../assets/imgs/bg_contact_us.webp");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contactUs_container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.details_part {
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  height: 500px;
}

.form_part {
  z-index: 2;
}

.details_part a {
  text-decoration: none;
  color: black;
  font-size: 20px;
}

.details_part p {
  font-size: 20px;
}

.input_form::placeholder,
textarea::placeholder {
  color: black !important;
  opacity: 1 !important;
}

.input_form {
  border: none;
  border-radius: 50px;
  height: 50px;
  color: black;
  background-color: rgba(255, 255, 255, 0.583);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  width: 100%;
}

.input_form:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.7);
}

.form_part textarea {
  border: none;
  border-radius: 20px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.583);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  width: 100%;
  resize: none;
}

.btn_form {
  border: none;
  background-color: rgba(255, 255, 255, 0.7);
  height: 60px;
  border-radius: 50px;
  width: 50%;
  position: relative;
  font-size: 30px;
  padding-right: 25px;
}

.circle_profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  position: absolute;
  top: -15%;
  left: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_profile::before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 20;
  left: 20;
}

.inner_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner_circle::before {
  content: "";
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 20;
  left: 20;
}

@media (max-width: 1024px) {
  .btn_form {
    height: 60px;
    font-size: 15px;
    width: 80%;
    padding-right: 50px;
  }

  .circle_profile {
    width: 70px;
    height: 70px;
    top: -7%;
    left: 65%;
  }

  .circle_profile::before {
    width: 90%;
    height: 90%;
    top: 20;
    left: 20;
  }

  .inner_circle {
    width: 25px;
    height: 25px;
  }

  .inner_circle::before {
    width: 70%;
    height: 70%;

    top: 20;
    left: 20;
  }
}

@media (max-width: 1080px) {
  .btn_form {
    height: 60px;
    font-size: 18px;
    width: 70%;
    padding-right: 50px;
  }

  .circle_profile {
    width: 70px;
    height: 70px;
    top: -7%;
    left: 65%;
  }

  .circle_profile::before {
    width: 90%;
    height: 90%;
    top: 20;
    left: 20;
  }

  .inner_circle {
    width: 25px;
    height: 25px;
  }

  .inner_circle::before {
    width: 70%;
    height: 70%;

    top: 20;
    left: 20;
  }
}

@media (max-width: 600px) {
  .btn_form {
    height: 50px;
    font-size: 16px;
    width: 70%;
    padding-right: 45px;
  }

  .circle_profile {
    width: 70px;
    height: 70px;
    top: -15%;
    left: 65%;
  }

  .circle_profile::before {
    width: 90%;
    height: 90%;
    top: 20;
    left: 20;
  }

  .inner_circle {
    width: 25px;
    height: 25px;
  }

  .inner_circle::before {
    width: 70%;
    height: 70%;

    top: 20;
    left: 20;
  }
}
