#hiring {
  width: 100%;
  padding-top: 65px;
  font-family: 'Fira Sans', sans-serif;
  background-color: var(--dark-bg);
}
#team {
  margin: 50px auto;
  height: 600px;
  width: 80%;
  max-width: 1100px;
  padding-left: 50px;
  background-color: var(--light-bg);
  display: flex;
  justify-content: space-between;
  border-radius: 30px;
}

.team-left {
  width: 40%;
  padding-top: 50px;
}

.team-right {
  width: 60%;
  overflow: hidden;
}
#team-picture img {
  height: 100%;
}

#hiring h1 {
  color: #f43f3f;
  font-size: 30px;
}

#hiring h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.job-offers{
  width: 80%;
  max-width: 1000px;
  margin: auto;
  padding-bottom: 50px;
}

.accordion-button {
  font-weight: 600;
  font-size: 20px;
  color: var(--color-blue);
}

#hiring h2 {
  color: #1991eb;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
}

#hiring p,
.job p {
  width: 100%;
  font-size: 20px;
  letter-spacing: normal;
  color: black;
  font-weight: normal;
  margin: 0;
}

#mail {
  text-align: center;
  padding-top: 50px;
}

#mail a {
  font-size: 30px;
  color: white;
  text-decoration: none;
  background-color: #f43f3f;
  border-radius: 50px;
  padding: 10px 60px;
  font-weight: bold;
}

.hiring-footer {
  width: 100%;
  margin: auto;
}

.hiring-footer > .footer {
  justify-content: center;
  padding-bottom: 50px;
}

.footer-cards {
  padding: 50px;
  background-color: var(--light-bg);
}

@media screen and (max-width : 1200px){
  #team {
    padding-left: 0;
    justify-content: center;
  }
  .team-left {
    width: 80%;
  }
  
  .team-right {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hiring-navbar .menus {
    display: none;
  }

  #mail a {
    font-size: 20px;
    border-radius: 15px;
    padding: 10px 10px;
    font-weight: bold;
  }
  #hiring h1 {
    font-size: 20px;
  }

  #hiring p {
    font-size: 18px;
  }
}

@media screen and (max-width: 450px) {
  #hiring p {
    font-size: 14px;
  }
  .team-left {
    padding-top: 20px;
  }

  #team {
    height: 500px;
  }
}

