:root {
  --main-color: #3A1300;
  --secondary-color: #ba7a57;
  --third-color: #4E6766;
  --fourth-color: #333333;
  --fifth-color: #6A8D92;
  --dataset-count-color: #C30045;
  --header-size: 82px;
  --header-size-2: 120px;
}
@font-face {
  font-family: 'Georgia Pro';
  src: url('../../fonts/GeorgiaPro-Semibold.woff2') format('woff2'), url('../../fonts/GeorgiaPro-Semibold.woff') format('woff');
  font-weight: 600;
  /* Semi Bold */
  font-style: normal;
}
@font-face {
  font-family: 'Halyard Text';
  src: url('../../fonts/HalyardText-Book.woff2') format('woff2'), url('../../fonts/HalyardText-Book.woff') format('woff');
  font-weight: 400;
  /* Book */
  font-style: normal;
}
/* Page headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Georgia Pro', Georgia, serif;
  font-weight: 600;
  /* Semi Bold */
}
/* Body text */
body,
p,
li,
span {
  font-family: 'Halyard Text';
  font-weight: 400;
  /* Book */
}
body {
  background-color: white;
}
*::selection {
  background-color: #4E6766;
  color: white;
}
.text-list li + li {
  margin-top: 1em;
}
.text-list li > ul {
  margin-top: 1em;
}
.text-list li::marker {
  font-weight: bold;
  color: var(--secondary-color);
}
ol.text-list > li > ul > li {
  list-style-type: disc;
}
a.general-link {
  color: var(--third-color);
}
a.general-link:hover {
  color: var(--fifth-color) !important;
}
button {
  background-color: var(--third-color);
  color: white;
  font-weight: 400 !important;
}
button:hover {
  color: white !important;
  background-color: var(--fifth-color);
}
.custom-footer-link {
  color: white;
  position: relative;
  bottom: 1px;
}
.custom-footer-link:hover {
  color: white;
}
.calendar-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.masthead {
  background-color: var(--main-color);
  font-size: 15px;
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-size);
  display: grid;
}
.header-image {
  display: grid;
  justify-content: center;
}
.masthead .container {
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  align-items: center;
  align-content: center;
  max-width: 1170px;
}
.masthead .logo img {
  height: 40px;
}
.masthead .navigation .nav-pills li a:hover,
.masthead .navigation .nav-pills li a:focus,
.masthead .navigation .nav-pills li.active a {
  background-color: white;
  color: var(--main-color);
  border: none;
}
a.btn.btn-primary {
  background-color: var(--main-color);
}
.navigation {
  color: black;
}
#hero-section {
  /*background: var(--main-color);*/
  color: white;
  padding: 20px;
  background: var(--main-color);
  background-repeat: no-repeat;
  display: grid;
  background-image: url("/img/home2.jpg");
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
#hero-section::before {
  content: '';
  background-color: var(--secondary-color);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
#hero-section .row {
  display: grid;
  text-align: center;
  justify-items: center;
}
#hero-section .header-content {
  display: grid;
  justify-items: center;
  z-index: 1;
}
#hero-section h1 {
  font-weight: 400;
  font-size: 30px;
  color: var(--main-color);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
