html {
  /* scroll-behavior: smooth; */
}

* {
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  user-select: auto;
  font-size: 14px;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Spoqa Han Sans Neo", "sans-serif";
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/* Hero */

.HeroContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.HeroVideo {
  position: absolute;
  top: 50%; /* 세로 중앙에 맞추기 */
  left: 50%; /* 가로 중앙에 맞추기 */
  width: 100%;
  height: 100vh; /* 높이를 컨테이너에 맞춤 */
  transform: translate(-50%, -50%); /* 비디오를 중앙으로 이동 */
  object-fit: cover;
  object-position: center bottom;
}

.HeroText,
.HeroText_en,
.HeroText_es {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -115%);
  color: #fff;
}

@media screen and (max-height: 768px) {
  .HeroText {
    transform: translate(-50%, -120%);
  }
}

.HeroTitle {
  color: #fff;
  text-align: center;
  font-family: "Spoqa Han Sans Neo";
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 auto;
  width: max-content;
}

.HeroBtnContainer {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.BtnStyle {
  display: flex;
  padding: 12px 24px;
  height: 40px;
  justify-content: center;
  border: none;
  align-items: center;
  border-radius: 52px;
  background: var(--White, #fff);
  font-size: 16px;
  font-family: "Spoqa Han Sans Neo";
  cursor: pointer;
}

.partnerBtn.active {
  background-color: #4caf50;
  color: white;
}

.HeroContact,
.HeroContact_en {
  background: var(--MetaForest-Color, #395893);
  color: #fff;
  font-family: "Spoqa Han Sans Neo";
  font-weight: 500;
  padding: 10px 24px;
}

@media screen and (max-width: 768px) {
  .HeroContainer {
    height: 80vh;
  }

  .HeroVideo {
    top: 50%;
    height: 80vh;
  }

  .HeroText {
    top: 46%;
    width: 90%;
    padding: 0 20px;
  }

  .HeroText h1 {
    width: 100%;
    font-size: 2.3rem;
  }

  .HeroText_en {
    width: 100%;
  }
  .HeroText_en h1 {
    width: 100%;
    font-size: 1.8rem;
  }
  .HeroText_es h1 {
    width: 100%;
    font-size: 1.4rem;
  }

  .HeroText .HeroSubTitle {
    width: 100%;
    font-size: 1rem;
  }

  .BtnStyle {
    font-size: 16px;
    height: 40px;
  }
}

@media screen and (max-width: 500px) {
  .HeroText h1,
  .HeroText_en h1 {
    width: 100%;
    font-size: 1.5rem;
  }

  .HeroText_es h1 {
    width: 100%;
    font-size: 1.2rem;
  }

  .HeroText {
    top: 52%;
    width: 90%;
    padding: 0 20px;
  }

  .HeroContact {
    font-size: 12px;
  }

  .HeroContact_en {
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .HeroText h1,
  .HeroText_en h1 {
    width: 100%;
    font-size: 1.44rem;
  }

  .HeroText_es h1 {
    width: 100%;
    font-size: 1.3rem;
  }

  .HeroText {
    top: 55%;
    width: 90%;
    padding: 0 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 714px) {
  .HeroText h1 {
    font-size: 2.6rem;
  }
  .HeroText_en h1 {
    font-size: 2.2rem;
  }

  .HeroText_es h1 {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .HeroText h1,
  .HeroText_en h1 {
    font-size: 48px;
  }

  .HeroText_es h1 {
    font-size: 38px;
  }

  .HeroText {
    transform: translate(-50%, -150%);
  }
}

@media screen and (min-width: 1920px) {
  .HeroText h1 {
    font-size: 52px;
  }
  .HeroText {
    transform: translate(-50%, -145%);
  }
}

.pageCountainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pageCountainer .inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

.TitleText {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-top: 96px;
}

.pageTitle {
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  margin: 0 auto;
}

.counselorTitle {
  margin-top: 60px;
}

.faqTitle {
  margin-top: 130px;
}

.pageSubTitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: var(--Gray-80, #525158);
}

@media screen and (max-width: 768px) {
  .TitleText {
    padding: 0 20px;
    margin: 40px 0 48px 0;
  }

  .faqTitle {
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .pageTitle {
    font-size: 1.5rem;
  }
  .pageSubTitle {
    font-size: 1.1rem;
    line-height: 24px;
    width: 92%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
  .pageTitle {
    font-size: 1.9rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .pageTitle {
    font-size: 2.5rem;
  }
  .pageSubTitle {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 390px) {
  .pageSubTitle {
    width: 97%;
  }
}

@media screen and (min-width: 1920px) {
  .pageTitle {
    font-size: 48px;
  }
  .pageSubTitle {
    font-size: 20px;
  }
}

/* client Page */

.clientContainer {
  width: 100%;
  height: auto;
  background-color: #fafafa;
}

.clientContent {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 122px;
}

.content {
  display: flex;
  flex-direction: row;
  height: 332px;
  margin-top: 80px;
  max-width: 1140px;
  gap: 80px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(16, 16, 16, 5%);
  border-radius: 12px;
}

.content1_Text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.content1_Text div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video_Text {
  width: 555px;
  padding-left: 80px;
}

.number {
  width: 56px;
  height: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 8px;
  border-radius: 70px;
  background: var(--Green1, #22c17e);
}

.imgBox img,
.imgBox video {
  width: 500px;
  height: 332px;
  object-fit: cover;
  position: relative;
  top: 2px;
  border-radius: 12px 0 0 12px;
}

.imgBox video {
  border-radius: 0 12px 12px 0;
}

.clientIcon {
  width: 40px;
  height: 46px;
  margin: 0 auto;
}

.titleStyle {
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  color: #424242;
}

.titleStyle_en {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  color: #424242;
}

.titleStyle_es {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  color: #424242;
  width: 103%;
}

.subTitleStyle {
  width: 556px;
  color: var(--Gray-80, #525158);
  font-family: "Spoqa Han Sans Neo";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin: -8px auto;
}

.subTitleStyle_en,
.subTitleStyle_es {
  width: 556px;
  color: var(--Gray-80, #525158);
  font-family: "Spoqa Han Sans Neo";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: -8px auto;
}

.clientVideo {
  width: 584px;
  height: 290px;
  object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 1200px) {
  .mobileContent {
    flex-direction: column-reverse !important;
  }

  .content {
    height: auto;
    background-color: transparent;
    align-items: flex-start;
    box-shadow: none;
    gap: 40px;
    flex-direction: column;
    padding: 0 20px;
  }
  .content1_Text {
    align-items: flex-start;
  }

  .imgBox {
    width: 100%;
  }

  .imgBox img,
  .imgBox video {
    width: 100%;
    border-radius: 12px;
  }

  .video_Text {
    width: auto;
    padding: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .clientContent {
    gap: 10px;
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 768px) {
  .clientContainer {
    background-color: #fff;
  }

  .titleStyle,
  .titleStyle_en,
  .titleStyle_es {
    font-size: 1.4286rem;
  }

  .subTitleStyle,
  .subTitleStyle_en,
  .subTitleStyle_es {
    font-size: 1.1429rem;
    line-height: 24px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .subTitleStyle br,
  .subTitleStyle_en br,
  .subTitleStyle_es br {
    display: none;
  }

  .content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 0;
    gap: 14px;
  }

  .content1_Text {
    gap: 14px;
    margin-bottom: 0;
  }

  .content1_Text div {
    flex-direction: row;
    align-items: center;
    padding: 0 3px;
    gap: 12px;
  }

  .mobileContent {
    flex-direction: column-reverse;
  }

  .clientContent {
    gap: 84px;
    margin-bottom: 40px;
    margin-top: 0;
  }

  .clientVideo {
    width: 70%;
    height: auto;
  }

  .subTitleStyle,
  .subTitleStyle_en,
  .subTitleStyle_es {
    width: 100%;
  }

  .content > img {
    width: 65% !important;
    height: auto;
  }

  .imgBox img,
  .imgBox video {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .imgBox {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 500px) {
  .titleStyle {
    font-size: 1.3286rem;
  }
}

@media screen and (min-width: 650px) and (max-width: 715px) {
  .content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .clientContent {
    padding: 0 50px;
  }
}

/* counselor page */
.counselorContainer {
  width: 100%;
  height: auto;
  background-color: #fafafa;
}

.cardContent {
  display: flex;
  flex-direction: row;
  max-width: 1380px;
  gap: 60px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 420px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
  margin: 80px 0 109px 0;
}

.card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.card-content {
  display: flex;
  padding: 32px 29px 32px 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.card-title {
  color: #424242;
  font-family: "Spoqa Han Sans Neo";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 156.25% */
  margin: 0;
  text-align: left;
}
.card-description {
  color: var(--Gray50, #424242);
  font-family: "Spoqa Han Sans Neo";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  line-height: 28px;
  margin: 0;
}

@media screen and (max-width: 1400px) {
  .cardContent {
    gap: 30px;
    padding: 0 20px;
  }
  .card {
    width: 80%;
  }
}

@media screen and (max-width: 1200px) {
  .cardContent {
    flex-direction: column;
    padding: 0 20px;
  }
  .card {
    width: 584px;
  }
}
@media screen and (max-width: 768px) {
  .counselorContainer {
    background-color: #fff;
    margin-bottom: 40px;
  }

  .card {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .cardContent {
    gap: 60px;
  }

  .card-title {
    font-size: 1.4286rem;
    text-align: center;
  }
  .card-description {
    font-size: 1.1429rem;
    line-height: 24px;
    text-align: center;
  }

  /* .card-description br {
    display: none;
  } */

  .card-content {
    align-items: center;
    padding: 24px 16px;
    gap: 16px;
  }
}

@media screen and (max-width: 1919px) {
  .counselorContainer {
    height: auto;
  }
}

/* partner page */

.partnerContainer {
  width: 100%;
  height: auto;
  background: var(--Gray90, #fff);
}

.partnerContent {
  display: flex;
  flex-direction: column;
  margin-bottom: 140px;
}

.partnerBtnContainer {
  display: flex;
  justify-content: center;
  margin: 32px;
  gap: 40px;
}

.partnerText {
  gap: 16px;
}

.partnerBtn {
  display: flex;
  width: 200px;
  height: 60px;
  font-size: 20px;
  padding: 16px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 200px;
  background: #9e9e9e;
  color: #fff;
  cursor: pointer;
}

.ipadImg {
  position: relative;
  width: 100%;
}

.BackgroundImage {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
}

.OverlayImage {
  width: 94%;
  height: 91%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  object-fit: cover;
  z-index: 99;
  border-radius: 13px;
  box-sizing: border-box;
}

.OverlayVideo {
  width: 94%;
  height: 91%;
  object-fit: cover;
  border-radius: 13px;
}

@media screen and (max-width: 768px) {
  .partnerContainer {
    height: auto;
  }

  .partnerBtnContainer {
    align-items: center;
    margin: 24px;
  }
  .partnerBtn {
    width: 7.8571rem;
    height: 28px;
    font-size: 0.8571rem;
    padding: 8px 0;
    letter-spacing: 1px;
  }

  .partnerText {
    margin: 40px 0 0 0;
  }

  .BackgroundImage {
    width: 100%;
    height: auto;
  }

  .OverlayImage {
    border-radius: 8px;
  }

  .ipadImg {
    width: 95%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .partnerContainer {
    height: auto;
  }

  .partnerContent {
    padding: 0 20px;
  }
}

@media screen and (max-width: 450px) {
  .partnerBtnContainer {
    width: 82vw;
    gap: 8px;
    margin: 24px auto;
  }
  .partnerContent {
    margin-bottom: 40px;
  }
  .partnerBtn {
    font-size: 0.78rem;
  }
}

@media screen and (max-width: 390px) {
  .partnerBtn {
    font-size: 0.72rem;
  }
}

.partnerSubText {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}
.mapContainer {
  height: auto;
}

@media screen and (max-width: 768px) {
  .partnerSubText {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
  }
}

@media screen and (max-width: 1000px) {
  .mapContainer {
    background-color: #fafafa;
  }
}

.mapTitle {
  margin-bottom: 54px;
}

* {
  margin: 0;
  padding: 0;
}

.slide_wraper {
  position: relative;
  width: 100%; /* Updated to accommodate larger central slide */
  margin: 0 auto;
  height: 500px; /* Updated to accommodate larger central slide */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.slides {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
}

.slideMap {
  text-align: center;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .slides {
      will-change: transform;
      transform: translateZ(0);
    }
  }
}

/* .slides.animated {
  transition: 0.5s ease-out;
} */

.slides li {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slides li img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.slides li p {
  width: 100px;
  color: #424242;
  margin-top: 20px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.mainImg img {
  width: 800px !important;
  height: 450px !important;
  margin: 0 100px !important;
  margin-right: 0;
}

.slides li:not(:last-child) {
  margin-right: 30px;
}

.controls {
  text-align: center;
  display: flex;
  width: 975px;
  justify-content: space-between;
  position: absolute;
}

.prev svg,
.next svg {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 15.5px 16px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 9999px;
  background: #bdbdbd;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  /* 테블릿 크기 */
  .slide_wraper {
    height: 450px;
  }

  .slides li img {
    width: 150px;
    height: 150px;
  }

  .slides li.mainImg img {
    width: 510px !important;
    height: 340px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .controls {
    width: 75%;
    height: 45%;
    top: 155px;
  }

  .slides li.mainImg img {
    width: 510px !important;
    height: 340px !important;
  }
}

@media screen and (min-width: 510px) and (max-width: 767px) {
  .slides li.mainImg img {
    width: 760px !important;
    height: 400px !important;
    border-radius: 0;
  }
  .controls {
    width: 95%;
    height: 18%;
  }

  .prev svg,
  .next svg {
    width: 90%;
    height: 100%;
    background: none;
    box-shadow: none;
  }
}

@media screen and (max-width: 480px) {
  /* 모바일 크기 */
  .slide_wraper {
    height: 310px;
    margin-bottom: 40px;
  }

  .slides li {
    margin: 0 5px;
  }

  .slides li img {
    width: 100px;
    height: 100px;
  }

  .slides li.mainImg img {
    width: 450px !important;
    height: 260px !important;
    border-radius: 0;
  }

  .controls {
    width: 95%;
    height: 45%;
    top: 105px;
  }

  .prev svg,
  .next svg {
    width: 24px;
    height: 40%;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}

/* faq page */
.faqContainer {
  width: 100%;
  height: auto;
  background: var(--Gray-Button, #f8f8f8);
}

.faq_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 80px;
  padding-top: 65px;
}

.faq-item {
  margin-bottom: 12px;
}

.faq-question {
  display: flex;
  width: 900px;
  height: 82px;
  padding: 32px;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  justify-content: space-between;
  background: #fff;
  /* effect style */
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.04);
  align-items: center;
  transition: background-color 0.2s, border-radius 0.2s;
}

.faq-answer {
  max-height: 0;
  width: 900px;
  overflow: hidden;
  background-color: #fff;
}

.questionMark {
  font-weight: bold;
  display: flex;
  padding: 9px 11px 9px 12px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #f3fcf9;
  color: #00a162;
  font-family: "Spoqa Han Sans Neo";
  font-size: 24px;
  font-style: normal;
  line-height: 28px; /* 140% */
}

.questionText {
  font-size: 20px;
  color: #5e6066;
  font-weight: 600;
}

.questionBox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question .arrow {
  font-size: 16px;
}

.faq-item.open .faq-answer {
  max-height: 1040px; /* or appropriate height */
  font-size: 18px;
  color: #7d7d82;
  padding: 0px 80px 30px 86px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  line-height: 28px;
}

.faq-item.open .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media screen and (max-width: 768px) {
  .questionBox {
    font-size: 13px;
  }

  .faq-container {
    padding: 20px;
  }

  .faq-question {
    width: 100%;
    padding: 24px 8px;
    height: 62px;
  }

  .faq-answer {
    width: 100%;
  }

  .faq-question .arrow {
    display: none;
  }

  .faq-question .questionMark {
    font-size: 14px;
    padding: 3px 10px 3px 11px;
  }

  .faq-item.open .faq-answer {
    font-size: 0.8571rem;
    padding: 0px 30px 20px 50px;
    line-height: 1.2857rem;
  }

  .faqArrow {
    position: relative;
    right: 6px;
  }

  .questionText {
    font-size: 16px;
  }
}

@media screen and (max-width: 500px) {
  .questionText {
    font-size: 0.94rem;
    font-weight: 500;
    letter-spacing: -0.2px;
  }

  .faq_content {
    padding-top: 0;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 1200px) {
  .faq-container {
    padding: 0 20px;
  }

  .faq-question {
    width: 100%;
  }

  .faq-answer {
    width: 100%;
  }

  .faq_content {
    padding-bottom: 20px;
  }
}

/* contact us */

.contact_container {
  width: 100%;
  height: 282px;
  justify-content: center;
  align-items: center;
  padding: 64px 0;

  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.7) 49.77%,
      rgba(0, 0, 0, 0.1) 100%
    ),
    url("../img/place/WebImage_9.png") lightgray 1.197px -727.49px / 100% 382.979% no-repeat;

  background-position: 50% 97%;
  background-size: 100%;
}

.placeSize {
  width: 100%;
  height: 282px;
  object-fit: cover;
}

.contact_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contactText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.contactTitle {
  color: #fff;
  text-align: center;
  font-family: "Spoqa Han Sans Neo";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 auto;
}

.contactBtnStlye {
  background-color: #49b26a;
  color: #fff;
  display: inline-flex;
  height: 48px;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .contactTitle {
    width: 280px;
    font-size: 20px;
    line-height: 24px;
  }

  .contactBtnStlye {
    padding: 16px 18px;
  }
}
@media screen and (max-width: 500px) {
  .contact_content {
    gap: 30px;
  }
  .contactBtnStlye {
    height: 32px;
    font-size: 12px;
    width: 5.7143rem;
    padding: 10px 0;
  }

  .contact_container {
    background-size: 350%;
  }
}

/* download page */

.downloadContainer {
  width: 100%;
  height: 700px;
  background: var(--Gray-Button, #fafafa);
}

.download_Content {
  display: flex;
  flex-direction: row;
  gap: 230px;
  margin-top: 160px;
  margin-bottom: 130px;
  align-items: center;
  max-width: 1200px;
}

.downloadBtnContainer {
  display: flex;
  margin: 10px 0;
  gap: 12px;
}

.downloadBtnContainer img {
  width: 100%;
  height: 100%;
  border: none;
}

.left_Content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.appIcon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .appIcon {
    width: 40px;
    height: 40px;
    background: none;
    padding: 0;
    border-radius: none;
  }

  .left_Content {
    gap: 20px;
  }
}

.downloadText {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  width: 100%;
}

.downloadTitle {
  color: #1b1b1b;
  font-size: 32px;
  width: 361px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

/* .right_content img {
  width: 648px;
  height: 408px;
  position: relative;
  top: 36px;
} */
.right_content object {
  width: 648px;
  height: 408px;
  position: relative;
  top: 36px;
}

.downloadBtn {
  width: 160px;
  height: 50px;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: #fafafa;
}

@media screen and (max-width: 768px) {
  .downloadTitle {
    font-size: 28px;
  }

  .downloadSubTitle {
    font-size: 12px;
  }

  .left_Content {
    align-items: center;
    text-align: center;
  }

  .right_content {
    margin: 80px;
  }

  .downloadContainer {
    height: auto;
  }

  .footerPolicy {
    margin: 0;
  }

  .downloadText {
    margin-top: 20px;
  }

  .download_Content {
    flex-direction: column;
    margin: 70px 0;
    gap: 50px;
  }
  /* .right_content img {
    width: 76%;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: inherit;
  } */
  .right_content object {
    width: 76%;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: inherit;
  }
}
@media screen and (max-width: 1200px) {
  .downloadContainer {
    height: auto;
  }

  .pageCountainer .inner {
    margin-bottom: 50px;
  }

  .download_Content {
    flex-direction: column;
    margin: 70px 0;
    gap: 50px;
  }

  .left_Content {
    align-items: center;
    text-align: center;
  }

  .right_content {
    margin: 80px;
  }

  /* .right_content img {
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: inherit;
  } */
  .right_content object {
    width: 90%;
    height: auto;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: inherit;
  }
}

@media screen and (max-width: 500px) {
  .downloadContainer {
    height: 630px;
  }

  .downloadTitle {
    font-size: 1.5rem;
  }

  .downloadBtnContainer {
    margin: 7px 0;
  }

  .downloadBtnContainer img {
    width: 100%;
  }

  .right_content {
    margin: -126px 0;
  }
  .left_Content .downBtnLayout {
    margin-top: 208px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* .right_content img {
    width: 82%;
  } */
  .right_content object {
    width: 83%;
    height: 49%;
  }
}

/* modal */
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  align-items: center;
  justify-content: center;
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: #00000080;
  overflow: hidden;
}
.modal-content {
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 0.857rem; /* 12px -> 0.857rem */
  width: 42.857rem; /* 600px -> 42.857rem */
  height: 85vh; /* 뷰포트 높이의 85% */
  /* max-height: 55rem; 770px -> 55rem */
  flex-shrink: 0;
  padding: 2.857rem 3.429rem; /* 40px -> 2.857rem, 48px -> 3.429rem */
  z-index: 998;
  position: relative;
}

.modal-content::-webkit-scrollbar {
  width: 0px;
}

.policyModalContent {
  width: 42.857rem; /* 600px -> 42.857rem */
  height: 82vh; /* 940px / 1080px * 100 = 87.04vh */
  max-width: 100%; /* 모니터의 너비를 넘지 않도록 설정 */
  max-height: 67.143rem; /* 940px -> 67.143rem */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.contactClose {
  position: absolute;
  top: 2.857rem; /* 40px -> 2.857rem */
  right: 3.429rem; /* 48px -> 3.429rem */
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100vh;
    border-radius: 0;
  }
}

@media screen and (max-width: 500px) {
  .modal-content {
    width: 100%;
    height: auto;
    padding: 2.2857rem;
    overflow: scroll;
    z-index: 999;
    border-radius: 0;
  }

  .policyModalContent {
    height: 100%;
    max-height: 90%;
  }

  .contactClose {
    top: 2.2857rem;
    right: 2.2857rem;
    width: 1.4286rem; /* 20px */
    height: 1.4286rem; /* 20px */
  }
}

@media screen and (max-width: 400px) {
  .modal-content {
    height: auto;

    padding: 2rem;
    overflow: unset;
  }

  .policyModalContent {
    height: 100%;
    max-height: 90%;
  }
}

.SectionStyled {
  display: flex;
  flex-direction: column;
  gap: 1.7rem; /* 24px -> 1.714rem */
}

.SectionStyled_en {
  gap: 1rem;
}

.TitleStyled {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.429rem; /* 6px -> 0.429rem */
  align-items: flex-start;
  margin-bottom: 0.429rem; /* 6px -> 0.429rem */
}

.TitleStyled h1 {
  font-size: 1.714rem;
  margin: 0;
}

.TitleStyled p {
  font-size: 1.143rem; /* 16px -> 1.143rem */
  color: #888;
  margin: 0;
}

.polciyTitleStyled {
  margin-bottom: 2.857rem; /* 40px -> 2.857rem */
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .modal-content {
    padding: 2.657rem 3.229rem; /* 40px -> 2.857rem, 48px -> 3.429rem */
    width: 38.35rem;
    height: auto;
  }

  .policyModalContent {
    height: 88vh;
  }

  .modal-content svg {
    width: 22px;
    height: 22px;
  }

  .SectionStyled {
    gap: 1.2rem; /* 16px -> 1.2rem */
  }

  .TitleStyled h1 {
    font-size: 1.714rem; /* 24px -> 1.714rem */
  }

  .TitleStyled p {
    font-size: 1rem; /* 18px -> 1.286rem */
  }
}

@media screen and (max-width: 500px) {
  .TitleStyled h1 {
    font-size: 1.714rem; /* 24px -> 1.714rem */
  }

  .TitleStyled p {
    font-size: 1rem; /* 14px -> 1rem */
  }
}
@media screen and (max-width: 400px) {
  .TitleStyled h1 {
    font-size: 1.5rem; /* 24px -> 1.714rem */
  }

  .TitleStyled p {
    font-size: 0.8rem; /* 14px -> 1rem */
  }

  .SectionStyled {
    gap: 1.4rem; /* 16px -> 1.2rem */
  }
}

.labelStyled {
  width: 100%;
  font-size: 1.143rem; /* 16px -> 1.143rem */
  color: rgb(64, 64, 64);
  font-weight: 450;
  display: flex;
  column-gap: 0.308em;
  white-space: nowrap;
  margin-bottom: 0.857rem; /* 12px -> 0.857rem */
}

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

.inputLine:last-child {
  margin-right: 0; /* remove margin from the last input line */
}

.inputLine div input {
  width: 16.571rem; /* 232px -> 16.571rem */
  font-size: 1rem;
  appearance: none;
  border: 1px solid #e5e5e5;
  padding: 1.143rem 0.857rem; /* 16px -> 1.143rem, 12px -> 0.857rem */
  border-radius: 0.571rem; /* 8px -> 0.571rem */
}

.inputLine div input::placeholder {
  color: #9e9e9e;
}

.inputBox div textarea {
  width: 36rem; /* 504px -> 36rem */
  height: 100%;
  font-size: 1rem;
  padding: 0.857rem 1rem; /* 12px -> 0.857rem, 14px -> 1rem */
  border: 1px solid #e5e5e5;
  border-radius: 0.571rem; /* 8px -> 0.571rem */
  font-family: "Spoqa Han Sans Neo", "sans-serif";
  resize: none;
}

@media screen and (max-width: 768px) {
  .inputLine div input {
    width: 100%;
  }

  .inputBox div textarea {
    width: 100%;
  }

  .inputLine div input::placeholder {
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .inputLine div input {
    width: 100%;
    padding: 11px;
  }

  .inputBox div textarea {
    width: 100%;
  }

  .inputLine div input::placeholder {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .labelStyled {
    font-size: 1rem; /* 12px -> 0.857rem */
    margin-bottom: 0.571rem;
  }

  .inputLine div input {
    width: 100%;
  }

  .inputBox div textarea {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  .labelStyled {
    font-size: 0.9rem; /* 12px -> 0.857rem */
    margin-bottom: 0.471rem;
  }

  .inputBox div textarea {
    padding: 0.757rem 0.93rem; /* 12px -> 0.857rem, 14px -> 1rem */
  }
}

.inputLine div select {
  width: 100%;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  padding: 1.143rem 0.857rem; /* 16px -> 1.143rem, 12px -> 0.857rem */
  border-radius: 0.571rem; /* 8px -> 0.571rem */
}

.inputInfo {
  display: flex;
  justify-content: space-between;
  gap: 2.857rem; /* 40px -> 2.857rem */
}

.DocStyled {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem; /* 14px -> 1rem */
}

.DocStyled h5 {
  font-size: 1.143rem; /* 16px -> 1.143rem */
  font-weight: 500;
  color: #555;
  margin: 0;
}

.Consent {
  text-decoration: underline;
  cursor: pointer;
}

.inputInfo_en {
  flex-direction: column;
  gap: 16px;
}
.inputInfo_es {
  flex-direction: row;
  gap: 16px;
}

@media screen and (max-width: 500px) {
  .DocStyled h5 {
    font-size: 1rem; /* 14px -> 1rem */
  }
  .inputInfo_en {
    flex-direction: column;
    gap: 8px;
  }
}
@media screen and (max-width: 400px) {
  .DocStyled h5 {
    font-size: 0.9rem; /* 14px -> 1rem */
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .DocStyled h5 {
    font-size: 1rem;
  }
}
.checkBox {
  display: flex;
  align-items: center;
  column-gap: 0.5rem; /* 7px -> 0.5rem */
  cursor: pointer;
}

.checkBox input {
  width: 1.714rem; /* 24px -> 1.714rem */
  height: 1.714rem; /* 24px -> 1.714rem */
  min-width: 1.714rem; /* 24px -> 1.714rem */
  max-width: 1.714rem; /* 24px -> 1.714rem */
  border: 2px solid #cfcfcf;
  appearance: none;
  border-radius: 1000px;
  user-select: none;
  cursor: pointer;
}

.checkBox input:checked {
  background-position: 50%;
  background-repeat: no-repeat;
  border: 2px solid #cfcfcf;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E %3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.5948 0.603841C11.997 0.804803 12.1206 1.23018 11.8711 1.55396L6.24728 8.4777C5.56151 9.37063 3.94372 9.71218 3.30075 8.80245L0.112291 5.04125C-0.121805 4.71004 0.0219618 4.28877 0.433403 4.10032C0.844845 3.91188 1.36816 4.02761 1.60225 4.35882L4.79078 8.12002L10.4145 0.826209C10.6642 0.502436 11.1926 0.402879 11.5948 0.603841Z' fill='%23424242' stroke='%23424242' stroke-width='1'/%3E%3C/svg%3E");

  cursor: pointer;
}

.policyCheckPopup {
  color: #9e9e9e;
  cursor: pointer;
  font-size: 1.429rem; /* 20px -> 1.429rem */
}

.policyCheckPopup:hover {
  color: #888888;
}

.submit {
  display: inline-flex;
  padding: 1.143rem 2.071rem; /* 16px -> 1.143rem, 29px -> 2.071rem */
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.429rem; /* 20px -> 1.429rem */
  background-color: #c5c5c5;
  margin: 1.143rem auto auto auto; /* 16px -> 1.143rem */
  border: none;
  border-radius: 3.571rem; /* 50px -> 3.571rem */
}

@media screen and (max-width: 500px) {
  .submit {
    width: 100px;
    height: 40px;
    margin: 0.4286rem auto auto auto;
    font-size: 16px;
    padding: 12px 20px 12px 19px;
    font-weight: 500;
  }

  .checkBox input {
    width: 1.4286rem; /* 20px -> 1.4286rem */
    height: 1.4286rem; /* 20px -> 1.4286rem */
    max-width: 1.4286rem; /* 20px -> 1.4286rem */
    min-width: 1.4286rem;
  }
}
@media screen and (max-width: 400px) {
  .submit {
    width: 100px;
    height: 40px;
    margin: 0.4286rem auto auto auto;
    font-size: 16px;
    padding: 12px 20px 12px 19px;
    font-weight: 500;
  }

  .checkBox input {
    width: 1.4286rem; /* 20px -> 1.4286rem */
    height: 1.4286rem; /* 20px -> 1.4286rem */
    max-width: 1.4286rem; /* 20px -> 1.4286rem */
    min-width: 1.4286rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .submit {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    border-radius: 3.571rem; /* 50px -> 3.571rem */
    margin: 0.89rem auto auto auto;
  }

  .checkBox input {
    width: 1.1rem; /* 20px -> 1.4286rem */
    height: 1.1rem; /* 20px -> 1.4286rem */
    max-width: 1.1rem; /* 20px -> 1.4286rem */
    min-width: 1.1rem;
  }
}

.terms_box_contact {
  position: relative;
  overflow-y: scroll;
  box-sizing: border-box;
  background: #fff;
  scrollbar-base-color: #d9d9d9;
  scrollbar-arrow-color: #8e8e8e;
  scrollbar-3dlight-color: #d9d9d9;
  scrollbar-darkshadow-color: #d9d9d9;
  scrollbar-face-color: #d9d9d9;
  scrollbar-highlight-color: #d9d9d9;
  scrollbar-shadow-color: #d9d9d9;
  scrollbar-track-color: #f2f2f2;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 42.857rem; /* 600px -> 42.857rem */
  height: 89%;
  font-size: 1rem; /* 14px -> 1rem */
  color: #797979;
}

/* 가로 스크롤바 설정 */
.terms_box_contact::-webkit-scrollbar {
  width: 8px; /* 가로 스크롤바 너비 */
  height: 20px; /* 세로 스크롤바 높이 */
}

/* 스크롤바 트랙 (배경) */
.terms_box_contact::-webkit-scrollbar-track {
  background-color: transparent; /* 투명 배경 */
}

/* 스크롤바 손잡이 */
.terms_box_contact::-webkit-scrollbar-thumb {
  background-color: #d9d9d9; /* 손잡이 색상 */
  border-radius: 10px; /* 손잡이 둥근 모서리 */
  margin: 3px;
}

.star {
  font-size: 1.143rem; /* 16px -> 1.143rem */
  color: #f46c6c;
}

/* select custom */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.custom-select-trigger {
  width: 100%;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  padding: 1.143rem 0.857rem; /* 16px -> 1.143rem, 12px -> 0.857rem */
  border-radius: 0.571rem; /* 8px -> 0.571rem */
  color: #9e9e9e;
}

.custom-select-trigger::after {
  content: url("../img/Icon/down_arrow.png");
  margin-left: 10px;
  font-size: 12px;
  color: #333;
  position: absolute;
  right: 0.857rem;
  top: 1.443rem;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
  box-sizing: border-box; /* box-sizing을 border-box로 설정 */
}

.custom-option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box; /* box-sizing을 border-box로 설정 */
  width: 100%; /* custom-option의 너비를 100%로 설정 */
}

.custom-option:hover {
  background-color: #f0f0f0;
}

.custom-select.open .custom-options {
  display: block;
}

.custom-select.open .custom-select-trigger::after {
  content: url("../img/Icon/down_arrow.png");
  margin-left: 10px;
  font-size: 12px;
  color: #333;
}

@media screen and (max-width: 500px) {
  .custom-select-trigger {
    height: 2.5714rem;
    padding: 0.7rem 0.857rem;
    font-size: 12px;
  }
  .custom-select-trigger::after {
    top: 0.72rem;
  }
}
@media screen and (max-width: 400px) {
  .custom-select-trigger {
    height: 2.5714rem;
    padding: 0.6rem 0.757rem;
    font-size: 12px;
  }
  .custom-select-trigger::after {
    top: 0.745rem;
  }

  .inputLine div input {
    padding: 0.657rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  .custom-select-trigger {
    padding: 0.857rem;
  }

  .custom-select-trigger::after {
    top: 1.21rem;
  }

  .inputLine div input {
    padding: 0.857rem;
  }
}

.contactFinish {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 16px;
}

.contactFinish h1 {
  font-size: 26px;
  width: max-content;
}

.contactFinish p {
  font-size: 16px;
}

.modal-finish {
  width: fit-content;
  height: auto;
  padding: 34px 72px 25px 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 500px) {
  .modal-finish {
    width: 100%;
    padding: 34px 72px;
  }
}

.FinishBtn {
  color: #fff;
  background-color: #00a162;
  margin: 0 auto;
}

/* firstBanner */
.firstBanner {
  width: 100%;
  height: 34px;
  box-sizing: border-box;
  background-color: #424242;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1px 0;
}

.prizeButton {
  position: fixed;
  right: 28px;
  bottom: 90px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 999;
}

.prizeLength {
  border-radius: 100px;
  position: absolute;
  top: -9px;
  right: -6px;
  background-color: #ff0000;
  color: #fff;
  padding: 2px 6px;
}

.prizeTextTitle {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 97px;
  margin-top: 86px;
}

.prizeTextTitle img {
  width: 36px;
  height: 36px;
}

.prizeTitle {
  font-size: 48px;
  color: #fff;
}

.prizeContainer {
  position: relative; /* ::before의 절대 위치를 위한 설정 */
  background-image: url("../img/prizeBackground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.prizeInner {
  z-index: 3;
}

.prizeContainer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 검은색 배경 + 투명도 */
  z-index: 1; /* 컨텐츠 아래에 있도록 설정 */
}

.prizeLayout {
  display: flex;
  flex-direction: column;
  max-width: 1120px;
  gap: 80px;
  margin-bottom: 120px;
}

.prize {
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s;
}

.prize img {
  width: 440px;
  height: 320px;
  object-fit: cover;
}

.prize-content {
  display: flex;
  width: 100%;
  padding: 50px 50px 0 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  overflow: hidden;
}

.prize-title-subMain {
  color: #212121;
  font-family: "Spoqa Han Sans Neo";
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 156.25% */
  margin: 0;
  text-align: left;
}

.prize-title-main {
  color: #212121;
  font-family: "Spoqa Han Sans Neo";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  text-align: left;
}

.glomo {
  font-size: 25px !important;
  line-height: 32px;
}

.prize-description {
  color: #212121;
  font-family: "Spoqa Han Sans Neo";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: left;
  line-height: normal;
  margin: 0;
}

.prizeContainerLayout {
  position: relative;
  height: 320px;
}
.bookMark {
  position: absolute;
  width: 4%;
  top: -8px;
  left: 20px;
}

@media screen and (max-width: 1200px) {
  .prizeInner {
    padding: 30px;
  }

  .glomo-content {
    padding: 50px !important;
  }
}

@media screen and (max-width: 1200px) {
  .prizeContainer {
    background-image: none;
    background-color: #fff;
  }

  .prizeContainer::before {
    background-color: unset;
  }

  .prize {
    flex-direction: column;
    width: 70%;
  }

  .prizeContainerLayout {
    width: 100%;
    display: flex;
    justify-content: center;
    height: auto;
  }

  .prizeTitle {
    font-size: 36px;
    color: #212121;
  }

  .prizeLayout {
    align-items: center;
    margin-bottom: unset;
  }

  .prizeTextTitle {
    margin: 55px 0 60px 0;
    padding: unset;
  }

  .bookMark {
    width: 11%;
    top: -6px;
    left: 110px;
  }

  .prize-content {
    flex-direction: column-reverse;
    align-items: center;
    padding: 23px 18px 36px 18px;
    gap: 14px;
  }

  .prize-description {
    display: none;
  }

  .prize img {
    width: 100%;
    height: 223px;
  }

  .glomoImg {
    object-position: 20% 90%;
  }

  .glomo {
    font-size: 21px !important;
    line-height: 30px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px) {
  .bookMark {
    width: 7%;
    top: -12px;
    left: 160px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .bookMark {
    width: 8%;
    top: -12px;
    left: 150px;
  }
}

@media screen and (max-width: 768px) {
  .firstBanner {
    height: 38px;
  }

  .prize {
    flex-direction: column;
    width: 95%;
  }

  .prizeTitle {
    font-size: 22px;
    color: #212121;
  }

  .prizeInner {
    padding: 10px;
  }

  .prize-content {
    padding: 23px 18px 36px 18px;
  }

  .prize-title-main {
    font-size: 32px;
  }
  .prize-title-subMain {
    font-size: 16px;
    text-align: center;
  }

  .bookMark {
    width: 11%;
    top: -6px;
    left: 30px;
  }
}
