@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --color-primary: #00bd79;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  color: #fff;
}

body {
  background-color: black;
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%; /* keeps it from overflowing on small screens */
  height: auto;
}

h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
}

h1 .highlight {
  font-size: 66px;
}

h3 {
  font-size: 32px;
  font-weight: 700;
}

li {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

main {
  min-height: 100vh;
  background-image: url('../img/bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px 0 114px;
}

.container {
  max-width: calc(1520px + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  height: 48px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0px 25px;
  height: 48px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -1%;
  text-decoration: none;
  max-width: 148px;
  width: 100%;
}

.top,
.bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 284px;
  max-width: 920px;
}

.highlight {
  color: var(--color-primary);
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.feature-item ul {
  text-align: center;
}

.feature-item__title {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-item__title-img-mob {
  display: none;
}

.feature-item__img {
  height: 40px;
  width: 40px;
}

@media (max-width: 1441px) {
  h1 {
    font-size: 52px;
    line-height: 56px;
  }

  h3 {
    font-size: 32px;
  }

  li {
    font-size: 16px;
    line-height: 28px;
  }

  .container {
    max-width: calc(1240px + 32px);
  }

  .main-content {
    max-width: 810px;
  }

  .main-content > img {
    max-width: 330px;
  }

  .features {
    gap: 32px;
  }
}

@media (max-width: 1300px) {
  .container {
    max-width: calc(1120px + 32px);
  }
}

@media (max-width: 1119px) {
  .container {
    max-width: calc(880px + 32px);
  }

  .main-content {
    max-width: 510px;
  }

  h1 {
    font-size: 40px;
    line-height: 42px;
  }

  li {
    font-size: 13px;
    line-height: 22px;
  }

  .feature-item {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  main {
    padding: 16px 0 32px;
    background-position: top;
    background-size: auto;
    background-repeat: no-repeat;
  }

  .container {
    padding: 0 32px;
  }

  .header {
    margin-bottom: 20px;
  }

  .main-content {
    flex-direction: column;
    max-width: 100%;
  }

  .main-content img {
    max-width: 246px;
    align-self: unset;
  }

  .feature-item__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .feature-item__img {
    width: 32px;
    height: 32px;
  }

  .logo {
    height: 28px;
  }
}

@media (max-width: 560px) {
  h1 .highlight {
    font-size: 40px;
  }

  h1 {
    font-size: 28px;
  }

  .top,
  .bottom {
    gap: 32px;
  }

  .container {
    padding: 0 16px;
  }

  .bottom {
    width: 100%;
  }

  .bottom > .button {
    max-width: 100%;
  }
}
