* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
::-webkit-scrollbar {
  width: 0;
  height: 0;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  user-select: none;
  -ms-touch-action: none;
  display: flex;
  flex-direction: column;
  touch-action: pan-y;
  overflow-x: hidden;
  overscroll-behavior: none;
  font-family: "poppins-regular";
  overflow-y: hidden;
}
.content {
    font-size: calc((1vw + 1vh) * 2);
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.content > .background {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
}
.content > .background > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-body {
    height: fit-content;
    max-width: 90vw;
    border: 0.25em solid rgb(255, 255, 255);
    padding: 0.5em 1em;
    border-radius: 1em;
    max-width: 90vw;
    background: #ffffff7a;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    color: #110056;
}
.text-title {
    width: 13em;
}
.text-title > img {
    width: 100%;
    height: auto;
}
.description {
    width: 63%;
    display: flex;
    align-self: self-start;
    font-family: "poppins-bold";
    font-size: 0.7em;
    margin-left: 1em;
}
.content .button {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: self-start;
    width: 55%;
}
.content button {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0;
    display: flex
}
.content button > img {
    width: 100%;
    height: auto;
}
.girl {
    width: 68vw;
    max-height: 54vh;
    position: absolute;
    top: 38%;
    right: -3em;
    pointer-events: none;
}
.girl > img {
    width: 100%;
    height: auto;
}
.head-banner {
    width: 65%;
    justify-self: center;
    margin-top: -35%;
    pointer-events: none;
}
.head-banner > img {
    width: 100%;
    height: auto;
}
.content-body .media {
    font-size: 0.5em;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-self: self-start;
    width: 55%;
    gap: 0.3em;
    margin-top: 1em;
    color: #110056;
}
.content-body .media > .des {
    font-style: italic;
}
.content-body .media > div.social-item {
    display: flex;
    gap: 0.3em;
    align-items: center;
    font-family: 'poppins-bold';
    text-align: left;
}
.content-body .media > div.social-item span {
    overflow: hidden;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.5em;
}
.content-body .media > div.social-item > img {
    width: 1.5em;
    height: 1.5em;
}
.landscape-content {
    display: none;
}

#customerServiceIframe {
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom, #ffb620, #ff8c26);
    display: flex;
    flex-direction: column;
}
#customerServiceIframe.customer-service-hide {
    display: none;
}

#customerServiceIframe.customer-service-show {
    display: flex;
}
#customerServiceIframe>iframe {
    width: 100%;
    height: 100%;
}

#customerServiceIframe .action {
    padding: 0.2em;
    display: flex;
    justify-content: right;
}

#customerServiceIframe .iframe {
    height: 100%;
}

#customerServiceIframe .iframe>iframe {
    height: 100%;
    width: 100%;
}

#customerServiceIframe button {
    background: transparent;
    border: none;
    width: 2em;
    height: 2em;
}

#customerServiceIframe button>img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}
@media (orientation: landscape) {
    html,
    body {
        overflow-y: hidden;
    }
    .content {
        font-size: calc((1vw + 1vh) * 0.95);
        overflow: unset;
        display: flex;
        flex-direction: column;
    }
    .content-body {
        height: fit-content;
        width: fit-content;
        max-width: 35em;
        padding: 2em 1em;
        margin-left: -3em;
    }
    .girl {
        width: 18em;
        max-height: 90vh;
        top: unset;
        bottom: -1.2em;
        right: 4em;
    }
    .girl > img {
        height: 100%;
    }
    .content .button {
        display: none;
    }
    .head-banner {
        width: 11em;
        margin-top: -6.5em;
    }
    .text-title {
        width: 25em;
    }
    .description {
        align-self: center;
        text-align: center;
        font-size: 1em;
        width: 75%;
    }
    .content-body .media {
        display: none;
    }
    .landscape-content {
        display: block;
        margin-left: -3em;
    }
    .landscape-content > .button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 20em;
        gap: 0.5em;
        margin: 1em;
    }
    .landscape-content > .button > button {
        width: 100%;
        height: auto;
    }
    .landscape-content > .media {
        text-align: center;
        font-size: 0.8em;
        color: #110056;
    }
    .landscape-content > .media > .des {
        font-style: italic;
    }
    .landscape-content > .media > .social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5em;
        font-family: 'poppins-bold';
    }
    .landscape-content > .media > .social-item > img {
        width: 1.5em;
        height: 1.5em;
    }
    #customerServiceIframe button {
        width: 2em;
        height: 2em;
        padding: 0.2em;
    }
    #customerServiceIframe {
        width: 25%;
        height: 60%;
        bottom: 0;
        right: 0;
        border-top-left-radius: .5em;
        border-top-right-radius: .5em;
    }
}
@media (min-width: 720px) and (max-height: 1438px) and (orientation: portrait) {
    .content-body {
        max-width: 80vw;
    }
    .description {
        font-size: 0.55em;
    }
    .head-banner {
        width: 60%;
        margin-top: -32%;
    }
    .girl {
        width: 60vw;
        right: -2em;
    }
}
@media (min-aspect-ratio: 4/5) and (max-aspect-ratio: 5/4) and (orientation: portrait) {
    .content-body {
        max-width: 80vw;
    }
    .description {
        font-size: 0.55em;
    }
    .head-banner {
        width: 60%;
        margin-top: -32%;
    }
    .girl {
        width: 50vw;
        right: -1em;
    }
}