@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.strong-color {
  color: #f8312f;
  font-size: 1.2em;
  font-weight: 1000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.text-show {
  color: #ff338e;
  font-weight: 600;
}

.hidden-450 {
  display: none;
}

.hidden-500 {
  display: none;
}

@media (max-width: 500px) {
  .hidden-450 {
    display: block;
  }
  .appear-500 {
    display: none;
  }
}
@media (max-width: 550px) {
  .hidden-500 {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
}

.hidden {
  display: none;
}

.appear-flex {
  transform: translateX(0%) !important;
}

body {
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  body {
    background-color: #fbfbfb;
  }
}
body header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: black;
  z-index: 3;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  height: 50px;
}
@media screen and (max-width: 768px) {
  body header {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    height: 10vw;
  }
}
body header .top-logo-block {
  position: absolute;
  left: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body header .top-logo-block a {
  display: flex;
  justify-content: center;
  align-items: center;
}
body header .top-logo-block .top-logo {
  width: 144px;
}
@media screen and (max-width: 768px) {
  body header .top-logo-block .top-logo {
    width: 27.5vw;
  }
}
body header .search-bar-container {
  width: 52%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  body header .search-bar-container input {
    display: none;
  }
}
body header .search-icon {
  position: absolute;
  left: 15px;
  color: #5e5966;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  body header .search-icon {
    display: none;
  }
}
body header .mobile-search-icon {
  position: absolute;
  color: #5e5966;
  font-size: 24px;
  right: 0px;
  left: 85%;
}
@media screen and (min-width: 769px) {
  body header .mobile-search-icon {
    display: none;
  }
}
body header .search-bar {
  width: 100%;
  height: 70%;
  padding: 0 20px 0 45px;
  border: 2px solid #ecebee;
  border-radius: 30px;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
  background-color: #ecebee;
}
body main {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", "Noto Sans KR", sans-serif;
  font-style: normal;
  font-size: 16px;
  position: relative;
  padding-bottom: 30px;
}
body main .title-img {
  background-image: url("../image/title_back.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  max-height: 600px;
}
body main .title-img .title-container {
  width: 100%;
  height: 40svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main .title-img .title-container .line-one {
  background-image: url("../image/new-image-banner/logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 30%;
  max-height: 100px;
}
body main .title-img .title-container .line-two {
  font-size: 1.5em;
  font-weight: 400;
  color: #9c0046;
}
body main h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 4px #201433;
  background-color: rgb(255, 50, 141);
  border-top: transparent 10px solid;
  -o-border-image: linear-gradient(to right, rgb(255, 0, 27), rgb(255, 0, 27) 14%, rgb(244, 158, 27));
     border-image: linear-gradient(to right, rgb(255, 0, 27), rgb(255, 0, 27) 14%, rgb(244, 158, 27));
  border-image-slice: 1;
  font-style: italic;
}
body main h1 img {
  margin-left: 10px;
  width: 5rem;
}
body main h1 .fix-3 {
  border-bottom: 5px solid #fff238;
  color: #fff238;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  body main h1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
body main .card-area {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
body main .card-area .float-block {
  position: fixed;
  left: 0%;
  transition: top 0.5s ease, opacity 0.5s ease;
  opacity: 0; /* 初始透明 */
}
body main .card-area .float-block .appear-btn {
  display: none;
  position: absolute;
  right: -30px;
  top: calc(50% - 30px);
  width: 30px; /* 圓的直徑 */
  height: 60px; /* 圓的直徑 */
  background-color: #ffffff; /* 按鈕背景為白色 */
  border: 2px solid #ddd; /* 邊框（可以調整顏色） */
  border-left: 0px;
  border-radius: 0px 30px 30px 0px;
  justify-content: center;
  align-items: center;
  cursor: pointer; /* 滑鼠變成手型 */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* 添加動態效果 */
}
body main .card-area .float-block .appear-btn i {
  font-size: 1.5em;
  color: #9c0046;
}
body main .card-area .float-block .card {
  display: flex;
  flex-direction: column;
  width: 256px;
  padding: 10px 20px 50px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 3.5px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
body main .card-area .float-block .card a {
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #9c0046;
  padding-bottom: 1px;
  margin-top: 30px;
  border-bottom: 2px dashed #ffa270;
  position: relative;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}
body main .card-area .float-block .card a::after,
body main .card-area .float-block .card a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  height: 5px;
  width: 5px;
  border-right: 2px solid #ffa270;
  border-top: 2px solid #ffa270;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
body main .card-area .float-block .card a::before {
  right: 13px;
}
body main .card-area .float-block .card a:hover {
  color: #ff338e;
}
body main .card-area .float-block .card a:hover::after {
  right: -5px;
}
body main .card-area .float-block .card a:hover::before {
  right: 0px;
}
body main .card-area .right-bar {
  width: 50px;
  height: 50px;
  z-index: 5;
  position: fixed;
  bottom: 20px;
  margin-left: 875px;
  background-color: #fefefe;
  border: 2px solid #e7e7e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
body main .card-area .right-bar a {
  color: #a69eb2;
  font-size: 25px;
}
@media screen and (max-width: 956px) {
  body main .card-area .right-bar {
    right: 12px;
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
  }
}
@media screen and (max-width: 1300px) {
  body main .card-area .float-block {
    display: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease; /* 平滑的過渡動畫 */
  }
  body main .card-area .float-block .appear-btn {
    display: block;
  }
}
body main .card-container {
  width: 100%;
  max-width: 749px;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.8196078431);
  z-index: -2;
}
@media screen and (max-width: 768px) {
  body main .card-container {
    width: 100%;
    background-color: #fbfbfb;
    margin: 0px 0px 0px 0px;
    padding: 0px;
  }
}
body main .card-container .card-container-base {
  padding-top: 20px;
}
body main .card-container .card-container-base article table {
  width: 100%; /* 表格寬度充滿父容器 */
  border-collapse: collapse; /* 合併邊框 */
  margin: 20px 0; /* 表格上下留白 */
  font-size: 16px; /* 字體大小 */
  text-align: center; /* 文字靠左對齊 */
  color: #9c0046;
  border: 1px solid rgb(255, 50, 141); /* 單元格下方邊框 */
}
body main .card-container .card-container-base article table th {
  background-color: #FAFFD1; /* 表頭背景色 */
  color: #9c0046; /* 表頭文字顏色 */
  font-weight: bold; /* 表頭加粗 */
  padding: 10px; /* 表頭內部間距 */
  border-bottom: 2px solid #ddd; /* 表頭下方加線 */
  border: 1px solid rgb(255, 50, 141); /* 單元格下方邊框 */
}
body main .card-container .card-container-base article table td {
  padding: 10px; /* 單元格內部間距 */
  border: 1px solid rgb(255, 50, 141); /* 單元格下方邊框 */
}
body main .card-container .card-container-top .banner {
  width: 100%;
}
body main .card-container .card-container-top .banner img {
  width: 100%;
}
body main .card-container .card-container-top article {
  width: 100%;
  padding-top: 40px;
  padding-left: 75px;
  padding-right: 75px;
}
body main .card-container .card-container-top article .article-header {
  margin-bottom: 10px;
}
body main .card-container .card-container-top article .article-header h2 {
  color: #9c0046;
}
body main .card-container .card-container-top article .article-header h3 {
  color: #9c0046;
  padding-left: 15px;
}
body main .card-container .card-container-top article ul, body main .card-container .card-container-top article ol {
  padding-left: 50px;
}
body main .card-container .card-container-top article ul li, body main .card-container .card-container-top article ol li {
  line-height: 30px;
}
body main .card-container .card-container-top article p {
  padding-left: 30px;
  line-height: 30px;
}
body main .card-container .card-container-top article .main-text {
  color: #9c0046;
  font-weight: 1000;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top {
    width: 100%;
    background-color: #fbfbfb;
    margin: 0px 0px 0px 0px;
    padding: 0px;
  }
  body main .card-container .card-container-top article {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .card-container .card-container-top .card {
  display: flex;
  flex-direction: column;
  width: 60vw;
}
@media screen and (min-width: 1346px) {
  body main .card-container .card-container-top .card {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  body main .card-container .card-container-top .card {
    width: 400px;
    padding-bottom: 50px;
  }
}
body main .card-container .card-container-top .card a {
  font-weight: 800;
  font-size: 4vw;
  line-height: 19px;
  color: #9c0046;
  padding-bottom: 1.8vw;
  margin-top: 5vw;
  border-bottom: 0.5vw dashed #ffa270;
  position: relative;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (min-width: 769px) {
  body main .card-container .card-container-top .card a {
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 25px;
    border-bottom: 3px dashed #ffa270;
  }
}
body main .card-container .card-container-top .card a::after,
body main .card-container .card-container-top .card a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  height: 5px;
  width: 5px;
  border-right: 2px solid #ffa270;
  border-top: 2px solid #ffa270;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
@media screen and (min-width: 460px) {
  body main .card-container .card-container-top .card a::after,
  body main .card-container .card-container-top .card a::before {
    height: 8px;
    width: 8px;
    top: 30%;
  }
}
body main .card-container .card-container-top .card a::before {
  right: 15px;
}
body main .card-container .card-container-top .card a:hover {
  color: #ff338e;
}
body main .card-container .card-container-top .card a:hover::after {
  right: -5px;
}
body main .card-container .card-container-top .card a:hover::before {
  right: 1px;
}
body main .card-container .card-container-top .card-title1 {
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
body main .card-container .card-container-top .card-title1 p {
  margin-top: 20px;
  color: rgb(255, 50, 141);
  text-shadow: 0px rgb(255, 50, 141);
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-title1 {
    margin: 10% 0rem;
    font-size: 4.2vw;
  }
  body main .card-container .card-container-top .card-title1 p {
    padding: 3.2vw;
    transform: translateX(5%);
  }
}
body main .card-container .card-container-top .card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main .card-container .card-container-top .card-content .title-content {
  text-align: center;
  word-wrap: break-word;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .title-content {
    width: 55vw;
    font-size: 4vw;
  }
}
body main .card-container .card-container-top .card-content .list-item {
  width: 23px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #ff338e;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .list-item {
    font-size: 6vw;
    width: 6vw;
  }
}
body main .card-container .card-container-top .card-content p {
  display: flex;
  align-items: center;
  font-weight: 550;
}
body main .card-container .card-container-top .card-content .pay-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0px 40px 0px;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .pay-link {
    display: none;
  }
}
body main .card-container .card-container-top .card-content .pay-link a {
  display: inline-block;
  width: 47%;
  background: #ff338e;
  box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.25);
  border-radius: 17px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, font-size 0.7s ease;
}
body main .card-container .card-container-top .card-content .pay-link a:hover {
  font-size: 17px;
  transform: scale(0.99);
}
body main .card-container .card-container-top .card-content .mobile-pay-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 50vw;
  margin: 5vw 0px 10vw 0px;
}
@media screen and (min-width: 769px) {
  body main .card-container .card-container-top .card-content .mobile-pay-link {
    display: none;
  }
}
body main .card-container .card-container-top .card-content .mobile-pay-link a {
  display: inline-block;
  width: 24vw;
  background: #ff338e;
  box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.25);
  border-radius: 20vw;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 3vw;
  line-height: 7vw;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, font-size 0.7s ease;
}
body main .card-container .card-container-top .card-content .mobile-pay-link a:hover {
  font-size: 2.5vw;
  transform: scale(0.99);
}
@media screen and (max-width: 500px) {
  body main .card-container .card-container-top .card-content .mobile-pay-link {
    width: 57vw;
  }
  body main .card-container .card-container-top .card-content .mobile-pay-link a {
    width: 27vw;
    line-height: 9vw;
    font-size: 4vw;
  }
}
body main .card-container .card-container-top .card-content .suggest-title {
  background-color: #ffece2;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .suggest-title {
    padding: 5vw 0px 5vw 0px;
  }
}
body main .card-container .card-container-top .card-content .suggest-title .block {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .card-container .card-container-top .card-content .suggest-title .block-center {
  width: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body main .card-container .card-container-top .card-content .suggest-title .block-center p {
  margin: 0px;
  color: #ff338e;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .suggest-title .block-center {
    width: 30vw;
  }
  body main .card-container .card-container-top .card-content .suggest-title .block-center p {
    font-size: 3vw;
  }
}
@media screen and (max-width: 600px) {
  body main .card-container .card-container-top .card-content .suggest-title .block-center {
    width: 38vw;
  }
  body main .card-container .card-container-top .card-content .suggest-title .block-center p {
    font-size: 4vw;
  }
}
body main .card-container .card-container-top .card-content .suggest-title .arrow-down {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 17px;
  background-color: #ff338e;
  margin: 20px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down {
    margin: -2vw 20px 0px 20px;
    width: 1vw;
    height: 3vw;
  }
}
@media screen and (max-width: 600px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down {
    width: 1.5vw;
    height: 3.5vw;
  }
}
@media screen and (max-width: 500px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down {
    margin: -0.5vw 20px 0px 20px;
  }
}
@media screen and (max-width: 420px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down {
    width: 2vw;
    height: 4vw;
    margin: 0.5vw 20px 0px 20px;
  }
}
body main .card-container .card-container-top .card-content .suggest-title .arrow-down:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 11px solid #ff338e;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down:after {
    border-left: 1.5vw solid transparent;
    border-right: 1.5vw solid transparent;
    border-top: 1.5vw solid #ff338e;
    border-radius: 5px;
  }
}
@media screen and (max-width: 600px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down:after {
    border-left: 2vw solid transparent;
    border-right: 2vw solid transparent;
    border-top: 2vw solid #ff338e;
    border-radius: 5px;
  }
}
@media screen and (max-width: 420px) {
  body main .card-container .card-container-top .card-content .suggest-title .arrow-down:after {
    border-left: 2.5vw solid transparent;
    border-right: 2.5vw solid transparent;
    border-top: 2.5vw solid #ff338e;
    border-radius: 5px;
  }
}
body main .card-container .card-container-top .img-block {
  width: 90%;
  margin-top: 16px;
}
body main .card-container .card-container-top .img-block img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-top .img-block {
    width: 90%;
  }
}
body main .card-container .card-container-main article {
  width: 100%;
  padding: 0px 75px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-main article {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body main .card-container .card-container-main article .article-header {
  width: 100%;
  display: flex;
}
body main .card-container .card-container-main article .article-header img {
  height: 35px;
}
body main .card-container .card-container-main article .article-header h3 {
  max-width: 50%;
  min-width: 300px;
  display: flex;
  align-items: center;
  font-size: 1.3em;
  background-color: rgb(255, 219, 200);
  color: #9c0046;
  padding-left: 15px;
}
body main .card-container .card-container-main article .article-container {
  margin-top: 20px;
  width: 100%;
}
body main .card-container .card-container-main article .article-container .left-right-display {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
body main .card-container .card-container-main article .article-container p {
  line-height: 30px;
}
body main .card-container .card-container-main article .article-container .main-text {
  color: #9c0046;
  font-weight: 1000;
}
body main .card-container .card-container-main article .article-container .os-color {
  color: #db3580;
}
body main .card-container .card-container-main article .article-container .strong-text {
  font-size: 24px;
  margin-top: 10px;
}
body main .card-container .card-container-main article .article-container img {
  margin: 20px 0px;
  width: 100%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.45); /* 添加陰影 左右 上下 模糊半徑*/
  border-radius: 8px; /* 可選：讓圖片邊角圓滑 */
}
body main .card-container .card-container-bottom .big-bg {
  border-radius: 25px;
  position: relative;
  background-image: url("../image/go-dlSite.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 2247/1580;
}
body main .card-container .card-container-bottom .big-bg .go-link {
  position: absolute;
  top: 60%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body main .card-container .card-container-bottom .big-bg .go-link .logo-bottom-text {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #726487;
}
@media screen and (max-width: 1000px) {
  body main .card-container .card-container-bottom .big-bg .go-link .logo-bottom-text {
    font-size: 12px;
  }
}
body main .card-container .card-container-bottom .big-bg .go-link a {
  display: block;
  background: #ff338e;
  border-radius: 37px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0px 0px 1.9px #ff338e;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s ease, font-size 0.7s ease;
  margin-top: 20px;
  padding: 0rem 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body main .card-container .card-container-bottom .big-bg .go-link a {
    padding: 0rem 4vw;
    margin-top: 3vw;
    line-height: 7.5vw;
    font-size: 4vw;
    border-radius: 5vw;
  }
}
body main .card-container .card-container-bottom .big-bg .go-link a:hover {
  font-size: 17px;
  transform: scale(0.99);
}
body main .card-container .card-container-bottom .card-title1 {
  width: 90%;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
  text-shadow: -1.3px 1px 0.9px #ff338e;
  margin: 100px 0px 0px 0px;
  background-image: url("../image/title-bg.svg");
  background-repeat: no-repeat;
  background-position: 43% center;
  background-size: contain;
}
body main .card-container .card-container-bottom .card-title1 img {
  width: 260px;
  margin-right: 30px;
  position: relative;
}
body main .card-container .card-container-bottom .card-title1 p {
  line-height: 24px;
}
body main .card-container .card-container-bottom .card-title1 p {
  line-height: 24px;
  padding: 1rem 1.2rem;
  font-style: italic;
  transform: translateX(-5%);
}
body footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 1rem;
  background-color: #201433;
  height: 12px;
}
body footer h3 {
  color: white;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  body footer h3 {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  body footer {
    height: 0px;
    padding: 13px;
  }
}
body #anchor-1,
body #anchor-2,
body #anchor-3,
body #anchor-4,
body #anchor-5 {
  scroll-margin-top: 80px;
}
body #anchor-top {
  scroll-margin-top: 90px;
}
body .search-page {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fefef5;
  transition: top 0.5s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  body .search-page.active {
    top: 0;
    z-index: 5;
  }
}
body .search-header {
  padding: 20px;
  display: flex;
  align-items: center;
}
body .search-input {
  flex-grow: 1;
  height: 40px;
  border: none;
  border-radius: 20px;
  padding-left: 40px;
  padding-right: 10px;
  font-size: 16px;
  background: #e6e5ea;
}
body .search-arrow {
  position: absolute;
  left: 35px;
  width: 10px;
  height: 10px;
  border-left: 3px solid #c8c3cf;
  border-bottom: 3px solid #c8c3cf;
  transform: rotate(45deg);
  cursor: pointer;
  border-radius: 1px;
}
body .arrow-container {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 24px;
}
body .arrow-line {
  position: absolute;
  width: 18px;
  height: 2.8px;
  background-color: #c8c3cf;
  left: 36px;
  margin-top: 0.35px;
  border-radius: 10px;
}

.pay-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
}
.pay-link a {
  display: inline-block;
  width: 100%;
  background: #ff338e;
  box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.25);
  border-radius: 17px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, font-size 0.7s ease;
}
.pay-link a:hover {
  transform: scale(0.9);
}

.m-card {
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 749px;
  padding: 10px 20px 50px 20px;
}

.m-card a {
  font-weight: 800;
  font-size: 16px;
  line-height: 19px;
  color: #9c0046;
  padding-bottom: 1px;
  margin-top: 30px;
  border-bottom: 2px dashed #ffa270;
  position: relative;
  display: block;
  text-decoration: none;
  transition: color 0.3s ease;
}

.m-card a::after,
.m-card a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  height: 5px;
  width: 5px;
  border-right: 2px solid #ffa270;
  border-top: 2px solid #ffa270;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}

.m-card a::before {
  right: 13px;
}

.m-card a:hover {
  color: #ff338e;
}

.m-card a:hover::after {
  right: -5px;
}

.m-card a:hover::before {
  right: 0px;
}

@media (max-width: 1300px) {
  .m-card {
    display: flex;
  }
}
.new-h2 {
  color: #fff !important;
  text-align: center;
  width: 100%;
  font-size: 1.5em;
  padding: 1rem 1.2rem;
  font-style: italic;
  text-shadow: -1.3px 1px 0.9px #ff338e;
  background-image: url("../image/title-bg.svg");
  background-repeat: no-repeat;
  background-position: 43% center;
  background-size: contain;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */