#contact h1,
#contact h2,
#contact h3 {
  color: rgb(63, 58, 58);
}

.contact-page {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-page .form {
  width: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1rem;
}

.contact-page form {
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}

.contact-page .info {
  width: 40%;
  padding: 2rem 1rem;
}

.contact-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* align-items: center; */
  margin-bottom: 0.5rem;
}

.contact-row input,
.contact-row select {
  width: 100%;
  padding: 0.5rem 1rem;
}

.contact-message{
  margin-bottom: 1.5rem;
}

.contact-message textarea {
  width: 100%;
  height: 60px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-button {
  width: 100%;
  text-align: right;
}

.contact-button input {
  width: 150px;
  padding: 0.725rem 0;
  background: var(--secondary-color);
  border: none;
  outline: none;
  color: white;
  font-weight: 600;
}

#contact .info h2 {
  margin-bottom: 2rem;
}

.box-contact {
  margin-bottom: 35px;
}

.box-contact h3 {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.f-l {
  margin-top: 1rem;
}

.social-link {
  width: 150px;
  background: var(--secondary-color);
  padding: 0.5rem 1rem;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--primary-color);
}

.input-style {
  position: relative;
  height: 50px;
}

.input-style input,
.input-style select,
.input-style textarea {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0rem 1rem 0 2rem;
  border-radius: 10px;
  background: #f1f1f1;
  border: none;
  width: 90%;
  height: 100%;
}

.message-style,
.input-style textarea {
  height: 100px;
  display: block;
}

.input-style input[type="submit"] {
  width: 90%;
  font-weight: 700;
  letter-spacing: 0.15rem;
  padding: 0;
  color: white;
  background: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.input-style input[type="submit"]:hover {
  background: var(--secondary-color);
}

.contact-style {
  width: 100%;
}

.contact-style input,
.contact-style select,
.contact-style textarea {
  width: 100%;
}

.contact-style input[type="submit"] {
  width: 49%;
}
.input-style label {
  position: absolute;
  top: 0.9rem;
  left: 0;
  z-index: 3;
  padding-left: 1rem;
  font-size: 0.85rem;
}

.two {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.two .single-input {
  width: 49%;
}

.contact {
  display: flex;
  justify-content: space-between;
}

.contact-title {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.contact-title::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  height: 2px;
  background: var(--primary-color);
}

.text {
  margin-bottom: 2rem;
}

.contactBox {
  width: 50%;
}

.contact-details {
  width: 45%;
}

.details-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}

.details-box .icon {
  margin-right: 2rem;
}

.one{
  margin-bottom: 1.5rem;
}