@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) {
  /* header */
  .headerBottom {
    display: none;
  }

  /* content */
  .contentLeft {
    width: 100%;
  }
  .contentRight {
    display: none;
  }

  /* footer */
  .footerBoxs {
    flex-direction: column;
    gap: 30px;
  }
  .footerBox {
    width: 100%;
  }
  .footerBox:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  /* header */
  .logo img {
    display: block;
    max-width: 150px;
  }

  /* content */
  .contentLeftTitle {
    font-size: 20px;
  }
  .contentLeftUser {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .contentLeftBlockTitle {
    font-size: 20px;
  }

  /* footer */
  .footerBoxTitle {
    font-size: 20px;
  }
}
