@font-face {
  font-family: 'Oxygen-Light';
  src: url("../fonts/oxygen/Oxygen-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Oxygen-Regular';
  src: url("../fonts/oxygen/Oxygen-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Oxygen-Bold';
  src: url("../fonts/oxygen/Oxygen-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  font: 1rem "Oxygen-Regular", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  min-width: 320px;
}

h1 {
  font: 3.2rem/120% "Oxygen-Bold", Helvetica, Arial, sans-serif;
}

h2 {
  font: 3.5rem "Oxygen-Light", Helvetica, Arial, sans-serif;
}

h3 {
  font: 2.5rem "Oxygen-Light", Helvetica, Arial, sans-serif;
}

h4 {
  font: 1.4rem "Oxygen-Bold", Helvetica, Arial, sans-serif;
}

p {
  font: 1rem/150% "Oxygen-Regular", Helvetica, Arial, sans-serif;
}

::selection {
  background: #f6f6f6;
}

::-moz-selection {
  background: #f6f6f6;
}

a {
  color: #e54e39;
  -webkit-transition: color 200ms;
  -moz-transition: color 200ms;
  transition: color 200ms;
  text-decoration: none;
  cursor: pointer;
}
a.dark {
  color: #333333;
}
a:hover, a:active {
  color: #e54e39;
}
a.btn {
  padding: 6px 20px;
  border: 1px solid #e54e39;
}

.centered {
  text-align: center;
  margin: 0 auto;
}

video, iframe, object {
  display: block;
}

button {
  width: auto;
  height: 40px;
  line-height: 28px;
  font-size: 1.1rem;
  text-align: center;
  color: white;
  background-color: #e54e39;
  padding: 6px 20px;
  display: block;
  cursor: pointer;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  transition: all 200ms;
  border-radius: 5px;
}
button:hover {
  color: #fcdc89;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  transform: scale(1.05);
}

.show {
  display: block !important;
}

.hidden {
  display: none !important;
}

/*------------- Next/Prev/Close buttons ---------------*/
.btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  cursor: pointer;
  margin: 0 auto;
}
.btn i {
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #231f17;
  left: 0;
  right: 0;
  margin: auto;
}
.btn.next i {
  top: 50%;
  -webkit-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
}
.btn.next i:first-child {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -moz-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.btn.next i:last-child {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -moz-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.btn.close i {
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.btn.close i:first-child {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  -moz-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.btn.close i:last-child {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  -moz-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.btn.red i {
  background-color: #e54e39;
}

/*------------- Select/Input/Textarea/Form ---------------*/
select, input {
  width: 200px;
  height: auto;
  padding: 10px;
  margin: 0 auto;
  display: block;
  border: 1px solid #dddddd;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
}
select:hover, input:hover {
  border-color: #e54e39;
}
select:focus, input:focus {
  outline: none;
  box-shadow: 0 0 5px #e54e39;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  border: 1px solid #dddddd;
}
textarea:hover {
  border-color: #e54e39;
}
textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #e54e39;
}

label {
  vertical-align: middle;
  font-weight: normal;
}

form button {
  position: relative;
}

/*------------- Error ---------------*/
.error {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.error .error-body {
  position: absolute;
  width: 250px;
  height: 40px;
  text-align: center;
  color: #e54e39;
  font-weight: 700;
  padding: 25px 25px 25px 40px;
  top: -140px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #e54e39;
  background-color: #fffbe3;
  margin: auto;
}
.error .error-body:before {
  content: "!";
  font: 3rem "Oxygen-Bold", Helvetica, Arial, sans-serif;
  color: #e54e39;
  display: block;
  left: 20px;
  position: absolute;
  top: 25px;
  bottom: 0;
  line-height: 70%;
}

.pij-content {
  margin-top: 90px;
}

.pij-content .row {
  margin-top: 70px;
  margin-bottom: 30px;
}

a.logo img {
  width: 120px;
  height: auto;
  text-align: center;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 35px;
  margin: auto;
  z-index: 100;
}

nav {
  position: absolute;
  width: 100%;
  top: 40px;
  z-index: 50;
}

#navIcon {
  position: absolute;
  top: 0;
}
#navIcon .btn {
  height: 25px;
  display: none;
}
#navIcon .btn i {
  width: 100%;
  height: 3px;
}
#navIcon .btn i:first-child {
  top: 0;
}
#navIcon .btn i:nth-child(2) {
  top: 50%;
}
#navIcon .btn i:last-child {
  top: 100%;
}
#navIcon.hovered i {
  background-color: #e54e39;
}

