.contact-page_container {
  display: grid;
  grid-template-rows: auto auto;
  gap: 2vw;
  justify-content: center;
  margin-top: 50px;
}

.contact_address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
  justify-content: center;
}

.contact_address div {
  background-color: #fbfbfb;
  height: 30vh;

  width: 42vw;
  border: 1px solid #deefd9;
  border-radius: 16px;
  display: grid;
  align-content: center;
  justify-content: center;
}

.contact_address_col-1 ul {
  list-style: none;
  display: flex;
  margin: 30px 73px 0 0;
}

.contact_address_col-1 li {
  padding-left: 25px;
}

.contact_address_col-1 li a:hover {
  font-weight: bolder;
  transition: var(--animation-time) var(--animation-rendering);
}

.contact_address_col-2 {
  padding: 0 1vw;
}
.map iframe{
    width:100%;
    height:100%;
}
.social {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2vw;
    align-content: center;
    justify-content: center;
    margin-bottom: 80px;
}

.social a {
  background-color: #fbfbfb;
  height: 25vh;
  border: 1px solid #deefd9;
  border-radius: 16px;
  display: grid;
  align-content: center;
  justify-content: center;
}

.social a:hover {
  border: 2px solid #deefd9;
  transition: var(--animation-time) var(--animation-rendering);
}

.get-in-touch {
  display: grid;
  grid-template-columns: 60% 40%;
  margin-bottom: 120px;
  align-items: center;
}

.contact__form {
  border-radius: 16px;
  padding: 0 30px;
  box-sizing: border-box;
  box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.3);
  text-align: right;
  min-height: 70vh;
}

.contact__form span {
  text-align: right;
}

.contact__form label {
  text-align: right;
  margin: 12px 0;
}

.contact__form input,
textarea {
  width: 100%;
  padding: 10px 20px 10px 10px;
  outline: none;
  box-sizing: border-box;
  resize: none;
  border: none;
  border-radius: 8px;
  background-color: #fbfbfb;
}

.contact__form textarea {
  margin-bottom: 30px;
  min-height: 110px;
}

.contact__form textarea::-webkit-scrollbar {
  width: 4px;
}
.contact__form textarea::-webkit-scrollbar-thumb {
  background-color: #5fb345;
}

.input_icon {
  position: absolute;
  padding: 9px 8px;
}

.input_icon-profile:after {
    position: absolute;
    right: 20px;
    top: 33px;
    content: "";
    width: 20px;
    height: 25px;
    z-index: 888;
    background: url("/Content/resources/Images/contact/person.form.png") no-repeat !important;
}

.input_icon-phone:after {
    position: absolute;
    right: 20px;
    top: 33px;
    content: "";
    width: 20px;
    height: 20px;
    z-index: 888;
    background: url("/Content/resources/Images/contact/phone-form.png") no-repeat !important;
}

.submit_container {
  margin-bottom: 10px;
  cursor: pointer;
}

.submit_container span {
  background-color: #b80f35;
  padding: 18px;
  border-radius: 12px;
}

.submit_container span:last-of-type {
  margin-left: -20px;
}
.submit_container button {
  color: #ffffff;
  background-color: #b80f35;
  border: 0;
  font-size: 16px;
  cursor: pointer;
}

.submit_container button:hover {
  font-weight: bolder;
  transition: var(--animation-time) var(--animation-rendering);
}

/* -----------------------------Media Query-------------------------------- */

@media screen and (max-width: 800px) {
  .contact_address_col-1 ul {
    flex-direction: column;
  }

  .social {
    grid-template-columns: 1fr 1fr;
  }

  .submit_container button {
    font-size: 14px;
  }

  .submit_container img {
    height: 3vh;
    margin-top: 8px;
  }
}

