/* -------- contact us page --------- */
.location {
  width: 80%;
  margin: auto;
  padding: 40px 0 80px 0;
  height: fit-content;
  text-align: center;
}

.location h2 {
  font-size: 3rem;
  font-weight: 600;
  color: transparent;
  background-image: conic-gradient(#553c9a 0%, #553c9a 33%, #ee4b2b 33%, #ee4b2b 66%, #00c2cb 66%, #00c2cb 99%);
  background-clip: text;
  -webkit-background-clip: text;
}

.location iframe {
  margin-top: 60px;
  width: 100%;
}

.contact-us {
  width: 80%;
  margin: auto;
}

.myrow {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.contact-col {
  flex-basis: 48%;
  margin-bottom: 30px;
  overflow: hidden;
}

.contact-col div {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.contact-col div .fa {
  font-size: 28px;
  color: #f44336;
  margin: 10px;
  margin-right: 30px;
}

.contact-col div p {
  padding: 0;
}

.contact-col div h5 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #555;
  font-weight: 300;
}

.contact-col input,
.contact-col textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 17px;
  outline: 1px solid #ccc;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.red-btn {
  display: inline-block;
  text-decoration: none;
  color: #d73333;
  border: 1px solid #f03333;
  border-radius: 25px;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.red-btn:hover {
  color: #fff;
  border: 1px solid #f44336;
  background: #f44336;
  transition: 0.2s;
}

label {
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #413a3a;
  /* border: 2px solid red; */
}

@media (max-width: 768px) {
  .location {
    width: 90%;
    margin-top: 1rem;
    padding: 4rem 1rem;
  }

  .location h2 {
    margin-bottom: 1.5rem;
  }

  .location iframe {
    width: 100%;
    margin: auto;
  }

  .myrow {
    flex-direction: column;
  }

}