.main {
  font-family: "Times New Roman", Times, serif;
  background: linear-gradient(var(--Golden), var(--light-golden));
}

.contact-container {
  display: grid;
  grid-auto-columns: 420px 470px;
  grid-auto-rows: auto auto;
  grid-auto-flow: column;
  grid-template-areas:
    "cl cr"
    "r2 r2";
  height: 100%;
  align-items: start;
  justify-items: center;
  column-gap: 20px;
  justify-content: center;
}

.contact-left {
  grid-area: cl;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 0 10px;
}

.contact-left-title {
  font-weight: 600;
  color: var(--grey-gold);
  font-size: 40px;
  margin-bottom: 5px;
}

.contact-sub-heading1 {
  display: block;
  font-size: 1.5em;
  font-weight: bold;
}

.contact-sub-heading2 {
  display: block;
  font-size: 0.5em;
  font-weight: bold;
  margin-bottom: 0;
}

.contact-left-title hr {
  border: none;
  background-color: var(--grey-gold);
  width: 120px;
  height: 5px;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-top: 10px;
  float: left;
}

.contact-inputs {
  width: 400px;
  height: 50px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}

.contact-inputs-hidden {
  display: none;
}

.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}

.contact-inputs:focus {
  border: 3px solid var(--brown-gold);
}

.contact-inputs::placeholder {
  color: #a9a9a9;
}

.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: var(--white-golden);
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(270deg, var(--brown-gold), var(--black-gold));
  cursor: pointer;
}

.contact-left button:hover {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  text-shadow: 0.33px 0.33px var(--white-golden);
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(315deg, var(--brown-gold), var(--black-gold));
  cursor: pointer;
}

.contact-left button img {
  height: 15px;
}

.contact-right {
  grid-area: cr;
}

.contact-right img {
  /* flex: 1 1 450px; */
  width: 450px;
  margin-top: 150px;
}

.contact-bottom {
  grid-area: r2;
  text-align: center;
}

.contact-bottom p:first-child {
  text-align: justify;
  padding: 0 10px;
}

.contact-bottom .contact-media-links a img {
  width: 30px;
  height: 30px;
  margin: 0 10px;
}

/* error message */
#error-message {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1rem;
  color: var(--claret);
  background-color: var(--soft-red);
  border-radius: 0 0 5px 5px;
}

@media (max-width: 1030px) {
  .contact-container {
    column-gap: 0;
  }

  .contact-left {
    text-align: center;
    padding-left: 25px;
  }

  .contact-bottom p {
    padding-left: 25px;
  }

  .contact-right img {
    width: 400px;
  }

  .contact-inputs {
    width: 350px;
    height: 45px;
    padding: 0 20px;
    border-radius: 45px;
  }
}

@media (max-width: 873px) {
  .contact-container {
    display: grid;
    grid-auto-columns: auto;
    grid-auto-rows: auto auto;
    grid-auto-flow: column;
    grid-template-areas:
      "cl"
      "r2";
    justify-items: center;
  }

  .contact-right {
    display: none;
  }

  .contact-inputs {
    padding: 0 20px;
  }

  #ek-site-page .contact-bottom p {
    font-size: 0.9rem;
  }
}

@media (max-width: 450px) {
  .contact-inputs {
    width: 325px;
    height: 42px;
    padding: 0 20px;
    border-radius: 42px;
  }

  .contact-sub-heading1 {
    font-size: 1em;
  }

  .contact-sub-heading2 {
    display: block;
    font-size: 0.4em;
    font-weight: bold;
    margin-bottom: 0;
  }

  #ek-site-page .contact-bottom p {
    font-size: 0.85rem;
  }
}