#navMenu {
  font: 1.4rem "Oxygen-Light", Helvetica, Arial, sans-serif;
}
#navMenu .navleft {
  width: 45%;
  position: relative;
  float: left;
  text-align: right;
}
#navMenu .navleft a {
  margin-right: 20px;
}
#navMenu .navright {
  width: 45%;
  position: relative;
  float: right;
}
#navMenu .navright a {
  margin-left: 20px;
}
#navMenu a {
  color: #333333;
}
#navMenu a.active {
  color: #e54e39;
  font-family: "Oxygen-Regular", Helvetica, Arial, sans-serif;
}

#navLogin {
  position: absolute;
  top: -40px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 1rem;
  height: 25px;
}
#navLogin a {
  border: 1px solid #ddd;
  padding: 5px 10px;
  font-size: 0.875rem;
}

.banner {
  width: 100%;
  text-align: center;
  background-color: #f8f8f8;
}

.intro {
  width: 70%;
  margin: 0 auto;
  padding: 120px 0 100px;
}
.intro h1, .intro h3 {
  padding-bottom: 15px;
}
.intro p {
  font-size: 1.4rem;
}
.intro.light {
  color: white;
  text-shadow: 1px 1px 2px #777;
}
.intro form {
  margin-top: 30px;
}
.intro form input, .intro form button {
  display: inline-block;
}
.intro form button {
  margin-left: 20px;
}
.intro button {
  display: inline-block;
}

button.bigbtn {
  min-width: 150px;
  min-height: 50px;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 1.4rem;
}

.right-border {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid lightGray;
}

.aright {
  text-align: right;
  float: right;
  margin-right: 20px;
}

.aleft {
  margin-left: 20px;
}

form.subscribe button, form.subscribe input {
  display: inline-block;
}
form.subscribe button {
  margin-left: 10px;
  vertical-align: middle;
}
form.subscribe input {
  width: 80%;
  max-width: 300px;
  margin: 20px 0;
}

.bigtext {
  font: 2.5rem "Oxygen-Bold", Helvetica, Arial, sans-serif;
}

.page-content h3, .page-content p {
  margin-bottom: 20px;
}
.page-content ul {
  list-style: none;
  margin: 20px 0 30px 20px;
}
.page-content ul li {
  display: block;
  padding: 10px 10px 10px 20px;
  clear: both;
  position: relative;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.page-content ul li:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #e54e39;
  left: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.page-content ul li:hover {
  background-color: #f8f8f8;
}

#homepage.banner {
  background: transparent url(../img/banners/banner-home.jpg) center no-repeat;
  background-size: cover;
}

#advert {
  text-align: center;
}

#advert h3 {
  margin-bottom: 10px;
}

#featuredjob {
  margin-top: 50px;
  margin-bottom: 70px;
}

.gd-half {
  padding-bottom: 20px;
}
.gd-half:first-child p {
  margin-bottom: 20px;
}
.gd-half p, .gd-half h4 {
  padding: 0 30px;
}

#jobsHome, #job-board ul {
  margin-top: 50px;
  list-style: none;
}

.subscribeSuccess {
  display: none;
}

.jobItem {
  display: block;
  width: 96%;
  float: left;
  padding: 10px 2%;
  border-bottom: 1px solid lightGray;
}
.jobItem a {
  color: #333333;
}
.jobItem a:hover {
  color: #e54e39;
}
.jobItem:nth-child(odd) {
  background-color: #f8f8f8;
}
.jobItem div, .jobItem span {
  float: left;
}
.jobItem h3, .jobItem h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.jobItem h4 {
  font: 1rem "Oxygen-Regular", Helvetica, Arial, sans-serif;
}

