@media (max-width: 1250px) {

  #bd_logo {
    text-align: center;
  }
}

@media (min-width: 1250px) {
  #index_intro_text_term_div {
    display: none !important;
  }
}

@media (max-width: 900px) {
  #game_info_1 {
    width: 100% !important;
  }
  #game_info_3 {
    float: left !important;
  }
}

@media (max-width: 830px) {
  #careersBox {
    display: none !important;
  }
}

.shadow {
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

#bg_main_1 {
  /* 애니메이션 이름 */
  animation-name: bg1_ani;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 1, 0.1, 1);
}

/* 키프레임 이름 = 애니메이션 이름 */
@-webkit-keyframes bg1_ani {
  0% {
    opacity: 0.0;
    background-position: 60%;
  }
  100% {
    opacity: 1.0;
    background-position: 50%;
  }
}

#bg_main_2 {
  /* 애니메이션 이름 */
  animation-name: bg2_ani;
  animation-duration: 3s;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0, 1, 0.1, 1);
}

/* 키프레임 이름 = 애니메이션 이름 */
@-webkit-keyframes bg2_ani {
  0% {
    background-position: 40%;
  }
  100% {
    background-position: 50%;
  }
}