@charset "utf-8";

* {
  box-sizing: border-box;
}

body {
  background-color: #fff;
}

picture {
  display: block;
}

.interview_layout {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.interview_layout--no-pd {
  padding: 0;
}

.bg_gray {
  background: #f7f9fb;
}

.bg_gray .recruitinfo_wrap {
  padding-top: 130px;
}

/* Common */
.interview_title {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  color: #e5013f;
  font-size: 23px;
}

@media screen and (max-width: 1024px) {
  .interview_title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .interview_title {
    font-size: 18px;
  }

  .bg_gray .recruitinfo_wrap {
    padding-top: 45px;
  }
}

/* Mainvisual section */
.mainv_section {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.img_mainv {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainv_container {
  background-color: #e5013f;
  width: 100%;
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  display: block;
  padding-top: 22px;
  padding-left: calc((100% - 1120px) / 2);
}

.title {
  font-size: 65px;
  font-weight: 600;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

.tag_container {
  margin-top: 20px;
  display: flex;
  gap: 44px;
  align-items: flex-start;
}

.mainv_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.mainv_left {
  color: #fff;
  width: 48.6vw;
  padding-bottom: 20px;
}

.tag {
  gap: 15px 14px;
  text-align: center;
  letter-spacing: 0.01em;
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tag_child {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  letter-spacing: 0.01em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  min-width: 100px;
  width: fit-content;
}

.tag_child--job {
  font-size: inherit;
  background-color: #fff;
  color: #e5013f;
}

/* .tag_child.is-active,
.tag_child:hover {
  background-color: #fff;
  color: #e5013f;
} */

.mainv_right {
  width: calc(100% - 48.6vw);
  display: flex;
  align-items: center;
  gap: 25px;
  border-top-left-radius: 22px;
  color: #e5013f;
  background-color: #fff;
  padding: 28px 10px 28px 45px;
}

.right_content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.right_title {
  font-size: 69px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.right_content p:first-child {
  padding-bottom: 4px;
  border-bottom: 1px solid #e5013f;
}

.right_subTitle,
.right_dateJoin {
  letter-spacing: 0.01em;
}

@media(max-width: 1200px) {
  .mainv_container {
    padding-left: 40px;
  }

  .title {
    font-size: 50px;
  }

  .tag_container {
    gap: 20px;
  }

  .tag_child--job {
    padding: 3px 18px;
    height: fit-content;
  }

  .tag {
    gap: 12px;
  }
}

@media(max-width: 1024px) {

  .mainv_section {
    height: auto;
  }

  .mainv_container {
    position: relative;
    bottom: auto;
    top: 0;
    padding-left: 0;
    padding-top: 40px;
  }

  .img_mainv {
    width: 100%;
    height: 80vw;
  }

  .mainv_left,
  .mainv_right {
    width: 100%;
  }

  .mainv_content {
    flex-direction: column;
    padding-left: 40px;
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {

  .mainv_container {
    padding-top: 24px;
  }

  .img_mainv {
    width: 100%;
    height: 80vw;
    object-fit: cover;
  }

  .title {
    font-size: 40px;
    line-height: 1.1;
  }

  .tag_container {
    margin-top: 5px;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
  }

  .mainv_content {
    gap: 20px;
    padding-left: 24px;
  }

  .tag {
    width: 100%;
  }

  .mainv_right {
    padding: 28px 10px 28px 45px;
  }

  .mainv_left {
    padding-right: 24px;
  }

  .right_title {
    font-size: 69px;
  }


  .tag_child {
    font-size: 11px;
  }

  .right_title {
    font-size: 42px;
  }

  .right_subTitle,
  .right_dateJoin {
    font-size: 14px;
  }


  .tag_child--job {
    font-size: 13px;
  }
}

/* Outstanding section */
.outstanding {
  padding-top: 40px;
  background-color: #fff;
}

/* Top */
.outstanding_top {
  position: relative;
  z-index: 0;
}

.outstanding_top::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 33%;
  background-color: #eff5fa;
  border-top-left-radius: 82px;
  border-top-right-radius: 82px;
  display: block;
  padding: 51px 0 57px;
  z-index: -1;
}

.outstanding_inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 19px;
}

.outstanding_wrapper_img {
  display: block;
  aspect-ratio: 318/323;
  width: 318px;
  flex-shrink: 0;
}

.outstanding_img_top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outstanding_quote {
  margin-top: 95px;
  font-size: 34px;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #e5013f;
}

@media screen and (max-width: 1024px) {
  .outstanding_inner {
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .outstanding_quote {
    margin-top: 0;
    padding-bottom: 40px;
    padding-left: 0;
    text-align: center;
    font-size: 24px;
  }
}


@media(max-width: 960px) {
  .outstanding_top::before {
    height: 100%;
    padding: 0;
  }

  .outstanding_content {
    font-size: 28px;
  }

  .outstanding_quote {
    margin: 0 auto;
  }
}

@media(max-width: 767px) {
  .interview_layout {
    padding: 0 20px;
  }

  .interview_layout--no-pd {
    padding: 0;
  }

  .outstanding {
    padding-top: 36px;
  }

  .outstanding_top::before {
    padding: 0;
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }

  .outstanding_inner {
    padding-top: 26px;
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 0;
  }

  .outstanding_wrapper_img {
    aspect-ratio: 206 / 209;
    width: 206px;
    align-self: center;
  }

  .outstanding_quote {
    margin-top: 0;
    padding-bottom: 10px;
    text-align: left;
    font-size: 18px;
  }
}

/* Bottom */
.outstanding_bottom {
  margin-top: 86px;
}

.outstanding_list {
  position: relative;
  display: flex;
  gap: 80px;
  flex-direction: column;
}

.outstanding_item {
  display: flex;
  gap: 78px;
}

.outstanding_item:nth-child(2n) {
  flex-direction: row-reverse;
}

.outstanding_content {
  width: 44.4%;
  flex-shrink: 0;
}

.outstanding_title {
  color: #e5013f;
  letter-spacing: 0.02em;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.71;
}

.outstanding_desc {
  margin-top: 36px;
  letter-spacing: 0.01em;
  color: #000;
  line-height: 2;
  text-align: justify;
}

.outstanding_wrapper {
  width: calc(100% - 44.4% - 78px);
  z-index: 3;
  position: relative;
}

.outstanding_wrapper::before {
  position: absolute;
  content: "";
  z-index: 2;
  width: 13px;
  background-color: #e5013f;
  height: 51vh;
  transform: rotate(35deg);
  top: -175px;
  right: 0;
}

.outstanding_item:nth-child(2n)>.outstanding_wrapper::before {
  position: absolute;
  content: "";
  z-index: 2;
  width: 13px;
  background-color: #033c72;
  height: 42.83vh;
  transform: rotate(35deg);
  top: auto;
  right: auto;
  bottom: -185px;
  left: -44px;
}

.outstanding_img {
  position: relative;
  z-index: 3;
  border-radius: 28px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 545/637;
}

@media (max-width: 1024px) {
  .outstanding_item {
    flex-direction: column-reverse;
    width: 100%;
  }

  .outstanding_item:nth-child(2n) {
    flex-direction: column-reverse;
  }

  .outstanding_content,
  .outstanding_wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .outstanding_bottom {
    margin-top: 66px;
  }

  .outstanding_list {
    gap: 66px;
  }

  .outstanding_item {
    gap: 46px;
  }




  .outstanding_img {
    aspect-ratio: 336/360;
    border-radius: 16px;
  }

  .outstanding_title {
    font-size: 18px;
    line-height: 1.55;
  }

  .outstanding_desc {
    margin-top: 24px;
    font-size: 16px;
  }
}

/* Career */
.career {
  padding-top: 176px;
  background-color: #fff;
  overflow: hidden;
  padding-bottom: 40px;
}

.career_inner {
  padding: 42px 0 0 65px;
  width: 867px;
  margin-left: auto;
  position: relative;
}

.career_inner::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-top-left-radius: 28px;
  border-bottom-left-radius: 28px;
  z-index: -1;
}

.career_wrapper_img {
  width: 100%;
  aspect-ratio: 1366/534;
  position: relative;
  z-index: 2;
}

.career_wrapper_img::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 13px;
  background-color: #e5013f;
  height: 42.83vh;
  transform: rotate(35deg);
  top: auto;
  right: auto;
  bottom: -248px;
  left: 63px;
}

.career_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 82px;
  border-top-right-radius: 82px;
}

.career_content {
  position: relative;
  margin-top: -200px;
  z-index: 3;
  /* padding: 42px 11vw 0 65px; */
  padding: 10px 123px 0 65px;
}

.career_desc {
  margin-top: 18px;
  font-size: 26px;
  font-weight: 500;
  color: #033c72;
  line-height: 1.77;
}

.timeline {
  position: relative;
  margin-top: 22px;
  margin-left: 20px;
  padding-left: 41px;
  padding-bottom: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 0px;
  width: 3px;
  height: calc(100% - 43px);
  background-color: #e0e0e0;
}

.timeline_item {
  position: relative;
  margin-bottom: 42px;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.timeline_item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline_item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 1px;
  width: 17px;
  height: 17px;
  background-color: #e5013f;
  border-radius: 50%;
}

.timeline_title {
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: 30px;
  min-width: 106px;
  background-color: #002f5f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 10px;
  border-radius: 20px;
  line-height: 1.75;
  font-size: 16px;
}

.timeline_desc {
  margin-top: 12px;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 2;
}

@media(max-width: 1024px) {
  .career_content {
    position: relative;
    padding: 42px 11vw 0 50px;
  }

  .career_inner {
    padding: 40px 0 0 40px;
    width: 100%;
  }

  .career_desc {
    font-size: 23px;
    line-height: 1.6;
  }

  .timeline {
    margin-top: 20px;
  }

  .timeline_desc {
    margin-top: 16px;
  }
}

@media(max-width: 767px) {
  .career {
    padding-top: 82px;
    padding-bottom: 0;
  }

  .career_wrapper_img {
    width: 100%;
    aspect-ratio: 375/267;
  }

  .career_wrapper_img::before {
    transform: rotate(28deg);
    top: -188px;
    right: 0;
    bottom: auto;
    left: auto;
  }

  .career_img {
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }

  .career_content {
    margin-left: 0;
    margin-top: -50px;
    margin-bottom: 43px;
    padding: 27px 24px 0 24px;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  }

  .career_inner {
    padding: 0;
    width: 100%;
  }

  .career_inner::before {
    box-shadow: none;
  }

  .career_desc {
    font-size: inherit;
    line-height: 1.56;
  }

  .timeline {
    margin-top: 24px;
    margin-left: 7px;
    padding-left: 30px;
    padding-bottom: 24px;
  }

  .timeline_item {
    position: relative;
    margin-bottom: 42px;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .timeline_item.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .timeline_item::before {
    left: -37px;
  }

  .timeline_desc {
    margin-top: 11px;
  }

}

/* Flow section */
.flow {
  margin-top: 84px;
  overflow: hidden;
  position: relative;
}

.flow::before {
  position: absolute;
  content: "";
  height: 100%;
  background-color: #eff5fa;
  width: 50%;
  left: 0;
  top: 0;
}

.flow_container {
  position: relative;
  z-index: 1;
  padding: 52px 0 120px;
}

.flow_container::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #eff5fa;
  z-index: -1;
  top: 0;
  left: 0;
  border-top-right-radius: 82px;
  border-bottom-right-radius: 82px;
}

.flow_header {
  display: flex;
  align-items: center;
  column-gap: 33px;
}

.flow_avatar img {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  border: 2px solid #e5013f;
  object-fit: cover;
}

.flow_title {
  margin-top: 15px;
  color: #002f5f;
  font-size: 28px;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.flow_timeline {
  overflow-x: auto;
  padding-bottom: 12px;
  margin-left: 164px;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #033c72 #ddd;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar */
/* Chrome, Safari, Edge */
.flow_timeline::-webkit-scrollbar {
  height: 4px;
}

.flow_timeline::-webkit-scrollbar-track {
  background: #ddd;
  border: none;
}

.flow_timeline::-webkit-scrollbar-thumb {
  background-color: #033c72;
  border: none;
}

.flow_timeline::-webkit-scrollbar-thumb:hover {
  opacity: 0.7;
}

.flow_card_list {
  display: flex;
  gap: 31px;
  min-width: max-content;
  padding: 10px 20px 0 25px;
}

.flow_card_item {
  width: 189px;
  min-height: 231px;
  background-color: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  padding: 33px 18px 33px 20px;
}

.flow_time {
  color: #e5013f;
  letter-spacing: 0.02em;
  font-size: 24px;
}

.flow_content {
  margin-top: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}

@media screen and (max-width: 767px) {
  .flow {
    margin-top: 0;
  }

  .flow_container {
    padding: 41px 0 67px;
  }

  .flow_timeline {
    margin-top: 26px;
    margin-left: 0;
  }

  .flow_card_list {
    padding-bottom: 34px;
  }

  .flow_card_item {
    min-height: 200px;
  }

  .flow_header {
    gap: 19px;
  }

  .flow_title {
    font-size: 18px;
  }
}


/* Intro */
.interview_intro {
  margin-top: 100px;
}

.interview_intro_inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 92px;
  flex-wrap: wrap;
  padding: 75px 99px 85px 96px;
  background: #faf0ec;
  overflow: hidden;
  border-radius: 20px;
}

.interview_intro_content {
  flex: 1;
  min-width: 280px;
}

.interview_intro_title {
  color: #e5013f;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.02em;
}

.interview_intro_text {
  margin-top: 26px;
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-align: justify;
}

.interview_intro_profile {
  text-align: center;
}

.interview_intro_img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
}

.interview_intro_position {
  margin-top: 16px;
  color: #033c72;
}

.interview_intro_name {
  font-weight: 500;
  display: inline-block;
}

.interview_intro_bgtext {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 88px;
  font-size: 88px;
  font-weight: 300;
  color: #fff;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
  transform: translateX(5px);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  .interview_intro_inner {
    padding: 60px 60px 85px 75px;
  }

  .interview_intro_bgtext {
    font-size: 66px;
    left: 75px;
  }
}

@media screen and (max-width: 768px) {
  .interview_intro {
    margin-top: 70px;
  }

  .interview_intro_inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 29px 20px 47px;
    gap: 12px;
  }

  .interview_intro_profile {
    align-self: center;
    margin-top: 20px;
  }

  .interview_intro_bgtext {
    font-size: 32px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Pickup */
.pickup {
  margin-top: 120px;
  background-color: #11214b;
  background: linear-gradient(135deg,
      rgba(23, 81, 173, 1) 0%,
      rgba(3, 17, 150, 1) 100%);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  padding: 70px 0;
  color: #fff;
  overflow: hidden;
}

.pickup_inner {
  display: flex;
  gap: 67px;

}

.pickup_wrapper_img {
  aspect-ratio: 474/325;
  width: 42.3%;
  max-width: 474px;
  flex-shrink: 0;
}

.pickup_img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  object-fit: cover;
}

.pickup_content {
  margin-top: 78px;
}

.pickup_label {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 23px;
}

.pickup_title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.77;
}

.pickup_desc {
  margin-top: 25px;
  line-height: 2;
  letter-spacing: 0.01em;
  text-align: justify;
}

@media (max-width: 1024px) {
  .pickup_inner {
    padding: 0 40px;
  }

  .pickup_content {
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .interview_pickup_inner {
    flex-direction: column;
  }

  .pickup {
    margin-top: 65px;
    padding: 0;
    border-top-left-radius: 56px;
    border-top-right-radius: 56px;
  }

  .pickup_inner {
    flex-direction: column;
    padding: 59px 0 37px;
    row-gap: 25px;
  }

  .pickup_wrapper_img {
    width: 100%;
    max-width: 100%;
  }

  .pickup_content {
    margin-top: 0;
  }

  .pickup_label {
    font-size: 18px;
  }

  .pickup_title {
    margin-top: 10px;
    font-size: 18px;
  }

  .pickup_desc {
    font-size: 14px;
    font-weight: 400;
  }
}

/* Other interview */
.otherinterview {
  padding-top: 128px;
  background: #fff;
}

.otherinterview_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.otherinterview_label {
  font-size: 13px;
  color: #e5013f;
  font-weight: bold;
}

.otherinterview_title {
  font-size: 20px;
  color: #002f5f;
  margin: 4px 0;
}

.otherinterview_bottom {
  position: relative;
}

.otherinterview_bottom_inner {
  position: relative;
  margin-left: calc((100% - 1120px) / 2);
}

@media screen and (max-width: 1200px) {
  .otherinterview_bottom_inner {
    margin-left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .otherinterview {
    padding-top: 44px;
    padding-bottom: 56px;
  }

  .otherinterview_bottom_inner {
    margin-left: 20px;
  }
}

.otherinterview_wrapper_cta--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .otherinterview_wrapper_cta {
    display: none;
  }

  .otherinterview_wrapper_cta--sp {
    display: block;
  }
}

.otherinterview_cta {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  padding-left: 31px;
  text-decoration: none;

  display: inline-flex;
  justify-content: flex-start;
  align-items: center;

  background: #fff;
  color: #033c72;
  border: 2px solid #033c72;
  width: 230px;
  height: 57px;
  border-radius: 40px;
  margin: 0 auto;
}

.otherinterview_cta::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 4px);
  right: 25px;
  width: 20px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-image: url(../images/arrow_blu.svg);
  transition: all .3s ease-in-out;
}

.otherinterview_cta:hover {
  color: #fff;
  background-color: #033c72;
}

.otherinterview_cta:hover::after {
  background-image: url(../images/arrow_wht.svg);
}


.otherinterview_slider {
  display: flex;
  gap: 16px;
}

.otherinterview_item {
  border-radius: 12px;
  flex-shrink: 0;
  width: 350px;
  margin-right: 20px;
}

.otherinterview_thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.otherinterview_img {
  display: block;
  position: relative;
  height: 501px;
  width: 350px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
}

.otherinterview_overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to bottom,
      rgba(17, 33, 75, 0) 0%,
      rgba(17, 33, 75, 1) 100%);
  color: #fff;
}

