@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
@import url('http://fonts.googleapis.com/earlyaccess/notosanskr.css');
/* @charset "utf-8"; */
* {
  transition: all 0.3s;
}

/*************************/
/* 06. WORLD
/************************/
#world {
  overflow: hidden;
}

.box_world {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  width: 100%;
  max-width: 797px;
  height: 100%;
  max-height: 536px;
  background: url('../images/cont_baro.png') no-repeat 0 center / 100% 100%;
  outline: 3px solid rgba(56, 42, 35, 0.3);
  outline-offset: -10px;
}

.box_world::before {
  content: '';
  position: absolute;
  bottom: -3%;
  right: -19%;
  width: 247px;
  height: 446px;
  background: url('../images/item_feather.png') no-repeat 0 center / contain;
  overflow: hidden;
}

.inner_world {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 80%;
  height: 100%;
  text-align: center;
  padding: 15px 0;
}

.inner_desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.desc_baro {
  height: 100%;
  text-align: center;
  padding: 2px 0;
}

.benefits_baro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100%;
  max-height: 128px;
  background-color: rgb(104, 57, 8, 0.62);
  background-blend-mode: color-dodge;
}

.eq_baro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 475px;
}

.baro_bene {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 92px;
  height: 100%;
  max-height: 35px;
  background-color: rgb(55, 38, 17, 0.7);
  text-align: center;
  border-radius: 20px;
}

.detail_baro {
  position: relative;
  width: 100%;
  padding: 0 20px 5px 10px;
}

.detail_baro::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* 하단에 보더 표시 */
  width: 100%;
  height: 1px; /* 보더 두께 */
  background: linear-gradient(
    90deg,
    rgba(55, 38, 17, 1) 0%,
    rgba(55, 38, 17, 0.8) 70%,
    rgba(55, 38, 17, 0) 100%
  ); /* 그라디언트 적용 */
}

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

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

  .mobile {
    display: block;
  }
}

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

@media screen and (max-width: 520px) {
  #world {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 1000px;
    margin-top: 46px;
  }

  .cont_2 {
    max-height: 500px;
  }

  .box_world {
    max-height: max-content;
  }

  .box_world::before {
    content: none;
    display: none;
  }
}

@media screen and (max-width: 393px) {
  #world {
    height: 750px;
  }
}

/* 모바일 가로 모드 */
@media screen and (max-width: 950px) and (orientation: landscape) {
  #world {
    height: 800px;
  }

  .box_world::before {
    content: none;
    display: none;
  }

  /* .inner_world p{
        font-size: 0.5rem;
    } */
}
/* //모바일 가로 모드 */
