﻿/* - COLOURS - */
.red {
  color: #e60012;
}

.blue {
  color: #0d99ff;
}

.grey {
  color: #444748;
}

.white {
  color: #ffffff;
}


/* - BASIC PAGE SETUP - */
body {
  color: #ffffff;
  margin: 0px auto;
  padding: 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

body,
html {
  height: 100%;
  overflow-x: hidden
}

/* - MAIN LAYOUT - */
.container {
  clear: both;
  margin: 0px auto;
  padding: 80px 0px 0px 0px;
  max-width: 1200px;
}

#footer {
  margin: 80px 0px 0px 0px;
  padding: 0px;
  background-color: #edf0f4;
}

#footer .container {
  padding: 80px 0px 80px 0px;
}

#credits {
  margin: 0px;
  padding: 0px;
  background-color: #e60012;
}

#credits .container {
  padding: 0px;
}

.banner {
  height: auto;
  margin: 0px;
  padding: 50px 0px;
  position: relative;
  background-image: url(../images/home-background.jpg);
  background-position: center bottom;
  background-attachment: fixed;
  background-size: cover;
}

.banner .container {
  clear: both;
  margin: 0px auto;
  padding: 30px 0px 50px 0px;
  max-width: 1200px;
}

.banner-form {
  margin: 40px 0px;
  padding: 0px;
}

.job-premium {
  margin: 0px auto 20px auto;
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  background-color: #ffffff
}

.job {
  margin: 0px auto 20px auto;
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  background-color: #ffffff
}

/* - NAVIGATION - */
.bg-light {
  --bs-bg-opacity: 1;
  background-color: #ffffff !important;
}

.navbar {
  background: #ffffff;
  box-shadow: 0;
  margin: 0px auto;
  max-width: 1200px;
}

.navbar-brand {
  color: #ffffff !important;
  margin: mx-auto;
}

.navbar-nav .nav-link {
  color: #444748 !important;
  margin: 0 5px;
  transition: color 0.3s ease;
  font-weight: 400;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active {
  color: #e60012 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.dropdown-menu.show {
  display: block;
  background: #ffffff !important;
}

a.dropdown-item,
a.dropdown-item:active {
  color: #444748 !important;
  background-color: #ffffff !important;
}

a.dropdown-item:hover {
  color: #e60012 !important;
}

/* - BUTTONS -*/
.btn-primary {
  width: auto;
  margin: 15px 0px;
  padding: 7px 20px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: bold;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn-primary:hover {
  color: #ffffff;
  background: #1081d3;
}

.btn-blue {
  color: #0d99ff !important;
  border: 1px solid #0d99ff;
  background: #ffffff !important;
  margin-left: 10px;
}

.btn-blue:hover {
  color: #ffffff !important;
  border: 1px solid #0d99ff !important;
  background: #0d99ff !important;
}

.btn-red {
  color: #e60012 !important;
  border: 1px solid #e60012;
  background: #ffffff;
  margin-left: 10px;
}

.btn-primary:hover {
  color: #ffffff !important;
  border: 1px solid #e60012;
  background: #e60012;
}

.btn-secondary {
  width: auto;
  margin: 15px 0px;
  padding: 15px 35px;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 20px;
  font-weight: bold;
  border-radius: 7px;
  text-decoration: none;
  letter-spacing: 1px;
  background: #1081d3;
  color: #ffffff !important;
  text-transform: uppercase;
  border: 1px solid #1081d3
}

.btn-secondary:hover {
  color: #1081d3 !important;
  border: 1px solid #1081d3;
  background: #ffffff !important;
}

/* - HEADINGS - */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0d99ff;
  margin: 0px 0px 10px 0px;
  text-align: left;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  font-size: 22px;
  line-height: 24px;
}

h1.home {
  font-size: 4em;
  line-height: 100%;
  text-transform: capitalize;
  color: #000000;
}

h2 {
  color: #e60012;
  font-size: 20px;
  line-height: 22px;
}

h2.home {
  font-size: 3em;
  color: #0d99ff;
  text-transform: none;
  line-height: 1em;
  margin-top: 30px;
  letter-spacing: 0px;
}

h3 {
  font-size: 18px;
  line-height: 20px;
}

h3.home {
  font-size: 2em;
  color: #000000;
  text-transform: none;
  line-height: 1.1em;
  margin-top: 30px;
  letter-spacing: 0px;
}

h4 {
  font-size: 16px;
  line-height: 18px;
}

h5 {
  font-size: 14px;
  line-height: 16px;
}

h6 {
  font-size: 12px;
  line-height: 14px;
}

hr {
  width: 100px;
  margin: 5px auto 30px 0px;
  text-align: left;
  border-top: 2px solid #0d99ff;
}

h3.advert {
  background-color: #edf0f4;
  color: #0d99ff;
  padding: 5px 10px 10px 10px;
  margin: 20px 0px 0px 0px;
}

/* - PARAGRAPHS - */
p,
ol,
ul,
dl,
address {
  color: #444748;
}

p {
  margin: 20px 0px;
  padding: 0px;
  hyphens: auto;
  font-size: 15px;
  text-align: justify;
  line-height: 22px;
  letter-spacing: 0px;
}

#footer p,
#credits p {
  margin: 2px;
}

p.banner-lrg {
  color: #ffffff;
  margin: 20px 0px 0px 0px;
  padding: 0px;
  font-size: 70px;
  text-align: left;
  font-weight: bold;
  line-height: 70px;
  text-transform: uppercase;
}

