.hr-appointment {
  background-color: #e6eff4;
}
.hr-contact-wrap {
	background: #e6eff4;
	position: relative;
	z-index: 1;
	padding: 50px;
	background: linear-gradient(90deg, rgba(232, 82, 5, 0.98) 0%, rgba(250, 170, 130, 1) 100%);
	border-radius: 20px 20px 0px 0px;
}
.hr-contact-wrap > .row {
	row-gap: 50px;
}
.hr-appoint-form {
  margin-bottom: 30px;
}
.hr-appoint-form input {
	padding: 15px 25px;
	background: #fff;
	border-radius: 5px;
	width: 100%;
	font-size: 16px;
	color: #636363;
	outline: none;
	border: none;
	margin-bottom: 20px;
	display: block;
}
.hr-appoint-form .appoint-btn {
  height: 50px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  background: var(--color-4);
  transition: all 0.3s ease;
  width: 100%;
  border: none;
  outline: none;
  font-size: 17px;
  text-transform: uppercase;
}
.hr-appoint-form .appoint-btn:hover {
  background: var(--color-3);
}
.hr-contact-detail {
	border-radius: 50px;
	background-color: #fff;
	width: 100%;
	padding: 50px 20px;
	margin-left: 0;
	position: relative;
	list-style-type: none;
	display: flex;
	align-items: start;
}
.submit-btn {
	background: #fff;
	color: var(--color-1);
	border: none;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.form-content {
  text-align: center;
  padding-bottom: 50px;
}
.hr-section-content.form-content h2 {
  color: #fff;
}
.hr-section-content.form-content p {
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.hr-btn.btn-main.submit-btn {
	color: var(--white);
	background-color: #000;
	margin: 0 auto;
	width: 40%;
}
.hr-btn.btn-main.submit-btn:hover {
	background: #fff;
	color: var(--color-1);
}
/*.hr-contact-detail::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--color-4);
  left: 10px;
  top: 0;
  border-radius: 50px;
  z-index: -1;
}*/
.hr-contact-detail .hr-single-contact {
	display: flex;
	gap: 30px;
	align-items: center;
	margin-bottom: 0;
	width: 33%;
	flex-direction: column;
	justify-content: center;
}
.hr-contact-detail .hr-single-contact .hr-icon {
	height: 75px;
	width: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-1);
	font-size: 31px;
	color: #fff;
	border-radius: 50%;
}
.hr-details {
	list-style-type: none;
	padding-left: 0;
	width: 100%;
	text-align: center;
}
.hr-contact-detail .hr-single-contact .hr-details .option-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.hr-contact-detail .hr-single-contact .hr-details .option-title h6 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}
.hr-contact-detail .hr-single-contact .hr-details .option {
  font-size: 22px;
  color: #333;
}
.hr-contact-detail .hr-single-contact .hr-icon.them-1 {
	background: var(--color-1);
}
.hr-select {
  height: 42px;
  padding: 0 25px;
  border-radius: 5px;
  width: 100%;
  font-size: 16px;
  color: #636363;
}
.form-control {
  padding: 10px 25px;
}
@media (max-width: 1200px) {
  .hr-contact-detail {
    margin-left: 0;
    padding: 50px;
    max-width: 400px;
  }
  .hr-contact-detail .hr-single-contact .hr-icon {
    height: 50px;
    width: 50px;
    font-size: 22px;
  }
  .hr-contact-detail .hr-single-contact .hr-details .option {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .hr-contact-detail {
    max-width: 100%;
    margin: auto;
  }
  .hr-details {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .hr-contact-detail {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .hr-contact-detail .hr-single-contact {
    row-gap: 30px;
    align-items: start;
  }
}
