html {
  overflow-x: hidden;	
}

body {
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background-image: url("../../images/indexImage2.jpg");
  background-size: 100% auto;
  background-position: center -70px;
  background-repeat: no-repeat;
}

/* Header */
.removeUnderline {
  text-decoration: none;
}

header {
  top: 0;
  z-index: 1000;
  height: auto;
}

.headerBackground {
  padding: 10px 30px;
  background-color: rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  justify-content: space-between;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.left, .right {
  display: flex;
  align-items: center;
}

.brand {
  color: #11474b;
  font-size: 36px;
  margin-left: 10px;
  font-weight: bold;
  text-decoration: none;
}

.right .headerButton {
  color: black;
  font-size: 18px;
  text-decoration: none;
  margin-left: 35px;
  width: fit-content;
}
.headerButton:hover {
  color: #11474b;
}

#indexImage {
  width: 100%;
  height: auto;
}

/* Main part */
main {
  max-width: 1200px;
  height: auto;
  min-height: calc(100vh - 275px);
  margin: 0 auto;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

#mainDiv {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: row;
}

#filterDiv {
  height: fit-content;
  width: 30%;
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 5px;
}
#filterDiv > h3 {
  color: #11474b;
}

.filterCheckbox {
  display: flex;
  flex: row;
  margin: 0;
}
.filter {
  background-color: #11474b;
}
.filterCheckbox > h4 {
  font-weight: normal;
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

#vacanciesDiv {
  height: fit-content;
  width: calc(70% - 10px);
}
.vacancyDiv {
    width: calc(100% - 20px);
    height: fit-content;
    border-radius: 8px;
    background-color: #f2f2f2;
    padding: 10px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    margin-bottom: 10px;
	margin-left: 10px;
}
h1 {
    margin: 0;
}
img {
    width: 200px;
    height: auto;
    max-height: 200px;
    margin-right: 10px;
}

/* Footer */
footer {
  height: fit-content;
  margin: 0 auto;
  margin-top: 10px;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

blockquote {
  width: 23%;
  height: 200px;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 0;
  margin-bottom: 0;
}

blockquote > h3, .button {
  color: black;
  display: flex;
  font-size: 16px;
}

blockquote > h3 {
  color: #11474b;
}

.button {
  margin-top: 7px;
  font-size: 13px;
}

#hamburgerMenuButton {
  display: none;
  width: 30px;
  height: auto;
  cursor: pointer;
}
#hamburgerMenu {
  display: none;
  position: fixed;
  background-color: #d1d1d1;
  top: 45px;
  right: 23px;
  text-align: center;
  border-radius: 5px;
}
.hamburgerMenuOption {
  color: black;
  font-size: 20px;
  text-decoration: none;
  width: fit-content;
  border-top-style: solid;
  margin: 0;
  color: white;
  width: calc(100% - 20px);
  padding: 10px;
}

@media only screen and (max-width: 1200px) {
  .left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .right *:not(#hamburgerMenu):not(#hamburgerMenu *):not(#hamburgerMenuButton) {
    display: none;
  }
  .center {
    display: none;
  }

  header {
    background-image: none;
    padding: 0 0;
  }
  main {
    min-height: calc(100vh - 40px);
  }

  #hamburgerMenuButton {
    display: block;
  }
  #hamburgerMenuButton:hover + #hamburgerMenu,
  #hamburgerMenu:hover {
    display: block;
  }

  #mainDiv {
    flex-direction: column;
  }
  #filterDiv {
    margin-bottom: 10px;
    margin-left: 10px;
    width: 100%;
  }
  #vacanciesDiv {
    width: calc(100% - 20px);
    margin-left: 10px;
  }

  .vacancyDiv {
    flex-direction: column;
  }
  .vacancyDiv > div > p {
    display: none;

  }
}

@media only screen and (max-width: 770px) {
  .footer-content {
    flex-direction: column;
  }
  blockquote {
    width: 100%;
    height: fit-content;
  }
}