.jobItem-logo {
  width: 8%;
  margin-right: 2%;
  margin-top: 0;
}
.jobItem-logo img {
  width: 70px;
  height: auto;
  border: 1px solid lightGray;
}

.jobItem-info, .jobItem-location {
  padding-top: 10px;
}

.jobItem-type {
  padding-top: 30px;
}

.jobItem-info {
  width: 55%;
  vertical-align: middle;
}
.jobItem-info h3 {
  font: 1.2rem "Oxygen-Regular", Helvetica, Arial, sans-serif;
  display: block;
  margin-bottom: 7px;
}
.jobItem-info h4 {
  text-transform: uppercase;
  color: #777;
}

.jobItem-type {
  width: 10%;
  text-align: center;
  margin: 0 5%;
}

.jobItem-right {
  width: 15%;
  float: right;
}

.jobItem-share, .jobItem-location {
  width: 100%;
  position: relative;
  height: 30px;
}
.jobItem-share h4, .jobItem-location h4 {
  margin-right: 35px;
  line-height: 30px;
}

.share-icon, .location-icon {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  vertical-align: middle;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
}

.jobItem-share {
  margin-top: 5px;
}
.jobItem-share .share-icon {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  transition: all 200ms ease;
  background: transparent url(../img/icons/share.png) center no-repeat;
  background-size: cover;
  opacity: 0.85;
}
.jobItem-share .share-icon:hover {
  opacity: 1;
}
.jobItem-share.opt .share-icon {
  -webkit-transform: rotateZ(-90deg);
  -moz-transform: rotateZ(-90deg);
  transform: rotateZ(-90deg);
  opacity: 1;
}
.jobItem-share span {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  float: right;
  -webkit-transition: scale 300ms ease;
  -moz-transition: scale 300ms ease;
  transition: scale 300ms ease;
}
.jobItem-share span:hover {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}
.jobItem-share .twitterJ {
  background: transparent url(../img/icons/twitterJ.png) center no-repeat;
  background-size: cover;
}
.jobItem-share .facebookJ {
  background: transparent url(../img/icons/facebookJ.png) center no-repeat;
  background-size: cover;
}
.jobItem-share .mailJ {
  background: transparent url(../img/icons/mailJ.png) center no-repeat;
  background-size: cover;
}
.jobItem-share .gplusJ {
  background: transparent url(../img/icons/gplusJ.png) center no-repeat;
  background-size: cover;
}

.share-options {
  display: none;
  background-color: white;
  position: absolute;
  z-index: 100;
  padding: 5px 0px;
  min-width: 180px;
  right: 0;
  top: -45px;
}

.jobItem:nth-child(odd) .share-options {
  background-color: #f8f8f8;
}

.location-icon {
  background: transparent url(../img/icons/location.png) center no-repeat;
  background-size: cover;
  opacity: 0.3;
  cursor: default;
}

#seeMore {
  float: right;
  margin-top: 20px;
}

#social h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#social span {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-right: 20px;
  -webkit-transition: scale 300ms ease;
  -moz-transition: scale 300ms ease;
  transition: scale 300ms ease;
}
#social span:hover {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  transform: scale(1.15);
}
#social .twitter {
  background: transparent url(../img/icons/twitter.png) center no-repeat;
  background-size: cover;
}
#social .facebook {
  background: transparent url(../img/icons/facebook.png) center no-repeat;
  background-size: cover;
}
#social .gplus {
  background: transparent url(../img/icons/gplus.png) center no-repeat;
  background-size: cover;
}

#pricePage.banner {
  background: transparent url(../img/banners/banner-price.jpg) center no-repeat;
  background-size: cover;
}

#advertisingPage .gd-half p {
  font-size: 1.5rem;
}

#benefits {
  margin-top: 30px;
  margin-bottom: 30px;
}
#benefits ul {
  max-width: 612px;
  width: 100%;
  margin: 0 auto;
}

