html,
body {
  font-family: "Lato", sans-serif;
  width: 100%;
  overflow-x: hidden;
  padding: 0rem;
  margin: 0rem;
  color: #ffffff;
}

header {
  background-color: #ff0000;
  padding: 0.3125rem;
  font-weight: 900;
  text-align: center;
  font-size: 1.25rem;
}

footer {
  background-color: #000000;
  padding: 0.625rem;
}

ul {
  text-align: start;
}

li {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
  gap: 0.3125rem;
  font-size: 1.5625rem;
}

.telegram {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 5px;
}

.mobile {
  display: none;
}

.center {
  display: flex;
  justify-content: center;
}

.mb {
  margin-bottom: 1.875rem;
}

.pa {
  padding: 0.625rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0px 0px 16px 10px rgba(100, 198, 3, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px 14px rgba(100, 198, 3, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0px 0px 16px 10px rgba(100, 198, 3, 0.2);
  }
}

.block-1-desktop {
  display: flex;
  align-items: center;
  background-image: url("../assets/desktop.jpg");
  background-size: cover;
  background-position: center center;
  height: 80vh;
  padding: 6.25rem;
}

.block-1-mobile {
  display: none;
}

.block-1w {
  width: 40%;
  text-align: center;
}

.title-1 {
  font-size: 2.5rem;
  font-weight: 900;
}

.title-2 {
  font-size: 4.375rem;
  font-weight: 900;
  color: #00fd13;
}

.title-3 {
  font-size: 6.25rem;
  font-weight: 900;
  color: #00fd13;
}

.title-4 {
  background-color: #00fd13;
  font-size: 2.5rem;
  color: #000000;
  font-weight: 900;
}

.title-5 {
  font-size: 1.875rem;
}

.title-6 {
  font-size: 1.875rem;
  font-weight: 900;
  color: #00fd13;
}

.text {
  font-size: 1.5625rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00fd13;
  color: #000000;
  width: 70%;
  height: 3.75rem;
  border-radius: 0.9375rem;
  border: none;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0rem 0rem 1rem 0.625rem rgba(100, 198, 3, 0.2);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.list-icon {
  width: 30px;
}

.logo {
  width: 10%;
}

@media (max-width: 1400px) {
  .block-1-desktop {
    display: flex;
    align-items: center;
    background-image: url("../assets/desktop.jpg");
    background-size: cover;
    background-position: center center;
    height: 75vh;
    padding: 6.25rem;
  }

  .block-1w {
    width: 40%;
    text-align: center;
  }

  .title-1 {
    font-size: 30px;
    font-weight: 900;
  }

  .title-2 {
    font-size: 40px;
    font-weight: 900;
    color: #00fd13;
  }

  .title-3 {
    font-size: 70px;
    font-weight: 900;
    color: #00fd13;
  }

  .title-4 {
    background-color: #00fd13;
    font-size: 1.875rem;
    color: #000000;
    font-weight: 900;
  }

  .title-5 {
    font-size: 1.25rem;
  }

  .title-6 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #00fd13;
  }

  .btn {
    background-color: #00fd13;
    color: #000000;
    width: 30rem;
    height: 3rem;
    border-radius: 0.9375rem;
    border: none;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0px 0px 16px 10px rgba(100, 198, 3, 0.2);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
  }

  li {
    display: flex;
    align-items: center;
    margin-bottom: 0.625rem;
    gap: 0.3125rem;
    font-size: 18px;
  }

  .text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  header {
    background-color: #ff0000;
    padding: 0.3125rem;
    font-weight: 900;
    text-align: center;
    font-size: 15px;
  }

  footer {
    background-color: #000000;
    padding: 0.625rem;
  }

  .block-1-mobile {
    display: flex;
    align-items: start;
    background-image: none;
    background-color: #000000;
    background-size: cover;
    background-position: center center;
    padding-bottom: 20px;
  }

  .block-1-desktop {
    display: none;
  }

  .block-1w {
    width: 100%;
    text-align: center;
  }

  .title-1 {
    font-size: 20px;
    font-weight: 900;
  }

  .title-2 {
    font-size: 30px;
    font-weight: 900;
    color: #00fd13;
  }

  .title-3 {
    font-size: 50px;
    font-weight: 900;
    color: #00fd13;
  }

  .title-4 {
    background-color: #00fd13;
    font-size: 20px;
    color: #000000;
    font-weight: 900;
  }

  .title-5 {
    font-size: 15px;
  }

  .title-6 {
    font-size: 15px;
    font-weight: 900;
    color: #00fd13;
    margin-bottom: -0.125rem;
    z-index: 1;
  }

  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00fd13;
    color: #000000;
    width: 90%;
    height: 3rem;
    border-radius: 0.9375rem;
    border: none;
    font-size: 0.8rem;
    font-weight: 900;
    box-shadow: 0px 0px 16px 10px rgba(100, 198, 3, 0.2);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    animation: pulse 2s infinite;
  }

  .logo {
    width: 20%;
  }

  .img-mobile {
    display: block;
    width: 100%;
  }

  ul {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
