/*---------------------------------
		Colors Variables
-----------------------------------*/
/*---------------------------------
		Opacity
-----------------------------------*/
/*---------------------------------
		Element Colors
-----------------------------------*/
/*----------------
		Font
------------------*/
@font-face {
  font-family: MontserratRegular;
  font-style: normal;
  src: url(../../build/fonts/Montserrat-Regular.woff) format("woff");
}
@font-face {
  font-family: MontserratMedium;
  font-style: normal;
  src: url(../../build/fonts/Montserrat-Medium.woff) format("woff");
}
@font-face {
  font-family: MontserratBold;
  font-style: normal;
  src: url(../../build/fonts/Montserrat-Bold.woff) format("woff");
}
@font-face {
  font-family: MontserratSemiBold;
  font-style: normal;
  src: url(../../build/fonts/Montserrat-SemiBold.woff) format("woff");
}
/*---------------------------------
		Body Text Font Sizes
-----------------------------------*/
/**
 * Add font scale with media query as per configuration on $body-text
 * Ex: @include body-text( h1 );
 * This will add font-size and line-height with different breakpoints.
 */
.why-hero {
  margin-top: 40px;
}
.why-hero figure {
  width: 80px;
  margin-bottom: 24px;
}
@media screen and (min-width: 992px) {
  .why-hero figure {
    width: 120px;
  }
}
.why-hero figure img {
  width: 100%;
}
.why-hero p {
  font-family: "MontserratRegular", sans-serif;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 0;
  color: #4d4d4f;
}
@media screen and (min-width: 992px) {
  .why-hero p {
    font-size: 20px;
    line-height: 26px;
  }
}

.career-opportunities {
  position: relative;
}
.career-opportunities .card {
  background: #f5f5f5;
  border: none;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 30px;
  padding: 28px;
}
.career-opportunities .card h2 {
  font-size: 20px;
  font-family: "MontserratBold", sans-serif;
  margin-bottom: 15px;
}
.career-opportunities .card p {
  font-size: 14px;
  font-family: "MontserratRegular", sans-serif;
  margin-bottom: 10px;
  line-height: 20px;
  width: 100%;
  color: #4d4d4f;
}
.career-opportunities .card p strong {
  font-family: "MontserratSemiBold", sans-serif;
  color: #231f20;
}
@media screen and (max-width: 576px) {
  .career-opportunities .section-head .section-title {
    width: 100%;
    margin-bottom: 15px;
  }
}

.career-opening .preferences {
  font-size: 16px;
  list-style: none;
  margin-bottom: 0;
}
.career-opening .preferences li {
  margin-bottom: 6px;
}
.career-opening .preferences strong,
.career-opening .preferences h3,
.career-opening .preferences h4 {
  font-size: 18px;
  font-family: "MontserratSemiBold", sans-serif;
}
.career-opening .job-description h3 {
  margin: 20px 0 8px;
}
.career-opening .job-description ul {
  font-size: 16px;
  margin-left: 18px;
}
.career-opening .job-description ul strong {
  display: block;
  font-size: 18px;
  font-family: "MontserratSemiBold", sans-serif;
}

.form-job-application .legend-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.form-job-application .legend-wrapper legend {
  display: inline-block;
  font-family: "MontserratSemiBold", sans-serif;
  font-size: 18px;
  margin: 0;
  width: auto;
}
.form-job-application .clone-group {
  border: 2px solid #707070;
  margin-bottom: 24px;
  padding: 28px 20px 0;
  position: relative;
}
.form-job-application .clone-group .clone-heading {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -11px;
  width: calc(100% - 40px);
}
.form-job-application .clone-group .clone-heading .title {
  background: #fff;
  padding: 0 8px;
  font-family: "MontserratSemiBold", sans-serif;
  font-size: 14px;
}
.form-job-application .clone-group .clone-heading .remove-clone {
  background: #d7182a;
  border: 1px solid #231f20;
  border-radius: 100%;
  height: 24px;
  width: 24px;
  padding: 0;
  position: relative;
}
@media (min-width: 992px) {
  .form-job-application .clone-group .clone-heading .remove-clone {
    display: none;
  }
}
.form-job-application .clone-group .clone-heading .remove-clone:before, .form-job-application .clone-group .clone-heading .remove-clone:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 0 0;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.form-job-application .clone-group .clone-heading .remove-clone:after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.form-job-application .clone-group:hover .remove-clone, .form-job-application .clone-group:focus-within .remove-clone {
  display: block;
}
.form-job-application .btn-clone {
  display: block;
  font-size: 20px;
  background: #e2e2e2;
  width: 100%;
  padding: 20px;
  margin-bottom: 26px;
}

.no-matching-jobs {
  padding: 30px 80px;
  margin-bottom: 32px;
}
.no-matching-jobs h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 34px;
}
@media (max-width: 992px) {
  .no-matching-jobs {
    padding: 38px 36px;
  }
  .no-matching-jobs h3 {
    font-size: 20px;
    line-height: 26px;
  }
}

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