/**
 * @tableofcontents
 *
 * 1. Gift Card Section
 * 2. Gallery Image Section
    a. Modal for Image gallery
 * 3. For Tablet and Small Screens
 * 4. For small and Mobile Screens
 *
 */
/* @Section 1. Gift Card Section */
/*Contact Form Section  || Begins*/
.contactSec {
  background-color: var(--gray-50);
  padding: 100px 0;
}
.contactSec .contactWrappper {
  max-width: 1000px;
  margin: 0 auto;
}
.contactSec .contactWrappper .contactUsSecContent .applyBnrHeading {
  color: var(--white);
}
.contactSec .contactWrappper .contactUsSecContent .applyBnrPara {
  color: var(--snow);
  max-width: 700px;
}
.contactSec .contactWrappper .formWrapper .fieldHeading {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}
.contactSec .contactWrappper .formWrapper .inputWrapper {
  position: relative;
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error input {
  border-color: var(--error);
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error .formLable {
  transform: translateY(-50%) scale(0.8);
  background-color: var(--gray-50);
  padding: 0 0.2em;
  color: var(--error);
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error .formLable.textArea {
  top: 0;
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error .inputField:focus {
  outline: none;
  border: 1.5px solid var(--error);
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error .inputField:focus ~ label {
  transform: translateY(-50%) scale(0.8);
  background-color: var(--gray-50);
  padding: 0 0.2em;
  color: var(--error);
}
.contactSec .contactWrappper .formWrapper .inputWrapper.error small {
  visibility: visible;
  top: 54px;
}
.contactSec .contactWrappper .formWrapper .inputWrapper small {
  color: var(--error);
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}
.contactSec .contactWrappper .formWrapper .inputWrapper .success input {
  border-color: green;
}
.contactSec .contactWrappper .formWrapper .inputWrapper .inputField {
  border: 1px solid #898383;
  background: none;
  padding: 0.75rem;
  color: var(--white);
  width: 100%;
  transition: border 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.contactSec .contactWrappper .formWrapper .inputWrapper .inputField:focus {
  outline: none;
  border: 1.5px solid var(--golden_brown);
}
.contactSec .contactWrappper .formWrapper .inputWrapper input.inputField::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.contactSec .contactWrappper .formWrapper .inputWrapper .formLable {
  position: absolute;
  left: 15px;
  color: #e8e8e8;
  pointer-events: none;
  transform: translateY(1rem);
  transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  background-color: var(--gray-75);
}
.contactSec .contactWrappper .formWrapper .inputWrapper .formLable.textArea {
  top: 0;
}
.contactSec .contactWrappper .formWrapper .inputWrapper .inputField:focus ~ label {
  transform: translateY(-50%) scale(0.8);
  background-color: var(--gray-50);
  padding: 0 0.2em;
  color: var(--golden_brown);
}
.contactSec .contactWrappper .formWrapper .inputFilled .inputField ~ .formLable {
  transform: translateY(-50%) scale(0.8);
  background-color: var(--gray-50);
  padding: 0 0.2em;
  color: var(--white);
}
.contactSec .contactWrappper .formWrapper .radioWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  margin-bottom: 15px;
}
.contactSec .contactWrappper .formWrapper .radioWrapper label {
  display: block;
  position: relative;
  padding-left: 30px;
  color: var(--white);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contactSec .contactWrappper .formWrapper .radioWrapper label:hover input ~ .radioCheckmark {
  background-color: var(--golden_brown);
}
.contactSec .contactWrappper .formWrapper .radioWrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.contactSec .contactWrappper .formWrapper .radioWrapper input:checked ~ .radioCheckmark {
  background-color: var(--golden_brown);
}
.contactSec .contactWrappper .formWrapper .radioWrapper input:checked ~ .radioCheckmark:after {
  display: block;
}
.contactSec .contactWrappper .formWrapper .radioWrapper .radioCheckmark {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #898383;
}
.contactSec .contactWrappper .formWrapper .radioWrapper .radioCheckmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper {
  display: flex;
  flex-direction: column;
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .cbx:not(:last-child) {
  margin-right: 6px;
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .cbx:hover {
  background: rgba(0, 119, 255, 0.06);
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
  color: var(--white);
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  transform: scale(1);
  border: 1px solid #898383;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}
.contactSec .contactWrappper .formWrapper .CheckBoxWrapper .errorMessage {
  margin-left: 8px;
}
.contactSec .contactWrappper .formWrapper .ctaWrapper {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.contactSec .contactWrappper .formWrapper .ctaWrapper .file {
  margin-right: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactSec .contactWrappper .formWrapper .ctaWrapper .file input {
  margin-left: 8px;
  color: var(--white);
}
.contactSec .contactWrappper .formWrapper .ctaWrapper .file input::file-selector-button {
  display: none;
}
.contactSec .contactWrappper .formWrapper .ctaWrapper .file label {
  padding: 18px 1.25rem;
  color: var(--white);
  transition: all 0.3s;
  min-width: 200px;
  white-space: nowrap;
  outline: 1px solid #898383;
  display: flex;
  letter-spacing: 0.15rem;
  align-items: center;
}
.contactSec .contactWrappper .formWrapper .ctaWrapper .file label svg {
  margin-right: 10px;
}

/*Contact Form Section  || Begins*/
.otherLocationsSec {
  padding: 30px 0 60px;
}
.otherLocationsSec .otherLocHeading {
  text-align: center;
  margin-bottom: 32px;
}
.otherLocationsSec .otherLocationDetails {
  text-align: center;
}
.otherLocationsSec .otherLocationDetails .otherLoctionContactDetails {
  margin-top: 8px;
}
.otherLocationsSec .otherLocationDetails .otherLoctionContactDetails p {
  color: var(--heading_color);
}
.otherLocationsSec .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.otherLocationsSec .owl-dots button.owl-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--gray-25);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}
.otherLocationsSec .owl-dots button.owl-dot.active {
  background-color: var(--orange-75);
}
.otherLocationsSec .owl-grab .testomonialOwlSldrContentBox {
  cursor: grabbing;
}

@media screen and (max-width: 1024px) {
  .contactSec .contactWrappper .formWrapper .inputWrapper {
    margin-top: 16px;
  }
}
@media screen and (max-width: 786px) {
  .contactSec {
    padding: 38px 0;
  }
  .contactSec .contactWrappper .formWrapper .row.mt-8 {
    margin-top: 0;
  }
  .contactSec .contactWrappper .formWrapper .inputWrapper .formLable {
    font-size: 12px;
  }
  .contactSec .contactWrappper .formWrapper .inputWrapper input.inputField {
    font-size: 12px;
    padding: 16px;
  }
  .contactSec .contactWrappper .formWrapper .ctaWrapper {
    display: block;
  }
  .contactSec .contactWrappper .formWrapper .ctaWrapper .file {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .contactSec .contactWrappper .formWrapper .ctaWrapper .file label {
    justify-content: center;
  }
}
.glbBnrSec {
  min-height: 50vh;
  background: url("../../assets/images/jobs/top_banner.webp") no-repeat top var(--orange-75) !important;
}

@media screen and (max-width: 1024px) {
  .glbBnrSec {
    background: url("../../assets/images/jobs/top_banner_mobile.webp") no-repeat bottom var(--orange-75) !important;
    background-size: 100% !important;
  }
}
.label-text, .secType {
  text-transform: none;
}

select.inputField option {
  color: #0A0A0A;
}

/*# sourceMappingURL=jobs.css.map */
