.career_table2 a:hover {
  text-decoration: hidden;
  color: black;
  background-size: 0% 2px;
}

.career1 {
  width: 100%;
}

.career-container {
  display: flex;
  margin: 30px 15%;
  font-size: var(--fs-400);
  line-height: 1.5;
  text-align: justify;
}

.career-container .career-one {
  width: 70%;
  padding-right: 50px;
}

.career-container .career-two {
  display: flex;
  flex-direction: column;
  width: 30%;
  padding: 30px;
  align-items: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.career-container .career-two img {
  width: 200px;
}
.career-container .career-two a {
  color: var(--accent-color);
  font-weight: 600;
}

.careers-container {
  /* padding: 30px 30vh; */
  margin: 30px 15%;
}

.careers-container table {
  width: 100%;
  font-size: var(--fs-400);
  border-collapse: collapse;
  /* border: solid; */
}

.careers-container table thead {
  background-color: var(--torr-blue-color);
  font-weight: 400;
  color: white;
  height: 40px;
}

.careers-container th,
.careers-container td {
  padding: 0 20px;
  border: 1px solid #dadada;
}

.careers-container ul {
  list-style: none;
  list-style-position: inside;
}

.careers-container tr:nth-child(even) {
  background-color: #f2f2f2;
}

.careers-container ul li {
  line-height: 1.5;
  margin: 20px 0;
}

.careers-container .label {
  font-weight: 600;
}

.button-more {
  border: none;
  background-color: var(--torr-blue);
  background: linear-gradient(
    346deg,
    rgba(255, 72, 0, 1) 0%,
    rgba(255, 158, 0, 1) 100%
  );
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  color: white;
  cursor: pointer;
  padding: 0.5rem 2rem;
  transition: all 0.5s ease;
  font-size: var(--fs-400);
  text-align: center;
  margin-bottom: 10px;
}

.button-more:hover {
  background: linear-gradient(
    346deg,
    rgba(255, 72, 0, 1) 0%,
    rgba(255, 158, 0, 1) 50%
  );
  background-color: #297ae2;
  color: white;
  transition: all 0.5s ease;
}

.button-more:active {
  background: linear-gradient(
    346deg,
    rgba(255, 72, 0, 1) 0%,
    rgba(255, 158, 0, 1) 2%
  );
}

.careers-container {
  display: block;
}

.careers-container-mobile {
  display: none;
}

@media screen and (max-width: 800px) {
  .career-container {
    margin: 30px 5vh;
    flex-direction: column;
    text-align: justify;
  }
  .careers-container {
    margin: 10px 5vh;
    display: none;
  }
  .career-container .career-one {
    width: 100%;
    padding-right: 0;
  }
  .career-container .career-two {
    width: 100%;
    margin: 12px 0;
  }

  .careers-container-mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    font-size: var(--fs-400);
  }
  .careers-container-mobile .careers-mobile {
    margin: 10px 30px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background-color: white;
  }

  .careers-container-mobile .careers-mobile ul {
    list-style: none;
  }

  .careers-container-mobile .careers-mobile ul li {
    margin: 2rem 0;
  }

  .careers-container-mobile .location b {
    font-weight: 600;
  }

  .careers-mobile .job-title {
    color: white;
    background-color: var(--torr-blue-color);
    padding: 20px 15px;
    font-weight: 600;
  }

  .careers-mobile .job-detail {
    padding: 20px 10px;
  }

  .careers-mobile .label {
    font-weight: 600;
  }
}
