html { 
  background-color: #121212;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none
}

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

body {
  font-family: Onest, sans-serif;
  font-weight: 500;
  color: #FFF;
  min-height: 100vh;
  background: linear-gradient(274.68deg, #443F78 0%, #292436 100%);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 30px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  gap: 10px;
}

.header__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.header__container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.header__logo {
  height: 86px;
}

.header__container-name {
  font-size: 42px;
  font-weight: 700;
  text-wrap: nowrap;
}

.header__title {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
}

.header__text {
  margin-bottom: 40px;
  font-size: 24px;
  max-width: 650px;
}

.header__img {
  height: 600px;
}

@media screen and (max-width: 940px) {

  .container {
    padding: 24px 15px 42px;
  }

  .header {
    margin-bottom: 50px;
  }

  .header__container {
    margin-bottom: 20px;
    gap: 5px;
  }

  .header__logo {
    height: 32px;
  }

  .header__container-name {
    font-size: 16px;
  }
  
  .header__title {
    margin-bottom: 12px;
    font-size: 32px;
  }
  
  .header__text {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .header__img {
    width: 50%;
    height: auto;
  }

  .header__btn-img {
    height: 40px;
  }
}

.why__container {
  margin-bottom: 100px;
}

.why__title, .download__title {
  margin-bottom: 40px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.why__content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.why__img {
  height: 184px;
}

.why__first-row,
.why__second-row {
  display: contents;
}


@media screen and (max-width: 1039px) {

  .why__content {
    flex-direction: column;
    gap: 32px;
  }
  .why__first-row,
  .why__second-row {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    gap: 32px;
  }
  
}

@media screen and (max-width: 940px) {
  .why__container {
    margin-bottom: 50px;
  }
  
  .why__title, .download__title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .why__img {
    height: 92px;
  }
}

.download__container {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 940px) {
  .download__container {
    margin-bottom: 50px;
  } 

  .download__btn-img {
    height: 40px;
  }

}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 16px;
}

.footer__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #7A7A7A;
  cursor: default;
}

.footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5px;
}

.footer__copy img {
  height: 18px;
}

.footer__policy {
  color: #FFF;
  cursor: pointer;
}


@media screen and (max-width: 940px) {

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    font-size: 14px;
  }
  
  .footer__info {
    flex-direction: column;
    gap: 16px;
    color: #7A7A7A;
    cursor: default;
  }

  .footer__copy img {
    position: relative;
  }

}