@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

html,
body {
  overflow-x: hidden;
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.footer-upper-border {
  border-top: 1px solid var(--Grey-stroke, #e8e7e4);
}

.footer__row {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 24px 0px;
}

.footer__row-content,
.footer__nav_links,
.landing-page__content__header-row {
  width: 100%;
  max-width: 1800px;
}

.footer__row-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  padding: 0 24px;

  @media (max-width: 991px) {
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  @media (max-width: 768px) {
    flex-direction: column;
  }
}

.footer__lower__links a,
.footer__lower__text {
  font-family: DM Sans;
  font-size: 13px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  color: rgb(138, 143, 152);
  margin: auto;
}

.footer__lower__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;

  @media (max-width: 700px) {
    padding-bottom: 10px;
    margin-top: 16px;
  }
}

.footer__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  color: #8a8f98;
  margin-bottom: 13px;
}

.footer__payments,
.footer__security {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer__security img {
  height: 60px;
  width: auto;
}

.footer__payments img {
  width: 48px;
  height: 48px;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

.footer__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  color: #8a8f98;
  margin-bottom: 13px;
}

.footer__list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list a {
  font-weight: 500;
  font-size: 13px;
  color: #272729;
  padding-bottom: 10px;
  text-decoration: none;
}

.footer__nav_links {
  text-align: center;
  padding: 0 24px;

  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5%;

  @media (max-width: 768px) {
    justify-content: center;
  }
}

.footer__logo {
  height: 27px;

  @media (max-width: 991px) {
    height: 28px;
  }
}

.footer__social__links {
  display: flex;
  flex-direction: row;

  @media (max-width: 991px) {
    flex-wrap: wrap;
  }
}

.footer__social__links__link {
  margin: 0 5px;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;

  @media (max-width: 991px) {
    height: 35px;
    width: 35px;
    margin-bottom: 10px;
  }
}

.footer__social__links__link svg {
  width: 24px;
  height: 24px;
  overflow: hidden;
}

/* Index page */

.landingPage,
footer {
  font-family: DM Sans;
}

.landing-page__content__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 999;

  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: #fff;
  padding: 8px 20px;
  box-shadow: 0px 2px 10px 0px #0000001a;
}

.landing-page__content__header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.landingPage-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

.header-nav-items {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-direction: row;

  @media screen and (max-width: 640px) {
    display: none;
  }
}

.link-orange {
  color: #07133e;
  font-family: "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.link-orange:hover {
  color: #ff782c !important;
}

.header-nav-items--show-mobile {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 50px;
  background: white;
  padding-right: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 20px;
  align-items: flex-start;
}

.hero-text {
  font-size: 64px;
  font-weight: 400;
  line-height: 80px;
  text-align: left;

  @media (max-width: 1024px) {
    font-size: 36px;
    line-height: 50px;
  }

  @media (max-width: 768px) {
    font-size: 30px;
    line-height: 44px;
  }
  @media (max-width: 500px) {
    font-size: 26px;
    line-height: 40px;
  }
}

.hero-button {
  /** Layout **/
  display: flex;
  padding: 12px 22px;
  border-radius: 8px;

  /** inner style **/
  background: #ff782c;
  color: #fff;
  border-style: none;

  font-size: 18px;
  text-decoration: none;
  cursor: pointer;

  &:hover {
    opacity: 0.65 !important;
  }
}

@media (max-width: 1024px) {
  .hero-image {
    max-width: 80%;
  }

  .hero-button {
    font-size: 14px;
    line-height: 22px;
    padding: 10px;

    a:hover {
      color: #f2f0f0;
    }
  }
}

.box-px-80 {
  padding: 0 80px;

  @media (max-width: 1024px) {
    padding: 0 20px;
  }
}

.box-px-16 {
  padding: 0 16px;
  box-sizing: border-box;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  background: #1d1f26;
  border-radius: 16px;
  color: white;

  background-image: url("/assets/marketing/check-19a9a7e9.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 40%;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}

@media (max-width: 640px) {
  .hero-container {
    flex-direction: column;
    justify-content: center;
  }
  .hero-left {
    padding-left: 8px !important;
    padding-bottom: 0 !important;
  }
  .hero-text {
    text-align: center;
  }
  .hero-right {
    padding: 20px;
  }
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-left: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 24px;
  padding-right: 30px;
}

.hero-right__text {
  font-size: 24px;
  line-height: 38px;
  text-align: left;

  @media (max-width: 1024px) {
    font-size: 18px;
    line-height: 30px;
  }

  @media (max-width: 768px) {
    font-size: 16px;
    line-height: 28px;
  }

  @media (max-width: 500px) {
    font-size: 14px;
    line-height: 28px;
  }
}

.hero-right__btn {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  row-gap: 14px;
}

.transparent-button {
  border: 1px solid #6e747d;
  background: transparent;
  color: white;
}

.white-button {
  background-color: white;
  color: #07133e;
  border: 1px solid #dfdce9;
}

.battle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;

  /* font */
  font-size: 12px;
  font-weight: 700;
  line-height: 15.62px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  color: #07133e80;
}

.list-battle {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 5%;
}

.battle_info {
  opacity: 0.45;
}

.third-block {
  .banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    text-align: center;
    gap: 5%;
  }

  .third-title {
    font-size: 42px;
    line-height: 60px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 70px;

    @media (max-width: 1024px) {
      font-size: 34px;
      line-height: 55px;
      margin-bottom: 32px;
    }
    @media (max-width: 768px) {
      font-size: 26px;
      line-height: 44px;
    }
    @media (max-width: 500px) {
      font-size: 16px;
      line-height: 32px;
    }
  }

  .element {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
  }
}

