/*COLORS*/
/*GRID*/
/*
0 - 600p:       Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
1200 - 1800px   Normal desktop
> 1800px:       Big Desktop

x*/
/*
$breakpoint argument choices
- phone
- tab-port
- tab-land
- big-desktop

We use em instead of rem because it only works that way in all browsers.
1em = 16px
600px = 600/16 em = 37.5 em

The media queries you need can be applicable for
  base + typography >
  then general layout and grid>
  then page layout >
  finally components
*/
html {
  /*The default font-size in a browser is 16px
   *  font-size:62.5%; !*So now the font-size is 10px or whatever the font-size is set by the user*!
   */
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 400;
  margin: auto;
}

.n-tgr-button {
  background-color: #414756;
  text-decoration: none;
  color: white;
  border: none;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.n-tgr-button:hover {
  cursor: pointer;
  background-color: #5c5e65;
}

.footer {
  background-color: #B0BEE4;
  min-height: 7vh;
  display: grid;
  align-items: center;
  justify-content: left;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 56.25em) {
  .footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
  }
}
@media (max-width: 37.5em) {
  .footer {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
.footer-box {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 3rem;
}
.footer-label {
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}
@media (max-width: 75em) {
  .footer-label {
    font-size: 1.1rem;
  }
}
@media (max-width: 56.25em) {
  .footer-label {
    font-size: 1rem;
  }
}
.footer-label:hover {
  cursor: pointer;
}
.footer-label-icon {
  text-decoration: none;
  color: #000;
  font-size: large;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4000;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: white;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-rows: min-content;
  grid-template-columns: 10vw 80vw 10vw;
}
.header-logo-box {
  grid-column: 1/1;
  grid-row: 1/-1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-logo-box-content {
  grid-row: 1/-1;
  width: 4rem;
}
@media (max-width: 94em) {
  .header-logo-box-content {
    width: 4rem;
  }
}
@media (max-width: 75em) {
  .header-logo-box-content {
    width: 4rem;
  }
}
@media (max-width: 56.25em) {
  .header-logo-box-content {
    width: 2.8rem;
  }
}
@media (max-width: 37.5em) {
  .header-logo-box-content {
    width: 2.8rem;
  }
}
.header-center {
  grid-column: 2/3;
  color: #414756;
  display: grid;
  align-items: center;
  justify-content: left;
  grid-template-columns: 1fr;
}
@media (max-width: 56.25em) {
  .header-center {
    visibility: hidden;
  }
}
.header-center-menu {
  display: flex;
  align-content: center;
  justify-content: center;
}
.header-center-menu-item {
  text-transform: uppercase;
  text-decoration: none;
  color: #414756;
  padding-right: 4rem;
  font-size: 1.5rem;
}
.header-center-menu-item:hover {
  cursor: pointer;
  color: #5c5e65;
}
.header-right {
  grid-column: 3/4;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.header-right-menu {
  grid-column: 2/3;
  visibility: hidden;
}
@media (max-width: 56.25em) {
  .header-right-menu {
    visibility: visible;
  }
}

.home {
  display: flex;
  justify-content: center;
  height: 93vh;
}
.home-center {
  flex: 1;
  margin-top: 14rem;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  flex-direction: column;
}
.home-center-text {
  text-align: center;
  font-size: 1.5rem;
  align-content: center;
  text-transform: uppercase;
  color: #828dab;
}
.home-first-line {
  height: 25%;
  border-left: solid #B0BEE4 1px;
  border-right: solid #B0BEE4 1px;
}
.home-second-line {
  height: 25%;
  border-left: solid #B0BEE4 1px;
  border-right: solid #B0BEE4 1px;
}
.home-third-line {
  height: 25%;
  border-left: solid #B0BEE4 1px;
  border-right: solid #B0BEE4 1px;
}
.home-fourth-line {
  border-left: solid #B0BEE4 1px;
  border-right: solid #B0BEE4 1px;
  height: 17%;
  text-decoration: none;
  color: #42454F;
}

.vacancy-selected {
  grid-column: 2/3;
  display: flex;
}

.vacancy-pane {
  /*This is the class that defines the right pane*/
  width: 80vw;
  overflow-y: auto;
  display: grid;
  grid-template-columns: min-content repeat(5, 1fr);
  grid-template-rows: repeat(11, min-content);
  grid-gap: 1rem;
}
@media (max-width: 37.5em) {
  .vacancy-pane {
    grid-template-columns: min-content repeat(3, 1fr);
  }
}
.vacancy-pane-filler-top {
  height: 3rem;
}
.vacancy-pane-label {
  font-size: 1.5rem;
  font-weight: bold;
  display: grid;
  align-content: center;
  justify-items: left;
  color: #414756;
}
@media (max-width: 56.25em) {
  .vacancy-pane-label {
    font-size: 1.2rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-pane-label {
    font-size: 1.2rem;
  }
}
.vacancy-pane-text {
  font-size: 1.5rem;
  display: grid;
  align-content: center;
  justify-items: left;
  color: #414756;
}
@media (max-width: 56.25em) {
  .vacancy-pane-text {
    font-size: 1.2rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-pane-text {
    font-size: 1.2rem;
  }
}
.vacancy-pane-header {
  text-align: left;
  font-size: 3rem;
  color: #B0BEE4;
  grid-column: 2/6;
  grid-row: 2/3;
  margin-bottom: 1rem;
}
@media (max-width: 56.25em) {
  .vacancy-pane-header {
    font-size: 2rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-pane-header {
    font-size: 2rem;
    grid-column: 2/5;
  }
}
.vacancy-pane-label-city {
  grid-column: 2/3;
  grid-row: 3/4;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-city {
    grid-column: 2/3;
  }
}
.vacancy-pane-text-city {
  grid-column: 3/4;
  grid-row: 3/4;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-city {
    grid-column: 3/4;
  }
}
.vacancy-pane-label-hours {
  grid-column: 2/3;
  grid-row: 4/5;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-hours {
    grid-column: 2/3;
  }
}
.vacancy-pane-text-hours {
  grid-column: 3/4;
  grid-row: 4/5;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-hours {
    grid-column: 3/4;
  }
}
.vacancy-pane-label-education {
  grid-column: 2/3;
  grid-row: 5/6;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-education {
    grid-column: 2/3;
  }
}
.vacancy-pane-label-customer {
  grid-column: 2/3;
  grid-row: 6/7;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-customer {
    grid-column: 2/3;
  }
}
.vacancy-pane-text-education {
  grid-column: 3/4;
  grid-row: 5/6;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-education {
    grid-column: 3/4;
  }
}
.vacancy-pane-text-customer {
  grid-column: 3/4;
  grid-row: 6/7;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-customer {
    grid-column: 3/4;
  }
}
.vacancy-pane-label-option-to-extend {
  grid-column: 4/5;
  grid-row: 3/4;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-option-to-extend {
    grid-row: 7/8;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-option-to-extend {
  grid-column: 5/6;
  grid-row: 3/4;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-option-to-extend {
    grid-row: 7/8;
    grid-column: 3/4;
  }
}
.vacancy-pane-label-start-date {
  grid-column: 4/5;
  grid-row: 4/5;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-start-date {
    grid-row: 8/9;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-start-date {
  grid-column: 5/6;
  grid-row: 4/5;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-start-date {
    grid-row: 8/9;
    grid-column: 3/4;
  }
}
.vacancy-pane-label-end-date {
  grid-column: 4/5;
  grid-row: 5/6;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-end-date {
    grid-row: 9/10;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-end-date {
  grid-column: 5/6;
  grid-row: 5/6;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-end-date {
    grid-row: 9/10;
    grid-column: 3/4;
  }
}
.vacancy-pane-label-final-date-submission {
  grid-column: 4/5;
  grid-row: 6/7;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-final-date-submission {
    grid-row: 10/11;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-final-date-submission {
  grid-column: 5/6;
  grid-row: 6/7;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-final-date-submission {
    grid-row: 10/11;
    grid-column: 3/4;
  }
}
.vacancy-pane-splitter {
  border-bottom: solid #B0BEE4 1px;
  grid-column: 2/6;
  grid-row: 7/8;
}
@media (max-width: 37.5em) {
  .vacancy-pane-splitter {
    grid-row: 11/12;
    grid-column: 2/5;
  }
}
.vacancy-pane-label-description {
  grid-column: 2/3;
  grid-row: 8/9;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-description {
    grid-row: 12/13;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-description {
  grid-column: 2/6;
  grid-row: 9/10;
  border-top: solid #B0BEE4 1px;
  border-bottom: solid #B0BEE4 1px;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-description {
    grid-row: 13/14;
    grid-column: 2/5;
  }
}
.vacancy-pane-label-requirements {
  grid-column: 2/3;
  grid-row: 11/12;
}
@media (max-width: 37.5em) {
  .vacancy-pane-label-requirements {
    grid-row: 14/15;
    grid-column: 2/3;
  }
}
.vacancy-pane-text-requirements {
  grid-column: 2/6;
  grid-row: 12/13;
  border-top: solid #B0BEE4 1px;
  border-bottom: solid #B0BEE4 1px;
}
@media (max-width: 37.5em) {
  .vacancy-pane-text-requirements {
    grid-row: 16/17;
    grid-column: 2/5;
  }
}
.vacancy-pane-respond {
  grid-column: 3/6;
  grid-row: 13/14;
  display: flex;
  align-content: center;
  justify-content: center;
  height: 4rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2vh;
}
@media (max-width: 37.5em) {
  .vacancy-pane-respond {
    grid-row: 17/18;
    grid-column: 3/5;
  }
}
.vacancy-pane-filler-bottom {
  grid-column: 3/6;
  grid-row: 13/14;
  height: 3rem;
}

.n-tgr-vacancy-pane {
  display: grid;
  grid-template-rows: min-content 1fr;
}

.vacancy-text-title {
  font-size: 1.5rem;
  grid-column: 1/-1;
  color: white;
}
@media (max-width: 94em) {
  .vacancy-text-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 75em) {
  .vacancy-text-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 56.25em) {
  .vacancy-text-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-text-title {
    font-size: 1rem;
  }
}
.vacancy-text-title-customer {
  grid-row: 1/2;
  width: 8vw; /* Set a width */
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Add ellipsis */
}
.vacancy-text-title-ntgr {
  grid-row: 2/3;
}

.vacancy-text-title-ntgr {
  font-size: 1.5rem;
  grid-column: 1/-1;
  grid-row: 2/3;
  color: white;
}
@media (max-width: 94em) {
  .vacancy-text-title-ntgr {
    font-size: 1.5rem;
  }
}
@media (max-width: 75em) {
  .vacancy-text-title-ntgr {
    font-size: 1.3rem;
  }
}
@media (max-width: 56.25em) {
  .vacancy-text-title-ntgr {
    font-size: 1.1rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-text-title-ntgr {
    font-size: 1rem;
  }
}

.vacancy-label-customer {
  font-size: 1.5rem;
  grid-column: 1/2;
  grid-row: 2/3;
}
@media (max-width: 94em) {
  .vacancy-label-customer {
    font-size: 1rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-label-customer {
    font-size: 1rem;
  }
}

.vacancy-text-customer {
  font-size: 1.5rem;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media (max-width: 94em) {
  .vacancy-text-customer {
    font-size: 1rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy-text-customer {
    font-size: 1rem;
    grid-column: 1/2;
    grid-row: 3/4;
  }
}

.close-button {
  text-align: right;
  padding-top: 3rem;
  padding-right: 3rem;
  font-size: 2rem;
  color: #B0BEE4;
}
.close-button:hover {
  color: #414756;
  cursor: pointer;
}

.container {
  height: 93%;
  display: flex;
}
@media (max-width: 37.5em) {
  .container {
    flex-direction: column;
  }
}

/*The next part is all about the list of vacancies*/
.vacancies {
  width: 20%;
  padding-top: 13rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto; /* Enable vertical scrolling */
}
@media (max-width: 37.5em) {
  .vacancies {
    height: 100%;
    width: 100%;
    border-bottom: solid #B0BEE4 1px;
  }
}

.vacancy-abstract {
  margin-bottom: 1rem;
  min-height: 5rem;
  display: flex;
  justify-content: center;
}
.vacancy-abstract-content {
  width: 80%;
  align-content: space-evenly;
}
@media (max-width: 37.5em) {
  .vacancy-abstract-content {
    width: 50%;
  }
}
.vacancy-abstract-content-n-tgr {
  width: 80%;
  align-items: stretch;
}
@media (max-width: 37.5em) {
  .vacancy-abstract-content-n-tgr {
    width: 50%;
  }
}

.vacancy-text {
  font-size: 1rem;
  width: 8vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (max-width: 37.5em) {
  .vacancy-text {
    width: 23vw;
  }
}
.vacancy-text-name {
  text-transform: uppercase;
}

/*The part below is all about the vacancy on the right site*/
.vacancies-filter {
  background-color: #B0BEE4;
  position: fixed; /* Stay in place */
  z-index: 5000;
  right: 0;
  top: 0;
  height: 100%;
  width: 20rem;
  animation: slide-down 800ms ease-out forwards;
}
.vacancies-filter-form {
  display: flex;
  flex-direction: column;
}
.vacancies-filter-close {
  margin: 5rem;
  width: 10rem;
  font-size: 1.5rem;
}
.vacancies-filter-close:hover {
  color: white;
  cursor: pointer;
}
.vacancies-filter-content {
  background-color: #B0BEE4;
  display: flex;
  flex-direction: column;
}
.vacancies-filter-button {
  background-color: #B0BEE4;
}
.vacancies-filter-input {
  border: none;
  outline: none;
  font-size: 1.5rem;
  background-color: #f7f7f7;
  padding-left: 10px;
  margin: 1.5rem;
  width: 80%;
  border-radius: 0.5rem;
}
.vacancies-filter-element {
  display: flex;
  justify-content: center;
}
.vacancies-filter-open {
  font-size: 2.5rem;
  color: #42454F;
  margin-bottom: 1rem;
  text-align: right;
  margin-right: 2rem;
}
.vacancies-filter-open:hover {
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .vacancies-filter-open {
    margin-right: 25vw;
  }
}
.vacancies-filter-empty {
  color: #777;
  display: none;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-3rem);
}
.vacancies-filter-empty:hover {
  cursor: pointer;
}

.vacancy { /*This is the class that defines the right pane with the complete vacancy*/
  width: 80%;
  overflow-y: auto;
  margin-top: 12rem;
}
@media (min-width: 94em) {
  .vacancy {
    margin-top: 12rem;
  }
}
@media (max-width: 75em) {
  .vacancy {
    margin-top: 12rem;
  }
}
@media (max-width: 56.25em) {
  .vacancy {
    margin-top: 10rem;
  }
}
@media (max-width: 37.5em) {
  .vacancy {
    width: 100%;
    height: 100%;
    display: none;
    margin-top: 10rem;
  }
}

.before-click {
  margin-top: 27vh;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 37.5em) {
  .before-click {
    margin-top: 14rem;
  }
}
.before-click-text {
  height: 11vh;
  border-top: solid #B0BEE4 1px;
  border-bottom: solid #B0BEE4 1px;
  font-size: 3rem;
  text-transform: uppercase;
  color: #414756;
  display: grid;
  align-items: center;
  justify-content: center;
}
@media (max-width: 94em) {
  .before-click-text {
    font-size: 2rem;
  }
}
@media (max-width: 37.5em) {
  .before-click-text {
    font-size: 1.5rem;
  }
}

.contact {
  min-height: 93vh;
  display: grid;
  grid-template-columns: 20vw 1fr 20vw;
  /*the next two are for styling the form parts*/
}
.contact-center {
  margin-top: 14rem;
  grid-column: 2/3;
  min-height: 49rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content 10% 50%;
}
.contact-header {
  color: #828dab;
  width: 100%;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 94em) {
  .contact-header {
    font-size: 2rem;
  }
}
@media (max-width: 37.5em) {
  .contact-header {
    font-size: 1.5rem;
  }
}
.contact-form {
  grid-row: 3/4;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 16%);
}
.contact-input {
  border: none;
  outline: none;
  width: 90%;
  font-size: 2rem;
}
.contact-button {
  height: 4rem;
  font-size: 1.5rem;
  padding: 1rem;
  color: white;
}
@media (max-width: 94em) {
  .contact-button {
    font-size: 1.5rem;
  }
}
@media (max-width: 37.5em) {
  .contact-button {
    font-size: 1.5rem;
  }
}
.contact .btn:disabled {
  background-color: grey;
  background-image: none;
  color: lightgray;
  border-color: gray;
  cursor: not-allowed;
}
.contact-button-container {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 3.5rem;
  grid-row: 6/7;
}
.contact-input-container {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px;
}
@media (max-width: 94em) {
  .contact-input-container {
    margin-bottom: 4rem;
  }
}
@media (max-width: 37.5em) {
  .contact-input-container {
    margin-bottom: 8rem;
  }
}
.contact-input-container-name {
  grid-row: 1/2;
}
.contact-input-container-email {
  grid-row: 2/3;
}
.contact-input-container-telephone {
  grid-row: 3/4;
}
.contact-input-container-message {
  grid-row: 4/5;
}

.success {
  border-color: #B0BEE4;
}

.error {
  border-color: red;
}

.about {
  margin-top: 14rem;
  min-height: 93vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  overflow-y: auto;
}
@media (max-width: 37.5em) {
  .about {
    grid-template-rows: repeat(4, 41vh);
  }
}
.about-part {
  margin-top: 1rem;
  border-left: solid #B0BEE4 1px;
  border-right: solid #B0BEE4 1px;
  width: 60vw;
  height: 20rem;
  color: #414756;
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-columns: repeat(3, 1fr);
}
.about-part-icon {
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 3rem;
  text-align: center;
  color: #B0BEE4;
}
@media (max-width: 37.5em) {
  .about-part-icon {
    font-size: 2rem;
  }
}
.about-part-header {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: 3rem;
  text-align: center;
  border-bottom: solid #B0BEE4 1px;
}
@media (max-width: 37.5em) {
  .about-part-header {
    font-size: 2rem;
  }
}
.about-part-contact {
  grid-row: 1/2;
  grid-column: 3/4;
  font-size: 3rem;
  text-align: center;
  color: #B0BEE4;
  text-decoration: none;
}
.about-part-contact:hover {
  color: #414756;
  cursor: pointer;
}
.about-part-text {
  grid-row: 2/3;
  grid-column: 1/4;
  font-size: 1.25rem;
  padding: 1rem;
}
@media (max-width: 37.5em) {
  .about-part-text {
    font-size: 1rem;
  }
}
.response {
  display: grid;
  grid-template-columns: 20vw 1fr 20vw;
}
.response-content {
  position: fixed;
  top: 30%;
  left: 10%;
  width: 80%;
  background-color: #f7f7f7;
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2);
  height: 50vh;
  border-radius: 2rem;
  overflow-y: auto;
}
.response-center {
  margin-top: 14rem;
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content 10% 50%;
}
.response-header {
  color: #414756;
  width: 100%;
  font-size: 3rem;
  text-align: center;
  padding-bottom: 1rem;
}
.response-form {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(6, 30%);
}
.response-input {
  border: none;
  outline: none;
  width: 90%;
  font-size: 2rem;
  background-color: #f7f7f7;
}
.response-button {
  border-radius: 1rem;
  height: 3.5rem;
  font-size: 2rem;
  border: none;
}
.response-button-container {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 5rem;
  grid-row: 5/6;
}
.response .btn:disabled {
  background-color: grey;
  background-image: none;
  color: lightgray;
  border-color: gray;
  cursor: not-allowed;
}
.response-input-container {
  display: flex;
  justify-content: center;
  align-content: center;
  height: 3.5rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px;
}
@media (max-width: 56.25em) {
  .response-input-container {
    font-size: 1.5rem;
  }
}
@media (max-width: 37.5em) {
  .response-input-container {
    font-size: 1.2rem;
  }
}
.response-input-container-name {
  grid-row: 2/3;
}
.response-input-container-email {
  grid-row: 3/4;
}
.response-input-container-telephone {
  grid-row: 4/5;
}
.response-input-container-message {
  grid-row: 5/6;
}

.response-success {
  border-color: #B0BEE4;
}

.response-error {
  border-color: red;
}

.navigation {
  /*The thing that is visible and invisible
  ** as high and wide as the page itself
  */
  /*
    The following is about creating the cross. So the middle one disappears.
    The bottom and top line go to the middle
    The bottom rotates 135 deg and the top rotates -135 deg
    */
}
.navigation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 120;
  display: none;
}
.navigation-modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 20rem;
  height: 100vh;
  background-color: white;
  z-index: 500;
  animation: slide-down 800ms ease-out forwards;
}
.navigation-button {
  display: block;
  background-color: white;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  position: fixed;
  right: 1rem;
  z-index: 3000;
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
}
.navigation-icon-show {
  position: relative;
  margin-top: 3.4rem;
}
.navigation-icon-show, .navigation-icon-show::after, .navigation-icon-show::before {
  width: 3.5rem;
  height: 3px;
  background-color: #414756;
  display: inline-block;
}
.navigation-icon-show::after, .navigation-icon-show::before {
  content: "";
  position: absolute;
  left: 0;
  transition: all 2s;
}
.navigation-icon-show::before {
  background-color: #B0BEE4;
  top: 1rem;
}
.navigation-icon-show::after {
  top: -1rem;
}
.navigation-button:active .navigation-icon-show {
  background-color: transparent;
}
.navigation-button:active .navigation-icon-show::before {
  top: 0;
  rotate: 135deg;
}
.navigation-button:active .navigation-icon-show::after {
  top: 0;
  rotate: -135deg;
}
.navigation-button:after .navigation-icon-show {
  background-color: transparent;
}
.navigation-button:after .navigation-icon-show::before {
  top: 0;
  rotate: 135deg;
}
.navigation-button:after .navigation-icon-show::after {
  top: 0;
  rotate: -135deg;
}
.navigation-icon-hide {
  position: relative;
  margin-top: 3.4rem;
}
.navigation-icon-hide, .navigation-icon-hide::after, .navigation-icon-hide::before {
  width: 3.5rem;
  height: 3px;
  background-color: transparent;
  display: inline-block;
}
.navigation-icon-hide::after, .navigation-icon-hide::before {
  content: "";
  position: absolute;
  left: 0;
  transition: all 2s;
}
.navigation-icon-hide::before {
  background-color: #B0BEE4;
  rotate: 135deg;
  top: 0;
}
.navigation-icon-hide::after {
  rotate: -135deg;
  background-color: #414756;
  top: 0;
}

.content {
  margin-top: 2rem;
  display: grid;
  grid-template-rows: 10rem 1fr;
}
@media (min-width: 94em) {
  .content {
    margin-top: 2rem;
  }
}
@media (max-width: 94em) {
  .content {
    margin-top: 2rem;
  }
}
@media (max-width: 75em) {
  .content {
    margin-top: 2rem;
  }
}
@media (max-width: 56.25em) {
  .content {
    margin-top: 0;
  }
}
@media (max-width: 37.5em) {
  .content {
    margin-top: 1rem;
  }
}

.navigation-list {
  grid-row: 2/-1;
  list-style: none;
  display: grid;
  grid-template-rows: min-content;
  grid-row-gap: 2rem;
}
.navigation-list-item {
  text-transform: uppercase;
  text-decoration: none;
  color: #414756;
  font-size: 1.5rem;
}
.navigation-list-item:hover {
  color: #5c5e65;
  cursor: pointer;
}
.navigation-list-ntgr-logo {
  transform: translateY(0.8rem);
  width: 15px;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-modal {
  position: fixed; /* Stay in place */
  z-index: 5000;
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(130, 141, 171, 0.5);
}

.cookie-content {
  position: fixed;
  top: 55%;
  left: 0;
  height: 10vh;
  min-height: 5rem;
  width: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
  color: white;
  display: grid;
  grid-template-columns: 2vw 60vw 37vw;
}
.cookie-content-text {
  grid-column: 2/3;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 94em) {
  .cookie-content-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 37.5em) {
  .cookie-content-text {
    font-size: 1rem;
  }
}
.cookie-content-buttons {
  grid-column: 3/4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.5rem;
}

.cookie-button {
  height: 2rem;
  font-size: 1.2rem;
  padding: 1rem;
  color: white;
  width: 5rem;
}
.cookie-button-right {
  margin-right: 2rem;
}

.filler-n-tgr-list {
  margin-top: 12rem;
}
@media (max-width: 37.5em) {
  .filler-n-tgr-list {
    margin-top: 0;
  }
}

.n-tgr-vacancies {
  width: 20%;
  display: flex;
  justify-content: space-evenly;
  flex-direction: column;
  overflow-y: auto;
}
@media (max-width: 37.5em) {
  .n-tgr-vacancies {
    margin-top: 12rem;
    height: 100%;
    width: 100%;
  }
}

.offer {
  display: flex;
  justify-content: center;
  height: 93vh;
}

.salary {
  margin-top: 10rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 10% 80% 10%;
  grid-template-rows: 20% repeat(5, 13%);
}
.salary-block {
  display: none;
  grid-column: 2/3;
  grid-row: 2/3;
}
.salary-calculate {
  height: 4rem;
  font-size: 1.5rem;
  padding: 1rem;
  color: white;
}
.salary-input {
  border: none;
  outline: none;
  width: 90%;
  background-color: #f7f7f7;
}
.salary-input:focus {
  background-color: #fff;
}
.salary-label {
  grid-column: 1/2;
}
.salary-euro {
  grid-column: 2/3;
}
.salary-container {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid #B0BEE4 1px;
  display: grid;
  grid-template-columns: 75% 5% 20%;
  grid-template-rows: 1fr;
  font-size: 1.5rem;
  color: #828dab;
}
@media (max-width: 37.5em) {
  .salary-container {
    font-size: 1.3rem;
  }
}
.salary-header {
  grid-column: 1/5;
  grid-row: 3/4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.salary-hourly-rate {
  grid-column: 2/3;
  grid-row: 2/3;
}
.salary-hours {
  grid-column: 2/3;
  grid-row: 3/4;
}
.salary-revenue {
  grid-column: 2/3;
  grid-row: 4/5;
}
.salary-lease {
  grid-column: 2/3;
  grid-row: 5/6;
}
.salary-gross {
  grid-column: 2/3;
  grid-row: 6/7;
  border-bottom: none;
}
.salary-line-right {
  border-right: solid #B0BEE4 1px;
  grid-row: 2/8;
}
.salary-line-left {
  border-left: solid #B0BEE4 1px;
  grid-row: 2/8;
}

/*# sourceMappingURL=style.css.map */
