@media screen and (min-width: 1240px) and (max-width: 1360px) {
  /* container */
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 1024px) {
  /* container */
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 991px) {
  /* intro */
  .intro {
    height: 50vh;
  }
  .introTitle {
    font-size: 35px;
    line-height: 45px;
  }

  /* who */
  .who {
    padding: 50px 0;
  }
  .whoTitle {
    font-size: 35px;
    line-height: 45px;
  }

  /* what */
  .what {
    padding: 50px 0;
  }
  .whatTitle {
    font-size: 35px;
    line-height: 45px;
  }
  .whatBlocks {
    flex-direction: column;
    row-gap: 30px;
  }
  .whatBlock {
    width: 100%;
  }

  /* work */
  .work {
    height: 50vh;
  }
  .workTitle {
    font-size: 35px;
    line-height: 45px;
  }

  /* numbers */
  .numbers {
    padding: 50px 0;
  }
  .numbersTitle {
    font-size: 35px;
    line-height: 45px;
  }
  .numbersBlock {
    width: 31%;
  }
  .numbersBlockSub {
    font-size: 15px;
  }

  /* contact */
  .contact {
    padding-top: 50px;
  }
  .contactTitle {
    font-size: 35px;
    line-height: 45px;
  }
  .contactBottom {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* header */
  .burger {
    display: block;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }
  .burger i {
    font-size: 30px;
  }
  #close {
    display: none;
  }
  .burger.active #close {
    display: block;
  }
  .burger.active #open {
    display: none;
  }
  .headerNavLinks {
    display: none;
    height: 0;
    width: 100%;
    flex-direction: column;
    row-gap: 30px;
    position: absolute;
    top: 100px;
    left: 0;
    padding: 30px 0;
    background: #000;
    transition: all 0.3s;
  }
  .headerNavLinks.active {
    display: flex;
    height: auto;
  }

  /* intro */
  .introTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .introSub {
    font-size: 17px;
    line-height: 26px;
  }

  /* who */
  .who {
    padding: 30px 0;
  }
  .whoTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .whoSub {
    font-size: 15px;
  }

  /* what */
  .what {
    padding: 30px 0;
  }
  .whatTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .whatBlockSub {
    font-size: 15px;
    margin-top: 20px;
  }

  /* work */
  .workTitle br {
    display: none;
  }
  .workTitle {
    font-size: 23px;
    line-height: 33px;
  }
  .workSub {
    font-size: 15px;
  }

  /* numbers */
  .numbers {
    padding: 30px 0;
  }
  .numbersInner {
    margin-top: 30px;
  }
  .numbersTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .numbersRow {
    flex-direction: column;
    row-gap: 30px;
  }
  .numbersBlock {
    width: 100%;
  }
  .numbersBlockTitle {
    font-size: 30px;
    line-height: 40px;
  }

  /* contact */
  .contact {
    padding-top: 30px;
  }
  .contactTitle {
    font-size: 25px;
    line-height: 35px;
  }
  .contactSub {
    font-size: 16px;
  }
  .contactBottom {
    margin-top: 30px;
  }
  .contactInfo {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 30px;
  }
  .contactInfoBlock {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .contactLogo img {
    display: block;
    max-width: 80px;
  }
  .contactBottomSub {
    font-size: 15px;
  }
}
