.layout_content_wp {
  line-height: 1.6;
}
.layout_content_wp .page_one_wp .page_one {
  margin: 0 auto;
  padding: 80px 40px;
  max-width: 1200px;
  color: white;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp {
  padding-bottom: 100px;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp .text_box_title {
  font-size: 40px;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp .text_box_info {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 20px;
  font-size: 20px;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp .text_box_img {
  padding-top: 40px;
  width: 100%;
  height: 400px;
  animation-delay: 0.5s;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp .text_box_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_content_wp .page_one_wp .page_one .text_box_wp:last-child {
  padding-bottom: 0;
}
.layout_content_wp .page_two_wp {
  color: white;
}
.layout_content_wp .page_two_wp .page_two {
  width: 100%;
}
.layout_content_wp .page_two_wp .page_two .page_two_top {
  padding: 0 20px;
  position: relative;
  height: 400px;
  overflow: hidden;
}
.layout_content_wp .page_two_wp .page_two .page_two_top::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/demo_4.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  filter: blur(4px);
  transform: scale(1.1);
}
.layout_content_wp .page_two_wp .page_two .page_two_top::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 38, 62, 0.5);
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_title {
  padding-top: 80px;
  text-align: center;
  position: relative;
  z-index: 10;
  font-size: 40px;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list {
  padding-top: 80px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
  font-size: 40px;
  display: flex;
  justify-content: space-between;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item .item_text {
  padding-bottom: 20px;
  font-size: 20px;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item .item_circle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item:first-child {
  align-items: start;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item:first-child .item_circle {
  animation: resizing 1s linear infinite alternate;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item:first-child .item_circle::after {
  content: "";
  position: absolute;
  right: -2000px;
  top: 50%;
  transform: translateY(-50%);
  width: 2000px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item:last-child {
  align-items: end;
}
.layout_content_wp .page_two_wp .page_two .page_two_top .top_list .top_item.new .item_circle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom {
  padding: 80px 20px 120px;
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item {
  padding: 20px 20px 40px;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  flex: 1;
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item .bottom_item_title {
  padding-bottom: 10px;
  font-size: 30px;
  border-bottom: 2px solid rgba(36, 103, 233, 0.7);
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item .bottom_item_text {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 10px;
  font-size: 18px;
}
.layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1000px) {
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list {
    text-align: center;
    display: block;
  }
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item {
    text-align: left;
    display: inline-block;
    width: 46%;
    margin: 0 1% 20px;
  }
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item:last-child {
    margin: 0 1% 20px;
  }
}
@media screen and (max-width: 667px) {
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list {
    text-align: center;
    display: block;
  }
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item {
    text-align: left;
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
  }
  .layout_content_wp .page_two_wp .page_two .page_two_bottom .bottom_list .bottom_item:last-child {
    margin: 0 0 20px;
  }
}
@keyframes resizing {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}/*# sourceMappingURL=careers.css.map */