#welcome_container {
  min-height: 75vh;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 100%;
}

#welcome_container .img_container {
  animation: x_slide_in_right 500ms linear 0ms 1 normal;
  justify-content: center;
}

#welcome_container .text_container {
  grid-column: 1/2;
  grid-row: 1/2;
}

#welcome_container .img_container img {
  transition: transform 200ms linear;
  border-radius: 100%;
  max-width: 100%;
  max-height: 100%;
}

#welcome_container .img_container img:hover {
  transform: scale(1.1);
}

#welcome_container .text_container {
  padding-top: 1vh;
  font-size: 1.5rem;
  line-height: 1.8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#reasons_to_work {
  display: flex;
  align-self: center;
  flex-direction: column;
  width: 100%;
  min-height: 70vh;
  background-color: rgb(230, 215, 190);
}

.job_table {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.advantages_item {
  background-color: rgb(242, 226, 201);
  border-radius: 30xp;
  margin: 1%;
  position: relative;
  width: 30%;
  height: 90%;
  box-shadow: 5px 0px 5px 1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
}

.advantages_list {
  text-align: left;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  margin: 10%;
}

.advantages_item h3 {
  align-self: center;
  padding-top: 10%;
  margin: 0;
  font-size: 1.5rem;
  color: rgb(199, 63, 49);
}

.advantages_list li {
  line-height: 1.5rem;
  color: rgb(0, 121, 174);
  padding-top: 3rem;
}

.advantages_list > :first-child {
  padding-top: 0.5rem;
}

#last_sentence p {
  font-size: 1.5rem;
}

#job_description {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-height: 60vh;
  width: 100%;
  background-color: rgb(230, 215, 190);
}

.job_headline {
  display: flex;
  justify-content: center;
  padding-top: 1vh;
  color: rgb(199, 63, 49);
  font-size: 2rem;
}

@media (max-width: 1000px) {
  #reasons_to_work {
    padding-top: 15vh;
  }
  #job_description {
    min-height: 100vh;
  }
  .advantages_item {
    height: 33%;
    width: 80%;
    margin: 1vh 0vw 1vh 0vw;
    padding: 5vh 0vw 5vh 0vw;
  }
  .job_table {
    flex-direction: column;
    margin-bottom: 15vh;
  }
  #welcome_container {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    padding: 0;
  }
  #welcome_container .text_container {
    padding: 20vh 0vw 10vh 0vw;
  }
  #welcome_container .img_container {
    display: flex;
  }
  #welcome_container .img_container img {
    width: 100%;
    border-radius: 0;
  }
  #job_table {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */