:root {
  --brandcolour: #A6CE39;
  --highlightcolour: #A6CE39;
}

body {
  font-size: 1.7rem;
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 400;
}

h3 {
  font-weight: 300;
}

a:hover {
  text-decoration: underline;
}

input {
  border: none;
  border-bottom: solid 1px #fff;
  margin-bottom: 50px;
  padding: 10px;
  font-weight: 300;
  text-align: center;
}

select {
  border: none;
  border-bottom: solid 1px #fff;
  margin-bottom: 50px;
  font-weight: 300;
  font-size: 20px;
}

/* headr */

.background {
  background-image: url(https://s3.eu-west-2.amazonaws.com/blueoctopus.assets/1fb98c30-aaca-45e5-ab6f-7cadc10d8869/vacancytemplatesite/hero.png);
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
}

.headerlogo {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.headerlogo h3 {
  display: inline-block;
}

.logo {
  margin-top: 60px;
  margin-bottom: 60px;
}

/* footer */

.logofooter {
  float: right;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 600px) {
  .logofooter {
    float: none;
  }

  footer {
    text-align: center;
  }

  footer .floatright {
    float: none;
  }
}

/* font sizes */

.font1_3 {
  font-size: 1.3rem;
}

.font1_8 {
  font-size: 1.8rem;
}

.font2_5 {
  font-size: 2rem;
}

.font4 {
  font-size: 4rem;
}

/* buttons */

.button {
  background-color: transparent;
  border: none;
  border-radius: 20px;
  padding: 12px;
  line-height: 1.3rem;
  background-color: var(--brandcolour);
  color: #fff;
}

.button:hover {
  filter: brightness(110%) saturate(140%);
  transition: 0.2s;
  text-decoration: underline;
}

/* colouring */

.colour-black {
  color: #000;
}

.colour-white {
  color: #fff;
}

.colour-grey {
  color: #505050;
}

.colour-brand {
  color: var(--brandcolour)
}

/* layout */

.floatleft {
  float: left;
}

.floatright {
  float: right;
}

.floatclear {
  clear: both;
}

/* padding */

.pt-3 {
  padding-top: 3rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

/* misc. */

.hr {
  height: 1px;
  background-color: var(--brandcolour);
  border: none;
}

.nounderline {
  text-decoration: none;
}

#keyword, #location, #distance {
  background-color: transparent;
}

::placeholder {
  color: #fff;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #fff;
}

::-ms-input-placeholder {
  color: #fff;
}

.centertext {
  text-align: center;
}

/* vacancy display */

#listing {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin: 0px auto;
  gap: 20px;
  justify-content: space-between
}

.vacancybox {
  flex-basis: calc(33% - 60px);
  max-width: calc(33% - 60px);
  border: #e4e4e4 1px solid;
  border-radius: 20px;
  border: #444444 1px solid;
}

.vacancyboxinner {
  width: 90%;
  margin: 2rem auto;
}

@media (max-width: 1200px) {
  .vacancybox {
    flex-basis: calc(49% - 10px);
    max-width: calc(49% - 10px);
  }
}

@media (max-width: 900px) {
  .vacancybox {
    flex-basis: 100%;
    max-width: 100%;
  }
}

.linetext {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.linetext .fa-solid {
  color: var(--brandcolour);
}

@media (max-width:770px) {
  .m_floatnone {
    float: none;
  }

  .m_blockalign {
    display: block;
  }

  .vacancybox {
    width: 100%;
  }
}

.no-vacancies {
  max-width: 100%;
  flex-basis: 100%;
  border: none;
}

#button-manager-big {
  position: absolute;
  right: 50px;
  top: 50px;
}

#button-manager-small {
  display: none;
  margin: 20px auto;
  width: 300px;
}

.search-block {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 900px) {
  #button-manager-big {
    display: none;
  }
  
  #button-manager-small {
    display: block;
  }

  .search-block {
    flex-direction: column;
  }
}