body {
  overflow: hidden;
}

.service-backup-theme.segment .frame {
  padding: 0;
}
.service-backup-theme.segment .frame .content {
  padding: 0 120px;
}
.backup-modal * {
  box-sizing: border-box;
}
.backup-modal #popUpContainer {
  width: 80%;
  max-width: 900px;
  margin: auto;
}
.backup-modal .popUpContent {
  max-width: 100%;
  max-height: 80vh;
  padding: 8px;
  border-radius: 5px;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}
.backup-modal .popUpContent * {
  color: #fff;
}
.backup-modal .popUpContent > div {
  padding: 2rem;
}

.backup-modal .popUpContentHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.backup-modal .popUpContentHeader .languageBtn {
  display: none;
  color: #fff;
}

.backup-modal .popUpContentBody {
  display: flex;
  flex-wrap: nowrap;
  /* align-items: center; */
  gap: 2rem;
}

.backup-modal .leftWrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  gap: 2rem;
}
.backup-modal .rightWrapper {
  width: 60%;
}

.backup-modal .popUpContentFooter {
  text-align: right;
}
.backup-modal .logo {
  width: 250px;
  max-width: 100%;
  height: auto;
}
.backup-modal .bell {
  width: 140px;
  max-width: 100%;
  height: auto;
}

.backup-modal #closeBtn, #exitCloseBtn {
  display: inline-block;
  padding: 5px 20px;
  background: #000;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  background-image: linear-gradient(to bottom, #fdb913, #f7951d);
  cursor: pointer;
}

.upper-roman-list {
  list-style-type: upper-roman;
  margin-left: 0;
  padding-left: 2rem;
}
.upper-roman-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.decimal-list {
  list-style-type: decimal;
  margin-left: 0;
  padding-left: 1.5rem;
}
.decimal-list ::marker {
  color: #f7951d;
  font-weight: 600;
  font-size: 1.25rem;
}
.decimal-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.disc-list {
  list-style-type: disc;
  margin-left: 0;
  padding-left: 1.5rem;
}

.backupMethodButton {
  display: none;
  color: #fff;
}

/* #backup-method img {
  border: 1px solid #000;
  margin: 0.5rem 0;
} */

@media only screen and (max-width: 640px) {
  .service-backup-theme.segment .frame .content {
    padding: 5vw;
  }

  .backup-modal .popUpContent {
    padding: 0;
    margin: 8px;
  }

  .backup-modal .popUpContent > div {
    padding: 1rem;
  }

  .backup-modal .popUpContentBody {
    flex-direction: column;
  }
  .backup-modal .popUpContentBody > div {
    width: 100%;
  }
  .backup-modal .popUpContentFooter {
    text-align: center;
  }

  .backup-modal .popUpContentHeader {
    flex-direction: column;
  }

  .backup-modal .popUpContentHeader .languageBtn {
    display: block;
    margin-left: auto;
  }

  .backup-modal #popUpContainer {
    width: 100%;
    margin: 0 auto;
  }

  .backup-modal .leftWrapper {
    flex-direction: row;
    justify-content: flex-start;
  }
  .backup-modal .logo {
    max-width: 60%;
  }
  .backup-modal .bell {
    width: 50px !important;
    max-width: 30%;
  }

  #main #visual .base {
    min-height: 0 !important;
    height: 0 !important;
  }
}

@media only screen and (min-width: 1280px) {
  .backupMethodButton {
    position: relative;
    display: inline-block;
    margin-bottom: 4rem;
    padding: 10px 50px;

    font-family: '微軟正黑體', '微軟正黑體 UI',
      'Microsoft JhengHei', 'Microsoft JhengHei UI', 'Microsoft YaHei',
      'Microsoft YaHei UI', 'SimHei', sans-serif;
    font-weight: 100;
    line-height: 1.25em;
    font-size: 32px;
    letter-spacing: 5px;
  }

  .backupMethodButton:before {
    content: ' ';
    background-color: #fcaf17;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 4px;
    margin-left: -100px;
  }
}

.scroll-down {
  position: relative;
}
.scroll-down:after {
  content: '';
  position: absolute;
  display: block;
  bottom: -2rem;
  left: calc(50% - 1.5rem);
  width: 2rem;
  height: 2rem;
  border: 0.5rem solid #fff;
  border-left: none;
  border-top: none;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  animation: arrowMove 1.2s infinite;
}

@keyframes arrowMove {
  to {
    transform: rotate(45deg) translateY(1rem) translateX(1rem);
    opacity: 0;
  }
}

.cta-button-container {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

@media only screen and (min-width: 1400px) {
  .cta-button-container {
    display: flex;
  }

  .d-xl-none {
    display: none;
  }

  .d-xl-flex {
    display: flex;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}