#hero-section .search-description {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
}
#hero-section .search-description a {
  border-bottom: 1px solid white;
  text-decoration: none;
}
#hero-section .search-description a:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
}
.search-form {
  width: 100%;
  max-width: 500px;
  border-bottom: none;
}
#hero-section #field-main-search {
  outline: none;
  border: none;
}
#hero-section #field-main-search:hover,
#hero-section #field-main-search:focus {
  outline: none;
  box-shadow: 0 0 10px var(--main-color);
  border: none;
}
.main {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-bottom: 0;
  gap: 30px;
}
.main .breadcrumb li a {
  color: #505050;
}
.page-heading {
  color: var(--secondary-color);
  font-size: 45px;
  font-weight: 400;
}
.row.wrapper.no-nav {
  border: none;
  box-shadow: none;
  background-color: transparent;
  max-width: 750px;
}
.articles-count a {
  transition: transform 300ms;
}
.articles-count a:hover {
  transform: scale(1.2);
}
.articles-count a h1 {
  margin: 0 !important;
  font-weight: 700;
  color: white !important;
  font-size: 30px !important;
}
.dataset-count-container {
  text-align: center;
  background-color: var(--dataset-count-color);
  width: 150px;
  height: 150px;
  border-radius: 150px;
  margin-bottom: -75px;
  position: relative;
  display: grid;
  align-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#tag-section {
  background: white;
  padding: 5%;
}
#about-section {
  background: white;
  padding: 3% 5%;
}
#dataset-section {
  background: white;
  padding: 1% 5%;
}
.title-heading {
  color: var(--main-color);
  margin-bottom: 1em;
  font-size: 40px;
  font-weight: 400;
}
/*.sub-heading {*/
/*    margin: 5em 0em;*/
/*}*/
.tag-card {
  background: white;
  border-radius: 0.3em;
  padding: 15% 10%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 1.5em;
  text-transform: capitalize;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
.tag-card:hover {
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}
.tag-card-2 {
  background-color: #e6e5de;
  border-radius: 0.3em;
  padding: 15% 10%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 1.5em;
  text-transform: capitalize;
}
.tag-card-alt {
  background: white;
  border-radius: 0.3em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tag-img {
  padding: 1em;
  margin-bottom: 1em;
  background-color: rgba(237, 236, 229, 0.2);
}
.tag-img-2 {
  padding: 1em;
  margin-bottom: 1em;
  background-color: white;
}
.tag-title {
  font-size: 1.2em;
}
.tag-dataset-count {
  font-size: 1.1em;
}
.dataset-title {
  color: var(--main-color);
  margin-bottom: 1em;
}
.dataset-list-group {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dataset-list-group li {
  display: flex;
  justify-content: space-between;
  padding: 0.8em;
  border-bottom: 1px solid lightgray;
}
.badge-bg {
  background-color: #edece5;
  color: black;
  padding: 0.5em;
}
#about-container {
  background-color: #e6e5de;
  width: 100%;
  height: 400px;
  border-radius: 2em;
  padding: 2em;
}
/*DATASET PAGE*/
#search-hero {
  width: 100%;
  height: 500px;
  background-color: black;
  padding: 10% 20%;
}
.highlight-color {
  color: green;
}
.dataset-hero-text {
  color: white;
  margin-bottom: 1em;
  text-transform: capitalize;
}
.dataset-item {
  background-color: white;
  padding: 5%;
  margin-bottom: 1.5em;
  border-radius: 1em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.dataset-item:last-of-type {
  background-color: white;
  padding: 5%;
  margin-bottom: 1.5em;
  border-radius: 1em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.individial-package-container {
  border-radius: 1em;
  padding: 3% 5%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 1em;
}
h2.dataset-heading > a {
  color: var(--main-color);
  font-size: 1.2em;
}
.package-description {
  color: rgba(0, 0, 0, 0.6);
}
.file-types {
  margin-top: 1em;
}
.file-badge {
  background-color: #ecf0f1;
  border-radius: 0.7em;
  padding: 0.3em 0.7em;
  margin-right: 0.5em;
  font-weight: 500;
}
.dataset-content {
  padding-bottom: 1.5em;
}
a.label.label-default {
  background-color: #ecf0f1;
  border-radius: 0.7em;
  padding: 0.5em 0.9em;
  margin-right: 0.5em;
  font-weight: 700;
  font-size: 0.8em;
  margin-top: 3em;
  color: rgba(0, 77, 68, 0.8);
}
a.label.label-default:hover {
  background-color: rgba(0, 77, 68, 0.8);
  color: white;
}
span.fa.fa-star {
  color: goldenrod;
}
/*FOOTER*/
.footer-site {
  padding: 5% 20px 5% 20px;
  background-color: var(--main-color);
  display: grid;
  justify-items: center;
}
.footer-site .footer-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  max-width: 1200px;
  width: 100%;
}
.footer-logo {
  height: 1.2em;
}
.footer-site .footer-section .container .row:before {
  display: none;
}
.footer-site .footer-section .container .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer-site .footer-section .bottom-references {
  display: grid;
}
.footer-site .footer-section .bottom-references p {
  color: white;
}
/*Amended tooltip*/
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  white-space: nowrap;
}
.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.page-no-secondary {
  padding: 0;
  display: grid;
}
.register-your-interest {
  justify-items: center;
}
.register-your-interest .disclaimer {
  text-align: center;
  max-width: 580px;
  font-size: 20px;
  margin-bottom: 2em;
  background-color: #4E676622;
  border-radius: 8px;
  padding: 1em;
}
.register-your-interest .disclaimer a {
  display: inline-block;
  position: relative;
}
.register-your-interest .disclaimer a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: var(--third-color);
  position: absolute;
  bottom: 4px;
  transition: width 300ms;
}
.register-your-interest .disclaimer a:hover {
  text-decoration: none;
}
.register-your-interest .disclaimer a:hover::before {
  width: 100%;
}
.register-your-interest h1 {
  color: var(--secondary-color);
  font-size: 45px;
  font-weight: 400;
  text-align: center;
}
.register-your-interest form {
  display: grid;
  justify-content: center;
  margin-bottom: 40px;
}
.register-your-interest form .button-wrap {
  display: grid;
  justify-content: center;
}
.register-your-interest form .button-wrap button {
  width: 200px;
}
.register-your-interest label {
  font-size: 18px;
}
.register-your-interest input {
  font-size: 18px;
  margin-bottom: 1em;
  height: 2.5em;
  max-width: 450px;
}
.register-your-interest input:focus {
  box-shadow: 0 0 25px #00cc9933;
  border-color: #00cc99;
}
.register-your-interest .h-captcha {
  margin-top: 20px;
  margin-bottom: 20px;
}
.additional-info-wrapper {
  display: grid;
  justify-content: center;
}
.additional-info {
  max-width: 550px;
}
.additional-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.additional-info table,
.additional-info table tbody,
.additional-info table tbody td {
  background-color: transparent !important;
}
.additional-info table thead {
  background-color: var(--secondary-color);
  color: white;
}
.additional-info table th,
.additional-info table td {
  padding: 10px !important;
}
.additional-info table tbody tr:nth-child(even) td,
.additional-info table tbody tr:nth-child(even) th {
  background-color: #f3e8e2 !important;
}
.additional-info table.table-bordered thead tr td,
.additional-info table.table-bordered thead tr th,
.additional-info table.table-bordered tbody tr td,
.additional-info table.table-bordered tbody tr th {
  border: none;
}
.additional-info table.table-bordered tbody tr:last-child td,
.additional-info table.table-bordered tbody tr:last-child th {
  border-bottom: 4px solid var(--secondary-color);
}
@media only screen and (max-width: 1199px) {
  form.section.site-search.simple-input {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .masthead {
    height: var(--header-size-2);
  }
  .masthead .container {
    margin-top: 14px;
    grid-template-columns: auto;
    justify-content: center;
  }
  .title-heading {
    margin-top: 50px;
  }
  .footer-site .footer-section {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .register-your-interest h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .masthead {
    height: var(--header-size);
  }
  .masthead .container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  #hero-section {
    /* the line below is to prevent mobile issues */
    background-attachment: scroll;
  }
  .masthead .logo img {
    position: fixed;
    top: 40px;
    left: 20px;
    transform: translateY(-50%);
  }
  #main-navigation-toggle {
    background-color: var(--main-color);
    z-index: 9;
    padding: 10px 30px 10px 30px;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 20px;
  }
  #hero-section h1 {
    font-size: 5vw;
    margin: 1vw 14vw 0 14vw;
  }
  #hero-section .search-description {
    margin-top: 3vw;
    margin-bottom: 7vw;
    font-size: 4vw;
  }
  .title-heading {
    font-size: 6vw;
  }
  .tag-card {
    box-shadow: none;
    border: none;
    border-top: 1px solid #cccccc;
    border-radius: 0;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .tag-card:hover {
    box-shadow: none;
  }
  .footer-site .footer-section {
    grid-template-columns: 1fr;
    gap: 2em;
    justify-items: center;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-site .coimisiun-logo {
    margin-bottom: 1em;
    margin-right: 4rem;
  }
  .register-your-interest form {
    margin-bottom: 40px;
  }
  .register-your-interest form .button-wrap {
    justify-content: stretch;
  }
  .register-your-interest form .button-wrap button {
    width: auto;
  }
  .register-your-interest h1 {
    font-size: 28px;
  }
}

:root {
  --main-color: #3A1300;
  --secondary-color: #ba7a57;
  --third-color: #4E6766;
  --fourth-color: #333333;
  --fifth-color: #6A8D92;
  --dataset-count-color: #C30045;
  --white-color: #ffffff;
  --header-size: 82px;
  --header-size-2: 120px;
}
@font-face {
  font-family: 'Georgia Pro';
  src: url('../../fonts/GeorgiaPro-Semibold.woff2') format('woff2'), url('../../fonts/GeorgiaPro-Semibold.woff') format('woff');
  font-weight: 600;
  /* Semi Bold */
  font-style: normal;
}
@font-face {
  font-family: 'Halyard Text';
  src: url('../../fonts/HalyardText-Book.woff2') format('woff2'), url('../../fonts/HalyardText-Book.woff') format('woff');
  font-weight: 400;
  /* Book */
  font-style: normal;
}
body {
  background-color: white;
}
*::selection {
  background-color: #4E6766;
  color: white;
}
.text-list li + li {
  margin-top: 1em;
}
.text-list li > ul {
  margin-top: 1em;
}
.text-list li::marker {
  font-weight: bold;
  color: var(--secondary-color);
}
ol.text-list > li > ul > li {
  list-style-type: disc;
}
a.general-link {
  color: var(--third-color);
}
a.general-link:hover {
  color: var(--fifth-color) !important;
}
button {
  background-color: var(--third-color);
  color: white;
  font-weight: 400 !important;
}
button:hover {
  color: white !important;
  background-color: var(--fifth-color);
}
.custom-link {
  font-style: italic;
  color: white;
  /* overrides the global a { color } */
}
.custom-footer-link {
  color: white;
  position: relative;
  bottom: 1px;
}
.custom-footer-link:hover {
  color: white;
}
.calendar-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.masthead {
  background-color: var(--main-color);
  font-size: 15px;
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-size);
  display: grid;
}
.header-image {
  display: grid;
  justify-content: center;
}
.masthead .container {
  display: grid;
  justify-content: space-between;
  grid-template-columns: auto auto;
  align-items: center;
  align-content: center;
  max-width: 1170px;
}
.masthead .logo img {
  height: 40px;
}
.masthead .navigation .nav-pills li a:hover,
.masthead .navigation .nav-pills li a:focus,
.masthead .navigation .nav-pills li.active a {
  background-color: white;
  color: var(--main-color);
  border: none;
}
.section.navigation,
.section.navigation .nav > li > a,
.section.navigation .dropdown-menu > li > a {
  font-family: 'Georgia Pro', Georgia, serif;
}
a.btn.btn-primary {
  background-color: var(--main-color);
}
.navigation {
  color: black;
}
#hero-section {
  /*background: var(--main-color);*/
  color: white;
  padding: 20px;
  background: var(--main-color);
  background-repeat: no-repeat;
  display: grid;
  background-image: url("/img/home2.jpg");
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
#hero-section::before {
  content: '';
  background-color: #000000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#hero-section .row {
  display: grid;
  text-align: center;
  justify-items: center;
}
#hero-section .header-content {
  display: grid;
  justify-items: center;
  z-index: 1;
}
#hero-section h1 {
  font-weight: 400;
  font-size: 30px;
  color: var(--white-color);
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}
#hero-section .search-description {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
}
#hero-section .search-description a {
  border-bottom: 1px solid white;
  text-decoration: none;
}
#hero-section .search-description a:hover {
  text-decoration: none;
  border-bottom: 1px solid var(--main-color);
  color: var(--main-color);
}
.search-form {
  width: 100%;
  max-width: 500px;
  border-bottom: none;
}
#hero-section #field-main-search {
  outline: none;
  border: none;
}
#hero-section #field-main-search:hover,
#hero-section #field-main-search:focus {
  outline: none;
  box-shadow: 0 0 10px var(--main-color);
  border: none;
}
.main {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-bottom: 0;
  gap: 30px;
  background-color: white;
}
.main .breadcrumb li a {
  color: #505050;
}
.page-heading {
  color: var(--secondary-color);
  font-size: 45px;
  font-weight: 400;
}
.row.wrapper.no-nav {
  border: none;
  box-shadow: none;
  background-color: transparent;
  max-width: 750px;
}
.articles-count a {
  transition: transform 300ms;
}
.articles-count a:hover {
  transform: scale(1.2);
}
.articles-count a h1 {
  margin: 0 !important;
  font-weight: 700;
  color: white !important;
  font-size: 30px !important;
}
.dataset-count-container {
  text-align: center;
  background-color: var(--dataset-count-color);
  width: 150px;
  height: 150px;
  border-radius: 150px;
  margin-bottom: -75px;
  position: relative;
  display: grid;
  align-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
#tag-section {
  background: white;
  padding: 5%;
}
#about-section {
  background: white;
  padding: 3% 5%;
}
#dataset-section {
  background: white;
  padding: 1% 5%;
}
.title-heading {
  color: var(--main-color);
  margin-bottom: 1em;
  font-size: 40px;
  font-weight: 400;
}
/*.sub-heading {*/
/*    margin: 5em 0em;*/
/*}*/
.tag-card {
  background: white;
  border-radius: 0.3em;
  padding: 15% 10%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 1.5em;
  text-transform: capitalize;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
.tag-card:hover {
  box-shadow: rgba(149, 157, 165, 0.4) 0px 8px 24px;
}
.tag-card-2 {
  background-color: #e6e5de;
  border-radius: 0.3em;
  padding: 15% 10%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-top: 1.5em;
  text-transform: capitalize;
}
.tag-card-alt {
  background: white;
  border-radius: 0.3em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tag-img {
  padding: 1em;
  margin-bottom: 1em;
  background-color: rgba(237, 236, 229, 0.2);
}
.tag-img-2 {
  padding: 1em;
  margin-bottom: 1em;
  background-color: white;
}
.tag-title {
  font-size: 1.2em;
}
.tag-dataset-count {
  font-size: 1.1em;
}
.dataset-title {
  color: var(--main-color);
  margin-bottom: 1em;
}
.dataset-list-group {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dataset-list-group li {
  display: flex;
  justify-content: space-between;
  padding: 0.8em;
  border-bottom: 1px solid lightgray;
}
.badge-bg {
  background-color: #edece5;
  color: black;
  padding: 0.5em;
}
#about-container {
  background-color: #e6e5de;
  width: 100%;
  height: 400px;
  border-radius: 2em;
  padding: 2em;
}
/*DATASET PAGE*/
#search-hero {
  width: 100%;
  height: 500px;
  background-color: black;
  padding: 10% 20%;
}
.highlight-color {
  color: green;
}
.dataset-hero-text {
  color: white;
  margin-bottom: 1em;
  text-transform: capitalize;
}
.dataset-item {
  background-color: white;
  padding: 5%;
  margin-bottom: 1.5em;
  border-radius: 1em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.dataset-item:last-of-type {
  background-color: white;
  padding: 5%;
  margin-bottom: 1.5em;
  border-radius: 1em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.individial-package-container {
  border-radius: 1em;
  padding: 3% 5%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 1em;
}
h2.dataset-heading > a {
  color: var(--main-color);
  font-size: 1.2em;
}
.package-description {
  color: rgba(0, 0, 0, 0.6);
}
.file-types {
  margin-top: 1em;
}
.file-badge {
  background-color: #ecf0f1;
  border-radius: 0.7em;
  padding: 0.3em 0.7em;
  margin-right: 0.5em;
  font-weight: 500;
}
.dataset-content {
  padding-bottom: 1.5em;
}
a.label.label-default {
  background-color: #ecf0f1;
  border-radius: 0.7em;
  padding: 0.5em 0.9em;
  margin-right: 0.5em;
  font-weight: 700;
  font-size: 0.8em;
  margin-top: 3em;
  color: rgba(0, 77, 68, 0.8);
}
a.label.label-default:hover {
  background-color: rgba(0, 77, 68, 0.8);
  color: white;
}
span.fa.fa-star {
  color: goldenrod;
}
/*FOOTER*/
.footer-site {
  padding: 5% 20px 5% 20px;
  background-color: var(--main-color);
  display: grid;
  justify-items: center;
}
.footer-site .footer-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  max-width: 1200px;
  width: 100%;
}
.footer-logo {
  height: 1.2em;
}
.footer-site .footer-section .container .row:before {
  display: none;
}
.footer-site .footer-section .container .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer-site .footer-section .bottom-references {
  display: grid;
}
.footer-site .footer-section .bottom-references p {
  color: white;
}
/*Amended tooltip*/
.tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip-text {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
  white-space: nowrap;
}
.tooltip-container:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.page-no-secondary {
  padding: 0;
  display: grid;
}
.register-your-interest {
  justify-items: center;
}
.register-your-interest .disclaimer {
  text-align: center;
  max-width: 580px;
  font-size: 20px;
  margin-bottom: 2em;
  background-color: #4E676622;
  border-radius: 8px;
  padding: 1em;
}
.register-your-interest .disclaimer a {
  display: inline-block;
  position: relative;
}
.register-your-interest .disclaimer a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 2px;
  background-color: var(--third-color);
  position: absolute;
  bottom: 4px;
  transition: width 300ms;
}
.register-your-interest .disclaimer a:hover {
  text-decoration: none;
}
.register-your-interest .disclaimer a:hover::before {
  width: 100%;
}
.register-your-interest h1 {
  color: var(--secondary-color);
  font-size: 45px;
  font-weight: 400;
  text-align: center;
}
.register-your-interest form {
  display: grid;
  justify-content: center;
  margin-bottom: 40px;
}
.register-your-interest form .button-wrap {
  display: grid;
  justify-content: center;
}
.register-your-interest form .button-wrap button {
  width: 200px;
}
.register-your-interest label {
  font-size: 18px;
}
.register-your-interest input {
  font-size: 18px;
  margin-bottom: 1em;
  height: 2.5em;
  max-width: 450px;
}
.register-your-interest input:focus {
  box-shadow: 0 0 25px #00cc9933;
  border-color: #00cc99;
}
.register-your-interest .h-captcha {
  margin-top: 20px;
  margin-bottom: 20px;
}
.additional-info-wrapper {
  display: grid;
  justify-content: center;
}
.additional-info {
  max-width: 550px;
}
.additional-info h3 {
  margin-top: 0;
  margin-bottom: 5px;
}
.additional-info table,
.additional-info table tbody,
.additional-info table tbody td {
  background-color: transparent !important;
}
.additional-info table thead {
  background-color: var(--secondary-color);
  color: white;
}
.additional-info table th,
.additional-info table td {
  padding: 10px !important;
}
.additional-info table tbody tr:nth-child(even) td,
.additional-info table tbody tr:nth-child(even) th {
  background-color: #f3e8e2 !important;
}
.additional-info table.table-bordered thead tr td,
.additional-info table.table-bordered thead tr th,
.additional-info table.table-bordered tbody tr td,
.additional-info table.table-bordered tbody tr th {
  border: none;
}
.additional-info table.table-bordered tbody tr:last-child td,
.additional-info table.table-bordered tbody tr:last-child th {
  border-bottom: 4px solid var(--secondary-color);
}
@media only screen and (max-width: 1199px) {
  form.section.site-search.simple-input {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .masthead {
    height: var(--header-size-2);
  }
  .masthead .container {
    margin-top: 14px;
    grid-template-columns: auto;
    justify-content: center;
  }
  .title-heading {
    margin-top: 50px;
  }
  .footer-site .footer-section {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .register-your-interest h1 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .masthead {
    height: var(--header-size);
  }
  .masthead .container {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
  #hero-section {
    /* the line below is to prevent mobile issues */
    background-attachment: scroll;
  }
  .masthead .logo img {
    position: fixed;
    top: 40px;
    left: 20px;
    transform: translateY(-50%);
  }
  #main-navigation-toggle {
    background-color: var(--main-color);
    z-index: 9;
    padding: 10px 30px 10px 30px;
    border-top: none;
    box-shadow: none;
    position: relative;
    left: 20px;
  }
  #hero-section h1 {
    font-size: 5vw;
    margin: 1vw 14vw 0 14vw;
  }
  #hero-section .search-description {
    margin-top: 3vw;
    margin-bottom: 7vw;
    font-size: 4vw;
  }
  .title-heading {
    font-size: 6vw;
  }
  .tag-card {
    box-shadow: none;
    border: none;
    border-top: 1px solid #cccccc;
    border-radius: 0;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .tag-card:hover {
    box-shadow: none;
  }
  .footer-site .footer-section {
    grid-template-columns: 1fr;
    gap: 2em;
    justify-items: center;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .footer-site .coimisiun-logo {
    margin-bottom: 1em;
    margin-right: 4rem;
  }
  .register-your-interest form {
    margin-bottom: 40px;
  }
  .register-your-interest form .button-wrap {
    justify-content: stretch;
  }
  .register-your-interest form .button-wrap button {
    width: auto;
  }
  .register-your-interest h1 {
    font-size: 28px;
  }
}

