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

  /* header */
  .headerMiddleLinks {
    gap: 25px;
  }
  .headerBottomLink {
    padding: 10px 5px;
  }
}
@media screen and (max-width: 1024px) {
  /* container */
  .container {
    padding: 0 20px;
  }

  /* header */
  .headerMiddleLinks {
    gap: 25px;
  }
  .headerBottomLink {
    padding: 10px 5px;
  }

  /* content */
  .contentInner {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contentLeft,
  .contentRight {
    position: static;
  }
  .contentLeft {
    width: 100%;
  }
  .contentRight {
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  /* header */
  .headerMiddleLinks,
  .headerBottomLinks {
    display: none;
  }
  .headerBottomInner {
    justify-content: flex-start;
  }
  .headerBottomSub {
    padding: 20px;
  }

  /* content */
  .contentTitle {
    font-size: 30px;
  }

  /* footer */
  .footer {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  /* header */
  .headerTop,
  .headerMiddle,
  .headerBottom {
    display: none;
  }
  .headerMobile {
    display: block;
  }

  /* content */
  .contentTitle {
    font-size: 24px;
  }
  .contentLeft {
    display: none;
  }
  .formBoxTitle {
    font-size: 17px;
  }

  /* footer */
  .footer {
    margin: 30px 0;
  }
  .footerImgs {
    display: none;
  }
  .footerLogo {
    position: static;
    width: 100%;
    transform: none;
  }
  .footerMidlleInner {
    flex-direction: column;
    row-gap: 30px;
  }
  .footerLinksBoxs {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .footerLinkBox {
    width: 50%;
  }
}
