@media screen and (min-width: 1240px) and (max-width: 1360px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
  /* header */
  .headerInner {
    flex-wrap: wrap;
  }
  .burgerImg {
    display: block;
  }
  .headerLinks {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    transition: display 0.3s ease;
  }
  .headerLinks.active {
    display: flex;
  }

  /* intro */
  .introTitle {
    font-size: 35px;
    line-height: 50px;
  }

  /* items */
  .itemBlock {
    width: 48%;
  }

  /* weather */
  .weather {
    margin-top: 0;
  }

  /* footer */
  .footer {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* intro */
  .intro {
    padding: 30px 0;
  }
  .introTitle {
    font-size: 23px;
    line-height: 33px;
  }
  .introSub {
    font-size: 16px;
    line-height: 26px;
  }

  /* items */
  .items {
    padding: 30px 0;
  }
  .itemsTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .itemBlock {
    width: 100%;
  }

  /* weather */
  .weatherBox {
    flex-direction: column;
    gap: 20px;
  }
  .weatherValue {
    font-size: 25px;
    line-height: 35px;
    border-left: 0;
    padding: 0;
  }
  .weatherMode,
  .weatherSpeed {
    border-left: 0;
    padding: 0;
  }

  /* footer */
  .footerLinks {
    flex-direction: column;
    row-gap: 10px;
  }
}
