.contact_container {
  position: relative;
  height: 800px;

  @media screen and (max-width: 880px) {
    height: 900px;
  }

  @media screen and (max-width: 450px) {
    height: 900px;
  }
}

.contact_us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  width: 720px;
  /* padding: 80px 0; */
  gap: 30px;
  font-size: 16px;
  position: absolute;
  top: -110px;
  /* padding: 30px 40px; */
  background-color: var(--secondary-color);
  /* overflow: hidden; */
  border-radius: 30px;

  @media screen and (max-width: 880px) {
    width: 90%;
  }

  .contact_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 40px;

    @media screen and (max-width: 880px) {
      font-size: 14px;
    }

    @media screen and (max-width: 480px) {
      padding: 0 15px;
    }

    .contact_item {
      display: flex;
      gap: 20px;

      .item_content {
        display: flex;
        flex-direction: column;
        gap: 5px;

        a {
          text-decoration: none;
          color: #fff;
          font-weight: 500;
        }
      }
    }
  }
}

.contact_head {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  padding: 0 40px;
  padding-top: 30px;

  @media screen and (max-width: 880px) {
    font-size: 18px;
  }

  @media screen and (max-width: 480px) {
    font-size: 15px;
    padding: 30px 15px 0 15px;
  }
}

.contact_title {
  position: absolute;
  top: -190px;
  background-color: #fdfdfd;
  display: flex;
  align-items: center;
  width: 720px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;

  @media screen and (max-width: 880px) {
    width: 90%;
  }

  p {
    display: flex;
    height: 100%;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    background-color: #a9e5ff;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
  }
}

.share_button {
  position: absolute;
  top: 0;
  left: -90px;

  @media screen and (max-width: 880px) {
    top: unset;
    bottom: -80px;
    left: 0;
  }
}

.maps {
  width: 100%;
  height: 400px;
  background-color: #ffffff47;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;

  @media screen and (max-width: 480px) {
    padding: 20px;
  }

  .map {
    height: 100%;
    width: 100%;
    border-radius: 15px;
  }
}
