@charset "utf-8";

.home_career_cta {
  position: relative;
}
.home_career_cta_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
}
.home_career_cta_wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
}
.home_career_cta_subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.home_career_cta_title {
  margin-top: 16px;
  color: #fff;
  font-size: 24px;
}
.home_career_cta_text {
  margin-top: 16px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
.home_career_cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 32px;
  padding: 0 40px;
  border: solid 1px #dce2e8;
  border-radius: 48px;
  transition: border-color 0.15s ease;
}
.home_career_cta_button_text {
  margin-right: 8px;
  color: #fff;
  font-weight: 500;
}
.home_career_cta_button_img {
  width: 18px;
  height: auto;
}

@media screen and (min-width: 641px) {
  .home_career_cta_button:hover {
    background-color: #fff;
  }
  .home_career_cta_button:hover .home_career_cta_button_text {
    color: #182127;
  }
  .home_career_cta_button:hover .home_career_cta_button_img {
    mix-blend-mode: difference;
  }
}

@media screen and (max-width: 640px) {
  .home_career_cta_wrapper {
    padding: 80px 20px;
  }
}

@media screen and (max-width: 480px) {
  .home_career_cta_wrapper {
    padding: 64px 20px;
  }
  .home_career_cta_subtitle {
    font-size: 16px;
  }
  .home_career_cta_title {
    font-size: 20px;
  }
  .home_career_cta_text {
    font-size: 14px;
    line-height: 1.8;
  }
}
