@media screen and (min-width: 1240px) and (max-width: 1360px) {
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 991px) {
  /* header */
  .burgerLink {
    display: block;
  }
  .headerLinks {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
    background: #001f3f;
    position: absolute;
    top: 65px;
    right: 32px;
    z-index: 1;
    box-shadow: 0 0 10px #fff;
    transition: all 0.3s;
  }
  .headerLinks.active {
    display: inline-flex;
  }

  /* content */
  .contentTitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  /* content */
  .contentInner {
    flex-direction: column;
    gap: 30px;
  }
  .contentLeft {
    width: 100%;
  }
  .contentTitle {
    font-size: 24.38px;
    margin-top: 10px;
  }
  .contentLeftSub1 {
    margin-top: 10px;
  }
  .contentLeftSub2 {
    font-size: 15px;
    line-height: 25px;
  }
  .contentLeftBottom {
    padding: 65px 16px 40px 16px;
  }
  .contentRight {
    width: 100%;
    border-left: 0;
    border-top: 1px solid #dddddd;
    padding-left: 0;
    padding-top: 49px;
  }
}
