.hr-appointment {
    background-color: #e6eff4;
}
.hr-contact-wrap {
    position: relative;
    z-index: 1;
}
.hr-appoint-form {
    margin-bottom: 30px;
}
.hr-appoint-form input {
    height: 55px;
    padding:0 30px;
    background: #f4f4f4;
    width: 100%;
    font-size: 14px;
    color: var(--color-4);
    outline: none;
    border: none;
    display: block;
}
.form-control:focus {
    border-color: var(--color-3);
    box-shadow: none;
}
.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 {
    position: relative;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.hr-contact-detail .hr-single-contact {
    display: flex;
    -moz-column-gap: 30px;
    column-gap: 30px;
    align-items: center;
    margin-bottom: 25px;
}
.hr-contact-detail .hr-single-contact .hr-icon {
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-3);
    font-size: 31px;
    color: #fff;
    line-height: 90px;
}
.hr-details {
    list-style-type: none;
    padding-left: 0;
    width: 72%;
    word-break: break-word;
}
.hr-contact-detail .hr-single-contact .hr-details .option-title h6 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-4);
    margin-bottom: 12px;
    font-family: var(--font-02);
}
.hr-contact-detail .hr-single-contact .hr-details .option {
    font-size: 16px;
    color: var(--color-4);
    font-weight: 600;
    font-family: var(--fon-01);
}
.hr-contact-detail .hr-single-contact .hr-icon.them-1 {
    background: var(--color-4);
}
.mb-20 {
    margin-bottom: 20px;
}
.hr-select {
    height: 42px;
    padding: 0 25px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    color: #636363;
}
.form-control {
    width: 100%;
    outline: none;
    padding: 0 25px;
    line-height: 60px;
    font-size: 16px;
    color: var(--color-4);
    background-color: #f6f7f9;
    border: 1px solid transparent;
    border-radius: 0;
}
.g-recaptcha {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
}
.hr-contact-form-box{
    margin-left: 75px;
}
/*.form-group {
  display: block;
}
.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content:'';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--color-3);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 5px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}

.form-group input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #0079bf;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}*/
@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%;
    }
    .hr-contact-form-box{
        margin-left: 0px;
    }
}
@media (max-width: 425px) {
    .hr-contact-detail {
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .hr-contact-detail .hr-single-contact {
/*        flex-direction: column;*/
        row-gap: 30px;
        align-items: start;
    }
}