.contact-us {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 200px;
}
.error-message {
  color: red;
  font-size: 0.8em;
  margin-top: 3px;
  display: none;
}
.error-input {
  border-color: red !important;
}

.contact-us .contact-left {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us .contact-left .left-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 100px;
}

.contact-us .contact-left .left-top .c-wrapper {
  display: flex;
  /* justify-content: center;
    align-items: center; */
  gap: 20px;
  margin-left: 50px;
}
.c-wrapper i {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid grey;
  font-size: 18px;

  border-radius: 50%;
}
.c-wrapper ul li:nth-child(3) {
  font-weight: 400;
  margin-top: 10px;
}
.contact-left .connect-links {
  margin-left: 50px;
  padding-bottom: 20px;
}
.contact-us .contact-right {
  width: 45%;
  background-color: #826302;
  height: 100%;
  border-radius: 50px;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.contact-right h1 {
  font-size: 3.5vw;
  font-weight: 500;
}

.contact-right form {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-direction: column;
  margin-top: 30px;
}

.contact-right form input {
  width: 100%;
  height: 30px;
  border: none;
  border-bottom: 2px solid #000;
  background-color: transparent;
}

.contact-right form input::placeholder {
  color: #000;
}

.contact-right form input:focus {
  border: none;
  outline: none;
  border-bottom: 2px solid #000;
}
.contact-right form textarea {
  padding: 0;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #000;
  resize: none;
}
.contact-right form textarea:focus {
  border: 2px solid #000;
  outline: none;
}
.contact-right form button {
  padding: 15px 10px;
  border: none;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
}

iframe {
  width: 100vw;
  height: 50vh;
}

@media screen and (max-width: 900px) {
  .contact-us {
    gap: 50px;
  }
  .contact-us .contact-left {
    width: 100vw;
    flex-direction: row;
    /* padding: 0 70px; */
    align-items: center;
  }
  .contact-us .contact-left .left-top {
    margin-top: 0;
    width: auto;
  }
  .contact-us .contact-left .connect-links {
    flex-direction: column;
  }
  .contact-us .contact-right {
    width: 90vw;
  }

  .contact-us .contact-left .left-top .c-wrapper {
    margin-left: 30px;
  }
}

.small {
  font-size: 14px;
  font-style: italic;
  color: #3c3a3a;
}

.ccontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Card */
.ccard {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  min-width: 80vw;
  flex-direction: column;
  gap: 25px;
  border-radius: 8px;
  padding: 20px;
}

/* Title */
.ccontact-title {
  color: #000;
  text-transform: uppercase;
  font-family: var(--light-font);
  letter-spacing: 2px;
  font-weight: bold;
  font-size: x-large;
  margin-bottom: 0.5em;
}

/* Input Boxes */
.cinputBox {
  position: relative;
  width: 100%;
}

.cinputBox input,
.cinputBox textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  color: #000;
  font-size: 1em;
  background: transparent;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transition: 0.1s;
  border-bottom-left-radius: 8px;
  resize: none;
}

.cinputBox span {
  margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translateY(-4px);
  margin-left: 10px;
  padding: 10px;
  pointer-events: none;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 3px;
  border-radius: 8px;
}

.cinputBox input:valid ~ span,
.cinputBox input:focus ~ span,
.cinputBox textarea:valid ~ span,
.cinputBox textarea:focus ~ span {
  transform: translateX(113px) translateY(-15px);
  font-size: 0.8em;
  padding: 5px 10px;
  background: #000;
  letter-spacing: 0.2em;
  color: #fff;
  border: 2px;
}

.cinputBox input:valid,
.cinputBox input:focus,
.cinputBox textarea:valid,
.cinputBox textarea:focus {
  border: 2px solid #000;
  border-radius: 8px;
}

/* Button */
.csend-btn {
  height: 45px;
  width: 150px;
  border-radius: 5px;
  border: 2px solid #000;
  cursor: pointer;
  background-color: transparent;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 10px;
}

.csend-btn:hover {
  background-color: #000;
  color: white;
}

.description {
  font-size: 14px;
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
