@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
.break {
  word-break: break-all;
}
a,
button {
  text-align: center;
  width: fit-content;
  cursor: pointer;
  background: transparent;
  transition: all 0.2s linear;
  border: none;
}
button:focus,
a:focus {
  outline: 4px solid #fff;
  filter: brightness(90%);
}
@media (hover: hover) {
  button:hover,
  a:hover {
    filter: brightness(80%);
  }
}
.p0 {
  padding: 0 !important;
}
textarea,
input {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}

main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
:root {
  scroll-behavior: smooth;
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block !important;
  }
  .desktop {
    display: none !important;
  }
}
body {
  /* background: #000 url(../images/bg.png) center / cover no-repeat; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header {
  position: relative;
  background: #bb7d01;
  padding-block: 28px;
}
.header__inner {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__nav a {
  display: block;
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.close-img {
  display: none;
}

.header__menu {
  display: none;
  width: 50px;
  height: 50px;
  padding: 5px;
  flex-shrink: 0;
}

.footer {
  padding-block: 36px;
}

.footer__inner {
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #bb7d01;
}
.footer__logo {
  display: block;
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__links a {
  display: block;
  color: #000;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.footer__copyright {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 18px */
}
.footer__s {
  max-width: 116px;
  width: 100%;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    transform: translateY(-100%);
  }
  .header__menu {
    display: block;
  }

  .show-menu .menu-img {
    display: none;
  }
  .show-menu .close-img {
    display: block;
  }
  .show-menu .header__nav {
    display: flex;
    position: absolute;
    bottom: 0;
    gap: 0;
    left: 0;
    width: 100%;
    right: 0;
    flex-direction: column;
    background-color: #bb7d01;
    z-index: 10;
    gap: 0;
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(98%);
  }
  .show-menu .header__nav a {
    padding-block: 20px;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid #fff;
  }
  .show-menu .header__nav a:last-child {
    border-bottom: none;
  }
}
@media (max-width: 420px) {
}

/* terms */
.terms {
  flex-grow: 1;
  padding-block: 50px;
}

.terms__title {
  color: #000;
  font-family: Inter;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.terms p {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
@media (max-width: 768px) {
  .terms__title {
    font-size: 32px;
  }
}
/* thank-page */
.th__content {
  max-width: 594px;
  width: 100%;
}
.th__img {
  max-width: 486px;
  width: 100%;
}
.th__title {
  color: #000;
  font-family: Inter;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}
.th__text {
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.th__text a {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
}
.th__img img {
  object-fit: cover;
}
@media (max-width: 768px) {
  .th__title {
    font-size: 32px;
  }
}
.unique-features {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}

.hero-section {
  width: 100%;
  padding: 80px 40px;
}

.main-title {
  width: 100%;
  font-size: 84px;
  color: rgba(255, 255, 255, 1);
  font-weight: 600;
  margin: 0;
}

.content-wrapper {
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  display: flex;
  margin-top: 40px;
  width: 100%;
  padding-top: 24px;
  align-items: center;
  gap: 62px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 27px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-image {
  aspect-ratio: 1.16;
  object-fit: contain;
  object-position: center;
  max-width: 339px;
  width: 100%;
  align-self: stretch;

  margin: auto 0;
}

.feature-description {
  align-self: stretch;
  margin: auto 0;
  width: 717px;
}

.features-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.features-container::-webkit-scrollbar {
  height: 8px;
}

.features-container::-webkit-scrollbar-track {
  background: transparent;
}

.features-container::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.feature-section {
  background-color: rgba(255, 255, 255, 1);
  border-top: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  width: 100%;
  padding: 40px;
  align-items: stretch;
  gap: 40px;
  white-space: normal;
  vertical-align: top;
}

.feature-content {
  flex: 1;
  flex-basis: 0%;
}

.feature-title {
  color: rgba(0, 0, 0, 1);
  font-size: 42px;
  font-weight: 600;
  margin: 0;
}

.feature-text {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}

.feature-image-large {
  aspect-ratio: 1.01;
  object-fit: contain;
  object-position: center;
  width: 100%;

  flex: 1;
  flex-basis: 0%;
}

.light-section {
  background-color: #ffffff;
}

/* Responsive styles */
@media (max-width: 991px) {
  .hero-section {
    max-width: 100%;
    padding: 80px 20px;
  }

  .main-title {
    max-width: 100%;
    font-size: 40px;
  }

  .content-wrapper {
    max-width: 100%;
  }

  .feature-description {
    max-width: 100%;
  }

  .feature-section {
    max-width: 100%;
    padding: 40px 20px;
    flex-wrap: wrap;
  }

  .feature-content {
    max-width: 100%;
  }

  .feature-title {
    max-width: 100%;
  }

  .feature-text {
    max-width: 100%;
  }

  .feature-image-large {
    max-width: 100%;
  }
}
.home {
  background-color: #bb7d01;
}

/* Book Showcase Section */
.book-showcase {
  padding: 40px;
  width: 100%;
}

.book-container {
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(255, 255, 255, 0.8);
  min-width: 300px;
  padding: 0 24px;
  flex: 1;
  flex-shrink: 0;
}

.book-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
}

.book-description {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}

/* Action Section */
.action-section {
  background-color: #fff;
  width: 100%;
  padding: 40px;
  color: #000;
}

.action-title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
}

.action-columns {
  display: flex;
  margin-top: 60px;
  width: 100%;
  gap: 24px;
  flex-wrap: wrap;
}

.action-column {
  border-top: 1px solid rgba(0, 0, 0, 0.8);

  padding-top: 24px;
  flex: 1;
  flex-basis: 0%;
}

.column-title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
}

.column-description {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}

/* Contact Section */
.contact {
  background-color: #bb7d01;
}
.contact-section {
  width: 100%;
  padding: 80px 40px;
  font-size: 18px;
}

.contact-image {
  object-fit: cover;
}

.contact-title {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
}

.contact-description {
  color: #fff;
  font-weight: 400;
  line-height: 27px;
  margin-top: 24px;
}

.contact-form {
  align-self: center;
  margin-top: 24px;
  width: 100%;
}

.form-fields {
  width: 100%;
  color: #fff;
  font-weight: 600;
}

.form-input {
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #fff;
  width: 100%;
  padding: 16px 32px;
  margin-bottom: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
}

.form-input::placeholder {
  color: #fff;
  opacity: 1;
}

.form-input:focus {
  outline: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.6);
}

.submit-button {
  background-color: #fff;
  width: 100%;
  padding: 12px 40px;
  margin-top: 16px;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.submit-button:focus {
  outline: 2px solid #fff;
  background-color: #f0f0f0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .book-showcase-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 772px) {
  .book-showcase-wrapper {
    grid-template-columns: 1fr;
  }
  .footer {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .book-showcase,
  .action-section {
    padding: 20px;
    max-width: 100%;
  }

  .book-container {
    padding: 0 20px;
  }

  .contact-section {
    padding: 80px 20px;
    max-width: 100%;
  }

  .action-title,
  .contact-title,
  .contact-description,
  .form-container,
  .contact-form,
  .form-fields,
  .contact-image {
    max-width: 100%;
  }

  .action-columns {
    margin-top: 40px;
  }

  .form-input,
  .submit-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-fields {
    white-space: initial;
  }
}
.b3 {
  background-color: #bb7d01;
}