#jobspage.banner {
  background: transparent url(../img/banners/banner-find.jpg) center no-repeat;
  background-size: cover;
}
#jobspage .intro {
  padding: 120px 0 60px;
}
#jobspage .subscribeSuccess {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 10px 0;
}

.noJobFound {
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.noJobFound h4 {
  font: 1rem "Oxygen-Regular", Helvetica, Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  margin: 10px;
}

#subcribeJobPage form.subscribe {
  margin: 20px 0 30px;
}

#pacific.banner {
  background: transparent url(../img/banners/banner-pacific.jpg) center no-repeat;
  background-size: cover;
}

.full-width img {
  width: 100%;
}

#about.banner {
  background: transparent url(../img/banners/banner-about.jpg) center no-repeat;
  background-size: cover;
}

.leftBorder {
  width: 85%;
  margin-left: 10%;
  padding-left: 5%;
  border-left: 5px solid #ddd;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#contact.banner {
  background: transparent url(../img/banners/banner-contact.jpg) center no-repeat;
  background-size: cover;
}

#privacy .intro {
  padding: 100px 0 60px;
  text-shadow: none;
}
#privacy .intro h1 {
  color: #333333;
}

#jobpage .intro {
  padding: 90px 0 40px;
}

#job-details {
  width: 80%;
  margin: 0 10%;
  border-collapse: collapse;
  border-spacing: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#job-details h3 {
  margin: 20px auto;
}
#job-details tr {
  border-bottom: 1px solid #ddd;
}
#job-details tr:last-child {
  border-bottom: none;
}
#job-details td {
  padding: 10px 5px 10px 10px;
}
#job-details td:first-child {
  width: 20%;
}
#job-details td:first-child h4 {
  font-size: 1.2rem;
  border-right: 1px solid #ddd;
  padding-right: 5px;
}

#job-description h3 {
  margin: 20px auto;
}

#post.banner {
  background: transparent url(../img/banners/banner-post.jpg) center no-repeat;
  background-size: cover;
}

#postJobPage .row {
  margin-top: 50px;
}
#postJobPage .row:last-child {
  margin-bottom: 0;
}

.offWhite {
  background-color: #f8f8f8;
}

#jobForm {
  width: 90%;
  padding: 20px 5% 50px;
  margin-top: 30px;
}
#jobForm .field {
  margin: 15px 0;
}
#jobForm .field:last-child label {
  vertical-align: top;
}
#jobForm label {
  width: 20%;
  font-size: 0.9rem;
  text-transform: uppercase;
}
#jobForm select, #jobForm input, #jobForm input {
  width: 50%;
  margin-right: 30%;
}
#jobForm textarea {
  width: 75%;
  padding: 2%;
  min-height: 100px;
}
#jobForm label, #jobForm input, #jobForm select, #jobForm input, #jobForm textarea {
  display: inline-block;
}
#jobForm #title, #jobForm #employer {
  width: 80%;
  margin-right: 0;
}
#jobForm .submit {
  width: 60%;
  margin: 20px auto;
}

#subAddress {
  margin-left: 20%;
}
#subAddress input {
  width: 50%;
}

#jobTextarea label {
  vertical-align: top;
}

.mandatory:after {
  content: "*";
  color: #e54e39;
  vertical-align: top;
  margin-left: 3px;
}

#tinymce.mce-content-body {
  line-height: 135% !important;
}
#tinymce.mce-content-body p {
  line-height: 135% !important;
}

#terms {
  width: 80%;
  margin-top: 20px;
}
#terms h3 {
  margin-bottom: 10px;
}
#terms input {
  float: left;
  width: auto;
  -webkit-appearance: checkbox;
  margin-top: 5px;
  margin-right: 20px;
}
#terms p {
  margin-bottom: 30px;
}

#newAdvertiser {
  margin-bottom: 30px;
}

#signin .registerForm {
  display: none;
}

.signinForm input, .registerForm input, .resetPass input {
  width: 75%;
  max-width: 400px;
  min-width: 260px;
  margin: 20px auto;
}

#toggleBtns p {
  margin: 10px auto;
}