p.banner-sml {
  color: #ffffff;
  margin: 0px;
  padding: 0px;
  font-size: 30px;
  text-align: left;
  line-height: 30px;
  text-transform: uppercase;
}

p.logo {
  margin: 5px 0px;
  text-align: left;
}

.rgt {
  text-align: right;
}

p.credits {
  color: #ffffff;
  padding: 10px;
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 1px;
}

p.advert {
  margin: 10px 0px 0px 0px
}

/* - LISTS - */
ul,
ol {
  color: #444748;
  margin: 5px 10px 20px 10px;
  padding: 5px 10px 0px 10px;
  hyphens: auto;
  font-size: 1.1em;
  text-align: left;
  line-height: 20px;
}

li {
  margin: 1px 5px 2px 5px;
  padding: 1px 5px 2px 5px;
}

.fa-li {
  font-size: 150%;
  color: #00bf63;
}

.fa-ul li {
  line-height: 2.0em;
  font-size: 1.1em
}

/* - LINKS - */
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none
}

a:link,
a:visited {
  color: #444748;
}

a:active,
a:hover {
  color: #e60012;
}

#footer a:link,
#footer a:visited {
  color: #444748;
}

#footer a:active,
#footer a:hover {
  color: #0d99ff
}

#credits a:link,
#credits a:visited {
  color: #ffffff;
}

.fa-search {
  font-size: 200%;
  color: #0d99ff;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  ;
}


/* - FORMS - */
input,
textarea,
select {
  color: #ffffff;
  border: 0px;
  margin: 2px 0px;
  padding: 8px 10px;
  font-size: 16px;
  text-align: left;
  background: #0d99ff;
  line-height: 20px;
  border-radius: 5px;
  letter-spacing: 1px;
  display: block
}

select.full {
  width: 100%;
  padding: 8px 12px
}

.banner-form input {
  width: 100%;
  color: #333333;
  margin: 0px auto 10px auto;
  padding: 15px;
  background-color: #ffffff;
}

select {
  height: 42px;
  padding-left: 6px;
}

input {
  height: auto;
}

.nomore {
  display: none !important;
}

:-moz-placeholder {
  color: #333333;
}

::-moz-placeholder {
  color: #333333 !important;
  opacity: 1
}

:-ms-input-placeholder {
  color: #333333;
}

::-webkit-input-placeholder {
  color: #333333;
}

input:focus,
textarea {
  outline: none ! important;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #0d99ff;
  outline: none;
  opacity: 1;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

label {
  color: #ffffff;
  display: inline;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: normal;
}

input.check {
  display: inline
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: #e60012;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 23px;
  height: 24px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: #e60012;
  cursor: pointer;
}

p.formlabel {
  color: #ffffff;
  margin: 2px 0px;
  padding: 8px 10px;
  font-size: 16px;
  text-align: left;
  background: #0d99ff;
  line-height: 20px;
  border-radius: 5px;
  letter-spacing: 1px;
}



/* - IMAGES ------------------------------ */
img {
  width: auto\9;
  /* ie8 */
  height: auto\9;
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  border-style: none;
  border-color: inherit;
  border-width: 0;
}

.category_home {
  border: 1px solid #ffffff;
  border-radius: 10px 5px 10px 5px;
}

.category {
  border: 1px solid #ededed;
  border-radius: 10px 5px 10px 5px;
}

/* - GOOGLE MAPS ------------------------------ */
.google-maps {
  width: 100%;
  height: 0;
  margin: 0px 0px 0px 0px;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding-bottom: 0%;
  /* This is the aspect ratio */
}

.google-maps iframe {
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
}

/* - TABLES ------------------------------ */
table.full {
  color: #444748;
  width: 100%;
  margin: 0 auto 11px auto;
  padding: 0;
  hyphens: auto;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1px;
  border-collapse: collapse;
}

table.full th {
  color: #ffffff;
  /* changed */
  padding: 10px 20px;
  font-size: 1.2em;
  text-align: left;
  border-bottom: 0px solid #eee;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #e60012;
}

table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #edf0f4;
  vertical-align: top;
}

table tr:hover {
  background-color: #edf0f4;
}


/* - RESPONSIVE ------------------------------ */
@media screen and (max-width: 1200px) {

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 816px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  #footer .container {
    padding: 30px;
  }

  p {
    text-align: left
  }

  .rgt {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  #footer h1 {
    margin-top: 30px;
  }

  h1.home {
    font-size: 3em;
  }

  .btn-default {
    display: block;
  }

  table,
  table tbody {
    display: block;
    width: 100%;
  }

  table tr,
  table th,
  table td {
    display: block;
  }

  table td:empty,
  table thead {
    display: none;
  }

  table.forms td {
    display: inline-block;
  }

  table.forms td:first-child {
    width: 90%
  }

  table.forms td:last-child {
    width: 10%
  }

  table.forms td .btn-default {
    display: inline-block
  }
}

@media screen and (max-width: 640px) {
  h4 {
    padding: 0px 20px;
  }

  p.logo {
    margin: 0px 5px 5px 5px;
    text-align: center;
  }

  .parallax p {
    text-align: left;
  }

  p.privacy,
  p.credits {
    text-align: center !important;
    padding: 0px;
  }

  table.forms td:first-child {
    width: 80%
  }

  table.forms td:last-child {
    width: 20%
  }
}