/* 	THEME
/*	- VARIABLES
================================================================ */
/*	- VARIABLES
	Color */
/*	- VARIABLES
	Typo */
::-moz-selection {
  background: #c9d200;
  color: #000000;
  text-shadow: none;
}
::selection {
  background: #c9d200;
  color: #000000;
  text-shadow: none;
}

/* 	THEME
/*	- VARIABLES - Mixin
================================================================ */
/*	- ELEMENTS
================================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "TheSerifBold", "Times New Roman", serif;
  font-weight: 700;
  position: relative;
}

@media (max-width: 767px) {
  h1, .hdl-1,
h2, .hdl-2,
h3, .hdl-4,
h4, .hdl-4,
h5, .hdl-5,
h6, .hdl-6 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
h1, .hdl-1 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 36px;
}

h2, .hdl-2 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 30px;
}

h3, .hdl-3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 26px;
}

h4, .hdl-4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
}

h5, .hdl-5 {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
}

h6, .hdl-6 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
}

@media (min-width: 768px) {
  h1, .hdl-1 {
    font-size: 46px;
    font-size: 2.875rem;
    line-height: 52px;
  }

  h2, .hdl-2 {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 44px;
  }

  h3, .hdl-3 {
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 36px;
  }

  h4, .hdl-4 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
  }

  h5, .hdl-5 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 26px;
  }

  h6, .hdl-6 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
  }
}
@media (min-width: 1140px) {
  h1,
.hdl-1 {
    font-size: 60px;
    font-size: 3.75rem;
    line-height: 66px;
  }

  h2,
.hdl-2 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 54px;
  }

  h3,
.hdl-3 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 46px;
  }

  h4,
.hdl-4 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 38px;
  }

  h5,
.hdl-5 {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 32px;
  }

  h6,
.hdl-6 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 26px;
  }
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #4B4B4D;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #c9d200;
}

p {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
}

p a {
  color: #008ad9;
  text-decoration: none;
}

p a:hover {
  color: #c9d200;
}

p.fussnote {
  font-size: 0.75em;
}

sub,
sup {
  margin-left: 3px;
  font-size: 0.75rem;
}

ol,
ul {
  list-style: none;
}

ol li,
ul li {
  position: relative;
  margin-bottom: 5px;
}

ul li {
  padding-left: 20px;
}

ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 0px;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: #c9d200;
}

ol li:last-child,
ul li:last-child {
  margin-bottom: 0;
}

ul li a,
ol li a {
  color: #008ad9;
  text-decoration: none;
}

ul li a:hover,
ol li a:hover {
  color: #c9d200;
}

ol {
  counter-reset: bilfinger-counter;
}

ol li {
  counter-increment: bilfinger-counter;
}

ol li::before {
  content: counter(bilfinger-counter) ". ";
  color: #c9d200;
  font-weight: 700;
  margin-right: 5px;
}

/* Update nav listing */
nav ul {
  list-style: none;
}

nav ul li {
  margin-bottom: 0;
  padding-left: 0;
}

nav ul li a:hover {
  text-decoration: none;
}

nav ul li:before {
  display: none;
}

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

form label {
  width: 100%;
  display: block;
}

form select,
form input,
form textarea,
form button {
  display: block;
  width: 100%;
  padding: 7.5px 15px;
  background-color: #e8e8ea;
}

form select,
form input {
  height: 45px;
}

form textarea {
  height: 180px;
}

form input[type=radio],
form input[type=checkbox] {
  width: 30px;
  height: 30px;
  cursor: pointer;
}

form input[type=radio] {
  border-radius: 50%;
}

form input[type=radio]:checked,
form input[type=checkbox]:checked {
  background-color: #c9d200;
}

form button {
  height: 45px;
}

form button,
form input[type=submit] {
  background-color: #c9d200;
  cursor: pointer;
  padding: 0 0;
  color: #ffffff;
}

form button:hover,
form input[type=submit]:hover {
  background-color: #b1b900;
}

table {
  text-align: left;
}

table thead th {
  padding: 5px 15px;
}

table tbody tr {
  border-top: 1px solid #e8e8ea;
}

table tbody tr td {
  padding: 5px 15px;
}

table tbody tr td a {
  color: #008ad9;
  text-decoration: none;
}

table tbody tr td a:hover {
  color: #c9d200;
}

table tbody tr:nth-child(even) {
  background-color: #F5F5F6;
}

table tbody tr:hover {
  background-color: #e8e8ea;
}

img {
  display: block;
}