footer {
  text-align: center;
  background: url("../img/circlebg.png");
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
footer .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
footer p {
  font-size: 0.875rem;
}

@media screen and (max-width: 1200px) {
  h3 {
    font-size: 2rem;
  }

  a.logo img {
    width: 100px;
  }

  #banner {
    height: 400px;
  }

  #navMenu {
    font-size: 1.1rem;
  }

  .jobItem-right {
    width: 5%;
  }
  .jobItem-right h4 {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 80;
    overflow: visible;
    margin-right: 40px;
  }

  .jobItem-type {
    width: 20%;
  }

  .location-icon {
    cursor: pointer;
    opacity: 0.85;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .location-icon:hover {
    opacity: 1;
  }
  .location-icon.active {
    opacity: 1;
    -webkit-transform: rotateZ(90deg);
    -moz-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
  }

  #jobForm .field {
    margin: 10px 0;
  }
  #jobForm .field:last-child label {
    vertical-align: top;
  }
  #jobForm label {
    width: 100%;
    margin-bottom: 5px;
  }
  #jobForm select, #jobForm input, #jobForm input, #jobForm #title, #jobForm #employer {
    width: 100%;
    margin-right: 0;
  }
  #jobForm textarea {
    width: 96%;
    padding: 2%;
    min-height: 100px;
  }
  #jobForm label, #jobForm input, #jobForm select, #jobForm input, #jobForm textarea {
    display: block;
  }
  #jobForm button {
    width: 100%;
  }

  .leftBorder {
    width: 100%;
    margin-left: 0;
  }

  #subAddress {
    margin-left: 0%;
  }

  #terms {
    width: 100%;
  }
  #terms input {
    width: auto;
    margin-right: 20px;
  }
  #terms p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .pij-content {
    margin-top: 70px;
  }
  .pij-content .row {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2rem;
  }

  .banner .intro {
    width: 100%;
    padding: 80px 0 40px;
  }
  .banner .intro p {
    font-size: 1rem;
  }

  nav {
    top: 20px;
  }

  #navMenu {
    font-size: 1.2rem;
    display: none;
    width: 150px;
    background-color: white;
    margin-top: 50px;
    border-radius: 0 0 5px 5px;
  }
  #navMenu .navleft, #navMenu .navright {
    width: 100%;
    float: none;
    text-align: left;
    position: relative;
  }
  #navMenu .navleft a, #navMenu .navright a {
    display: block;
    margin: 0;
    padding: 5px 0 5px 20px;
  }
  #navMenu .navleft a:hover, #navMenu .navright a:hover {
    background-color: #e54e39;
    color: white;
  }
  #navMenu .navright {
    padding-bottom: 20px;
  }

  #navLogin {
    top: 0;
    left: auto;
  }
  #navLogin a {
    border: none;
  }

  #navIcon .btn {
    display: block;
    margin: 0 0 20px 20px;
  }

  #advert .gd-half, #postJobPage .gd-half {
    width: 100%;
    margin-right: 0;
    padding-bottom: 0;
  }

  .gd-half:first-child {
    border-right: none;
    margin-bottom: 50px;
  }

  .gd-half p, .gd-half h4 {
    padding: 0 20px;
  }

  #advertisingPage .gd-half p {
    font-size: 1.2rem;
  }

  #job-details {
    width: 100%;
    margin: 0;
  }
  #job-details td h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  h3 {
    font-size: 1.7rem;
  }

  .jobItem h3 {
    font-size: 1rem;
  }
  .jobItem h4 {
    font-size: 0.875rem;
  }

  .jobItem-info {
    width: 90%;
    padding-top: 0;
  }
  .jobItem-info h4 {
    display: none;
  }

  .jobItem-type {
    width: 50%;
    text-align: left;
    padding-top: 10px;
    margin: 0;
    float: left;
    clear: both;
  }

  .jobItem-right {
    width: 50%;
    text-align: right;
  }

  .jobItem-share {
    padding-top: 0;
  }

  .share-options {
    top: -40px;
  }

  .jobItem-location {
    display: none;
  }

  #terms p {
    font-size: 0.875rem;
  }
}
