#info {
  min-height: 800px;
  padding-bottom: 30px;
  border-top: 1px solid black;
  background-color: var(--light-color);
  color: black;
}
.info-title {
  color: white;
  font-weight: 700;
  font-size: 35px;
  padding-left: 20px;
}
.map {
  width: 100%;
  padding: 20px;
}
.info-container {
  background-color: white;
  border-radius: 50px;
  border: black 1px solid;
  padding: 15px;
  margin: 10px;
}
.contact-info-title {
  font-weight: 600;
  font-size: 25px;
}
.info-value {
  font-size: 20px;
}
.contact-form {
  margin-top: 30px;
  background-color: white;
  width: fit-content;
  padding: 20px 50px 20px 50px;
  border-radius: 40px;
}
.email-input {
  margin-top: 20px;
  width: 100% !important;
}
.message-textarea {
  width: 100%;
  margin-top: 20px;
  border: none;
  border-bottom: #ced4da 1px solid;
}
.send-message-title {
  font-weight: 700;
  color: black;
  padding-bottom: 20px;
  font-size: 30px;
  text-align: center;
}
.send-msg-btn {
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%;
  background: transparent;
  border: 2px solid black;
  font-weight: 700;
  font-size: 23px;
  padding: 5px;
  transition: all 0.3s ease;
}
.send-msg-btn:hover {
  background-color: black;
  color: white;
}
.contact-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ced4da;
  width: 50%;
}
.contact-input:focus,
.message-textarea:focus {
  font-weight: 600;
  outline: none;
  border-bottom: 1px solid black;
}
.name-input-container {
  width: 100%;
  display: flex;
  justify-content: center;
  gap:10px;
}