/* vars specific to each client */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500");
* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  background: #fff;
  box-sizing: border-box;
  color: #555;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  height: 100%;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

.block {
  display: block;
}

ul {
  margin-bottom: 0;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-t-40 {
  margin-top: 40px;
}

.margin-b-10 {
  margin-bottom: 10px;
}

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-b-60 {
  margin-bottom: 60px;
}

.margin-b-80 {
  margin-bottom: 80px;
}

.padded-section {
  padding: 20px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.padding-r-10 {
  padding-right: 10px;
}

.padding-l-10 {
  padding-left: 10px;
}

.no-padding {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.bg-grey-light {
  background: #dedede;
}

.bg-light {
  background: #fff;
}

h1 {
  font-size: 34px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: 6px;
}
@media (max-width: 768px) {
  h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
h1.huge {
  font-size: 160px;
  line-height: 200px;
}
@media (max-width: 768px) {
  h1.huge {
    font-size: 100px;
    line-height: 140px;
  }
}

h2 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 500;
  color: #555;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
    line-height: 34px;
  }
}

h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: #555;
}
@media (max-width: 768px) {
  h3 {
    font-size: 18px;
    line-height: 20px;
  }
}

h4 {
  font-size: 13px;
  line-height: 17px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 768px) {
  h4 {
    font-size: 13px;
    line-height: 17px;
  }
}

p {
  color: #555;
  line-height: 22px;
  font-size: 13px;
}
p a {
  text-decoration: underline;
}

.underline {
  text-decoration: underline;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 500;
}

.semi-bold {
  font-weight: 500;
  color: #555;
}

.small-text {
  font-size: 13px;
  line-height: 13px;
}

.spaced-text {
  font-size: 13px;
  line-height: 26px;
  color: #7e7e7e;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.primary-color {
  color: #7e7e7e;
}

.secondary-color {
  color: #555;
}

a {
  color: #000;
}
a:hover {
  color: #7e7e7e;
}

.cs-select {
  position: relative;
  outline: none;
  z-index: 10;
}

.cs-hidden {
  displaY: none;
}

.cs-options {
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  width: 100%;
  transform: translateY(100%);
  z-index: 20;
  outline: none;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
.cs-options ul {
  margin: 0;
  padding: 0;
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 1px;
}
.cs-active .cs-options {
  max-height: 10000px;
  overflow: visible;
}

.cs-option {
  width: 100%;
  display: block;
  transition: 0.4s;
  padding: 5px;
  transform: translateY(-5px);
  opacity: 0;
  cursor: pointer;
}
.cs-option:hover {
  background: #000;
  color: #fff;
}
.cs-option span {
  cursor: pointer;
}
.cs-active .cs-option {
  transform: translateY(0);
  opacity: 1;
}
.cs-option.cs-selected {
  background: #000;
  color: #fff;
}

.cs-placeholder {
  line-height: 25px;
  width: 100%;
  display: block;
  position: relative;
  padding-left: 10px;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}
.cs-placeholder:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 20px;
  transform: translate(0, -50%);
  background-size: 70%;
  transition: 0.4s;
}
.cs-active .cs-placeholder:after {
  transform: translate(0, -60%) rotate(90deg);
}

.logo {
  text-indent: -100%;
  color: transparent;
}
.logo:hover {
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s ease all;
}

.header {
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.cover {
  background-color: #dedede;
  background-size: cover;
  background-position: center center;
  font-size: 40px;
  padding: 270px 0 200px;
  width: 100%;
}
@media (max-width: 768px) {
  .cover {
    padding: 150px 10px 80px;
  }
}

.cover-home {
  background-image: url("../images/home-cover.jpg");
  padding: 230px 0;
  position: relative;
}

.cover-department {
  background-image: url("../images/department-cover.jpg");
}

.cover-job {
  background-image: url("../images/job-cover.jpg");
}

.cover-results {
  background-image: url("../images/results-cover.jpg");
}

.cover-apply {
  background-image: url("../images/job-cover.jpg");
}

.search-section {
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .search-section {
    margin-bottom: 200px;
  }
}

.search {
  border-radius: 8px;
  /*box-shadow: rgba(87,87,87, 0.4) 1px 1px 1px;*/
  border: 1px solid #dedede;
  margin: 0 auto;
  width: calc(100% - 30px);
  background: #fff;
  padding: 30px 20px 20px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.input {
  background: none;
  border: 1px solid #7e7e7e;
  border-radius: 4px;
  color: #555;
  font-size: 13px;
  line-height: 40px;
  outline: none;
  padding: 0 10px;
  vertical-align: middle;
  width: 100%;
}
.input::-webkit-input-placeholder {
  color: #555;
}
.input::-moz-placeholder {
  color: #555;
}
.input:-ms-input-placeholder {
  color: #555;
}
.input:-moz-placeholder {
  color: #555;
}
@media (max-width: 768px) {
  .input {
    margin-bottom: 10px;
  }
}

.select {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 1px solid #7e7e7e;
  border-radius: 4px;
  color: #555;
  font-size: 13px;
  height: 40px;
  outline: none;
  padding: 0 10px;
  vertical-align: middle;
  width: 100%;
}
@media (max-width: 768px) {
  .select {
    margin-bottom: 10px;
  }
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #555;
  content: "";
  height: 0;
  position: absolute;
  right: 25px;
  top: 50%;
  width: 0;
}
.select-wrapper:nth-child(2) {
  z-index: 2;
}
.select-wrapper:nth-child(3) {
  z-index: 1;
}

.submit {
  width: 100%;
}

.section {
  padding: 120px 0;
  width: 100%;
  border-bottom: 1px solid #dedede;
}
.section.no-padding-t {
  padding-top: 0;
}
.section.no-border {
  border-bottom: none;
}
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section.no-padding {
    padding: 0 20px 80px;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 100%;
}

.border-btm {
  border-bottom: 1px solid #dedede;
}

.border {
  border: 1px solid #dedede;
}

.list-header {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  background-color: #fff;
  color: #000;
  padding: 20px;
  border-bottom: 1px solid #dedede;
  width: 100%;
  margin-left: 0;
}

.list {
  list-style-type: none;
  font-size: 13px;
}
.list li {
  padding: 20px;
}
.list li:nth-child(odd) {
  background: #fff;
}
.list li:nth-child(even) {
  background: #fff;
}
@media (max-width: 768px) {
  .list li div {
    margin-bottom: 10px;
  }
}
.list li div:last-child() {
  text-align: right;
}
@media (max-width: 768px) {
  .list li div:last-child() {
    text-align: left;
    margin-bottom: 0;
  }
}
.list li a {
  font-weight: 500;
  font-size: 13px !important;
}

.list-columns > div:nth-last-child(2) a {
  border-bottom: none;
}
@media (max-width: 768px) {
  .list-columns > div:nth-last-child(2) a {
    border-bottom: 1px solid #dedede;
  }
}
.list-columns > div:last-child() a {
  border-bottom: none;
}
.list-columns a {
  padding: 20px 5px;
  border-bottom: 1px solid #dedede;
  display: block;
}
.list-columns a:hover {
  opacity: 0.8;
  transition: 0.3s ease all;
}
.list-columns h4 {
  display: inline-block;
}
.list-columns span {
  text-align: right;
  color: #dedede;
  float: right;
}

.list-card {
  list-style-type: none;
  margin-bottom: 0;
}
.list-card li {
  margin-bottom: 20px;
  border: none;
}
.list-card li a {
  display: block;
  border: 1px solid #dedede;
}
.list-card li p {
  font-size: 13px;
  line-height: 24px;
  font-weight: 500;
  padding: 15px;
  min-height: 78px;
}

.link {
  color: #000;
  transition: 0.4s;
}
.link:hover {
  color: #555;
  text-decoration: none;
}

.breadcrumb {
  text-transform: uppercase;
  font-weight: 500;
  background-color: #f6f4f0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 0;
}

.btn {
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  outline: none;
  padding: 12px 0;
  transition: 0.4s;
  vertical-align: bottom;
}
.btn:hover {
  background: #000;
  color: #fff;
}

.btn-black {
  background: #000;
  color: #fff;
  border: 1px solid #000;
  border-radius: 0;
  font-weight: 500;
  display: inline-block;
  font-size: 13px;
  line-height: 1.2;
  outline: none;
  padding: 12px 0;
  transition: 0.4s;
  vertical-align: bottom;
  text-align: center;
}
.btn-black:hover {
  background: #fff;
  color: #000;
  cursor: default;
  text-decoration: none;
}

.btn-big {
  min-width: 220px;
  padding: 12px;
}

.btn-clear, .list li a {
  color: #7e7e7e;
  display: inline-block;
  font-size: 18px;
  padding: 0 20px 0 0;
  position: relative;
  transition: 0.4s;
  font-size: 16px;
}
.btn-clear:hover, .list li a:hover {
  color: #dedede;
}
.btn-clear, .list li a {
  /*&::before {
    border-right: 2px solid $grey;
    border-top: 2px solid $grey;
    content: '';
    display: inline-block;
    height: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;

  }*/
}

.image, .image-tall {
  height: 155px;
  background: #dedede;
  background-size: cover;
  background-position: center;
  color: #555;
}

.image--about {
  min-height: 275px;
}

.image-tall {
  min-height: 350px;
}

body {
  opacity: 1;
  transition: 0.4s;
}
body.hidden {
  opacity: 0;
  transition: 0s;
}

.footer-icon {
  margin-right: 20px;
}
.footer-icon:last-child {
  margin-right: 0;
}

.error-404 {
  min-height: 70%;
  min-height: calc(100% - 312px);
}

.float-line {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.float-line:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #dedede;
  display: inline-block;
}
.float-line span {
  padding-right: 10px;
}

.job__content p {
  margin-bottom: 20px;
}
.job__content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.job__content ul li {
  line-height: 32px;
}

@media (min-width: 768px) {
  .job__content--section {
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .job__sidebar {
    padding-top: 60px;
  }
}
.job__sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.job__sidebar ul li {
  padding: 0 0 40px;
}

.application-form {
  height: 1650px;
}

.share-icon {
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px 5px 0;
  margin: 0;
  float: left;
}
.share-icon img {
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.share-icon img:hover {
  opacity: 0.8;
  transition: 0.3s ease all;
}

.list li {
  border-bottom: 1px solid #dedede;
}
.list li > div:first-child {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}
.list li > div:last-child a {
  color: #000;
  font-size: 13px;
}

.list-card li p {
  color: #000;
  font-size: 13px;
  font-weight: 500;
}

.spaced-text {
  color: #000;
}

.btn-clear::after, .list li a::after {
  content: "";
  background-image: url("../images/arrow-right.svg");
  display: inline-block;
  width: 10px;
  height: 8px;
  margin-left: 8px;
  background-size: 100%;
}

.bg-color-1 {
  background-color: #f6f4f0;
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

.input {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding: 0;
}

.select {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding: 0;
}

.select-wrapper:after {
  right: 15px;
}

.cs-select {
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding: 0;
}

.cs-placeholder {
  line-height: 40px;
  color: #000;
  padding: 0;
}