#reachout {
  z-index: 101;
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.alertmsg {
  color: var(--r-main);
  font-weight: 400;
  margin-left: 10px;
  display: none;
}

.modal_container {
  width: clamp(720px,50vw,960px);
  min-height: 480px;
  height: 80vh;
  top: 0;
  align-self: center;
  padding: clamp(30px,3.6vh,54px) clamp(30px,2.4vw,54px);
  border-radius: 40px;
  overflow: hidden;
  background: linear-gradient(
    113deg,
    rgba(0, 0, 0, 0.88) -22.71%,
    rgba(0, 0, 0, 0.39) 112.99%
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: scaleUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.out .modal_bg {
  animation: fadeOut 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.out .modal_container {
  animation: scaleDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.modal_header {
  width: 100%;
  height: 10%;
  padding: 0 0 20px;
  top: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.modal_header svg:hover {
  filter: drop-shadow(0 0 8px var(--r-light));
}
.modal_header svg:hover path {
  fill: var(--r-main);
}
.modal_content {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 85%;
  /* padding: 0 30px 30px 30px; */
  justify-content: space-between;
}
.modal_desc {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  & #contact-modal-img {
    margin: 25px 25px 35px 25px;
    height: 320px;
    width: 100%;
    background-image: url(../asset/contact/contact_character.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.modal_input {
  width: 50%;
  height: 100%;
  overflow-y: scroll;
}

input[type="text"] {
  width: 90%;
  padding: 12px 20px;
  margin: 10px 10px;
  border: 1px solid var(--white);
  border-radius: 24px;
  box-sizing: border-box;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  transition: all 300ms;
}
input[type="text"]:hover,
input[type="text"]:focus {
  border: 1px solid var(--g-light);
  box-shadow: 0 0 5px var(--g-light);
}
input:-webkit-autofill {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--white);
  transition: background-color 5000s ease-in-out 0s;
}

textarea {
  resize: none;
  word-wrap: break-word;
  width: 90%;
  padding: 12px 20px;
  margin: 10px 10px;
  border: 1px solid var(--white);
  border-radius: 24px;
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  transition: all 300ms;
}
textarea:hover,
textarea:focus {
  border: 1px solid var(--g-light);
  box-shadow: 0 0 5px var(--g-light);
}
@media only screen and (max-width: 500px) {
  .intro_navi {
    display: none;
  }
}

@media only screen and (min-height: 740px) {
  .modal_container {
    height: fit-content;
  }
}
.check {
  width: 90%;
  height: fit-content;
  margin: 10px;
  display: flex;
  flex-direction: row;
  align-content: center;
  position: relative;
  cursor: pointer;
}
.check label {
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 14px;
  padding-left: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  /* cursor: pointer; */
  height: 24px;
  width: 24px;
  top: 33%;
  left: 0;
  z-index: 15;
}
.checkmark {
  position: absolute;
  top: 33%;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  border: solid 1px var(--white);
  transition: all 300ms;
}
.check:hover .checkmark {
  box-shadow: 0 0 10px var(--g-light);
}
.check input:checked ~ .checkmark svg {
  display: block !important;
}
.check label a:hover {
  text-shadow: 0 0 7px var(--g-light);
  text-decoration: underline !important;
}

.modal_input input[type="submit"] {
  width: 90%;
  border-radius: 999px;
  padding: 8px 0;
  margin: 8px 10px;
  border: solid 2px var(--g-light);
  color: var(--g-light);
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 20px;
  transition: all 300ms;
  cursor: pointer;
}
.modal_input input[type="submit"]:hover {
  border: solid 2px var(--g-main);
  color: var(--white);
  background-color: var(--g-main);
  box-shadow: 0 0 10px var(--g-light);
}
.modal_input input[type="submit"]:active {
  color: var(--white-s);
  background-color: var(--g-main-s);
  border: solid 2px var(--g-main-s);
  box-shadow: none;
}

@media only screen and (max-width: 800px) {
  .modal_container {
    width: 400px;
    height: 480px;
    overflow: hidden;
    margin: 0 24px;
    padding: 24px 28px;
  }
  .modal_header h1 {
    font-size: clamp(24px, 4vw, 32px) !important;
  }
  .modal_desc {
    width: 100%;
    height: fit-content;
    margin-bottom: 20px;
  }
  .modal_desc {
    display: none;
  }
  .modal_desc p {
    font-size: max(12px, 2vw);
  }
  .modal_content {
    flex-direction: column;
    justify-content: left;
  }
  .modal_input {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
  }
  .modal_input input,
  .modal_input textarea {
    margin: 10px 0;
  }
}

.contact_map {
  width: 100vw;
  height: fit-content;
  padding: 100px 0px;
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
}
.map_container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  & iframe {
    height: 50vh;
  }
}
.map_container h1 {
  color: var(--g-light);
  font-family: "Raleway", sans-serif;
  font-size: max(28px, 5vw);
  font-style: normal;
  padding: 0 15px;
  font-weight: 700;
}

.contact_call {
  width: 100%;
  height: fit-content;
  padding: 100px 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}
.contact_call svg {
  scale: 0.9;
  z-index: 1;
  position: absolute;
  align-self: center;
}
.phone_num {
  color: var(--b-light);
  font-size: min(5vw, 24px);
  padding: 15px 40px;
  border: solid 2px var(--b-light);
  margin: 25px 0;
  border-radius: 999px;
  cursor: pointer;
  transition: all 300ms;
  z-index: 2;
  &:hover {
    background-color: var(--b-main);
    box-shadow: 0 0 30px var(--b-light);
    border-color: var(--b-main);
    color: var(--white);
    &:active {
      background-color: var(--b-main-s);
      color: var(--white-s);
      box-shadow: none;
      border-color: var(--b-main-s);
    }
  }
}