.text-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-h1 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;

  @media (max-width: 768px) {
    font-size: 20px;
    line-height: 28px;
  }
  @media (max-width: 500px) {
    font-size: 18px;
    line-height: 26px;
  }
}

.text-h2 {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  color: #6e747d;
  max-width: 500px;

  @media (max-width: 1024px) {
    font-size: 16px;
  }
  @media (max-width: 768px) {
    font-size: 14px;
    line-height: 30px;
  }
  @media (max-width: 500px) {
    font-size: 12px;
  }
}

.fit-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sub-title {
  font-size: 12px;
  font-weight: 700;
  line-height: 15.62px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
  color: #a4aab2;
}

.title-block {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 40px;

  @media (max-width: 500px) {
    flex-direction: column;
    align-items: center;
  }
}

.main-title {
  font-size: 36px;
  line-height: 49px;
  text-align: left;
  color: #1d1f26;
  word-wrap: break-word;
  max-width: 500px;

  @media (max-width: 1024px) {
    font-size: 28px;
    line-height: 36px;
  }

  @media (max-width: 768px) {
    font-size: 22px;
    line-height: 34px;
  }
}

.help-text {
  font-size: 14px;
  line-height: 28px;
  text-align: left;
  color: #6e747d;
  word-wrap: break-word;

  @media (max-width: 1024px) {
    font-size: 12px;
    line-height: 24px;
  }
}

@media (min-width: 1280px) {
  .help-text {
    font-size: 18px;
    line-height: 34px;
  }

  .main-title {
    font-size: 42px;
    line-height: 66px;
  }

  .title-block {
    gap: 52px;
  }
}

.list-block {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4%;
  row-gap: 12px;
  text-align: left;

  @media (max-width: 768px) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 30px;
  }
  @media (max-width: 500px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.option-icon {
  width: 24px;
  height: 24px;
}

.option-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: #1d1f26;
}

.option-desc {
  font-size: 14px;
  line-height: 28px;
  color: #6e747d;

  @media (max-width: 768px) {
    font-size: 13px;
    line-height: 22px;
  }
}

.third-block,
.forth-block,
.fifth-block,
.sixth-block,
.seventh-block {
  box-sizing: border-box;
  padding: 80px;

  @media (max-width: 992px) {
    padding: 50px;
  }
  @media (max-width: 768px) {
    padding: 30px;
  }
  @media (max-width: 500px) {
    flex-direction: column;
  }
}

.forth-block {
  display: flex;
  justify-content: center;
}

.fifth-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.content-block {
  display: flex;
  align-items: center;
  gap: 24px;

  @media (max-width: 576px) {
    flex-direction: column;
  }
}

.list-battle,
.list-colaboration,
.content-block,
.forth-block-content {
  width: 100%;
  max-width: 1300px;
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-colaboration {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4%;
  row-gap: 12px;

  text-align: left;

  @media (max-width: 768px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
  }
}

.ai-option,
.colaboration-option {
  max-width: 400px;
}

.feature-option {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4%;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 500px;
}

.feature-text p {
  margin: 0;
}

.sixth-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 768px) {
  .sixth-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 32px;
  }
  .feature-option {
    flex-direction: column;
    gap: 16px;
  }
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
}

.rounded-button {
  padding: 10px 20px;
  border-radius: 99px;
  border: 1px solid #1d1f2633;
  background: #ffdd63;
  color: #1d1f2680;

  /* font */
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;

  @media (max-width: 640px) {
    font-size: 10px;
    padding: 10px;
  }
}

.seventh-block {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 32px;
  column-gap: 4%;
  margin-bottom: 30px;

  @media (max-width: 640px) {
    /* flex-direction: column; */
  }
}

.last-block {
  max-width: 1400px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 50px;
  border-radius: 16px;
  background: #1d1f26;
  background-image: url("/assets/marketing/draw-line-ecf54820.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
}

.last-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.last-block__btn {
  display: flex;
  gap: 1rem;
}

.last-block__text {
  padding: 0 6px;

  font-size: 48px;
  line-height: 70px;
  text-align: center;

  @media (max-width: 768px) {
    font-size: 32px;
    line-height: 42px;
  }
  @media (max-width: 500px) {
    font-size: 22px;
    line-height: 34px;
  }
}

.blog-main {
  padding-top: 2rem;

  @media (max-width: 767px) {
    margin-top: 3rem;
  }
}
