@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

body {
  background-color: #ffffff;
  color: #2D2D2D;
}

.container {
  width: 1320px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

header .topbar {
  padding: 12px 60px;
  height: 54px;
}
header .topbar img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
header .logobar {
  padding: 12px 60px;
  height: 50px;
  background: #F0F0F0;
}
header .logobar img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
header .header {
  position: relative;
  overflow: hidden;
}
header .header img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

main {
  padding: 50px 0 0;
}
main .container .content h1 {
  font-size: 26px;
  font-weight: 700;
}
main .container .content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
main .container .content .header-wrapper {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
main .container .content .header-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
main .container .content p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}
main .container .payment {
  margin: 150px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .container .payment .payment-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 310px;
  height: 60px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  background-color: #E40428;
  margin-bottom: 24px;
}
main .container .payment .terms {
  font-size: 20px;
  line-height: 27px;
  font-weight: 300;
  color: #2D2D2D;
}
main .container .payment .see-you {
  margin-top: 12px;
}
main .container .payment #cancellation {
  margin-top: 12px;
}
main .container .payment .hidden-text {
  display: none;
}
main .container .payment .show-text {
  display: block;
}
main .container .payment .more-info {
  margin-top: 12px;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  min-height: 100px;
  background-color: #F0F0F0;
  font-size: 16px;
  line-height: 22px;
  color: #2D2D2D;
}
@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 60px;
  }
}
footer .copyright {
  margin-bottom: 12px;
}
footer .footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
}
footer .footer-links a {
  font-size: 16px;
  line-height: 22px;
  color: #2D2D2D;
  text-decoration: none;
}/*# sourceMappingURL=app.css.map */