.otherinterview_desc {
  font-size: 22px;
  line-height: 1.6;
}

.otherinterview_meta {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.01em;
}

.otherinterview_name {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .otherinterview_title {
    font-size: 18px;
  }

  .otherinterview_wrapper_cta {
    margin-top: 43px;
  }

  .otherinterview_cta {
    width: 195px;
    height: 44px;
    font-size: 14px;
    padding-left: 25px;
  }

  .otherinterview_cta::after {
    right: 12px;
  }

  .otherinterview_slider {
    gap: 12px;
  }

  .otherinterview_img {
    height: 299px;
    width: 209px;
  }

  .otherinterview_item {
    width: 209px;
    margin-right: 12px;
  }

  .otherinterview_desc {
    font-size: 14px;
    line-height: 1.36;
  }

  .otherinterview_meta {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.45;
  }

  .otherinterview_name {
    font-size: 18px;
  }
}


.interview_message {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 30px 20px;
}

@media (max-width: 768px) {
  .interview_message {
    font-size: inherit;
  }
}

/* Slider */
.swiper {
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background-color: rgba(3, 60, 114, 0.38);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: background-color 0.3s;
  background-image: url(../images/arrow_left.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transition: all .3s ease-in-out;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.7;
}

.swiper-button-prev {
  left: -24px !important;
}

.swiper-button-next {
  left: calc(1120px - 48px) !important;
  transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  .swiper-button-prev {
    left: -24px !important;
  }

  .swiper-button-next {
    left: auto !important;
    right: 24px !important;
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 768px) {
  .swiper-button-prev {
    left: -12px !important;
  }

  .swiper-button-next {
    left: auto !important;
    right: 12px !important;
    transform: rotate(180deg);
  }
}