@media screen and (min-width: 1440px) {
  .part-container {
    max-width: 1360px;
  }
}
@media screen and (max-width: 1440px) {
  .part-container {
    max-width: 1150px;
  }
}
@media screen and (max-width: 1150px) {

}
@media screen and (max-width: 992px) {
  .main-header {
    padding: 30px 0 40px;
  }
  .main-header .hamburger-container {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
  }
  .main-header nav .close {
    display: block;
    position: absolute;
    top: 10px;
    right: 18px;
    color: #fff;
    width: fit-content;
    font-size: 24px;
    cursor: pointer;
    border: 0;
    background-color: transparent;
  }
  .main-header .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 2;
    gap: 6px;
    width: 40px;
    height: 32px;
    padding: 3px 6px;
    border-radius: 4px;
    background-color: transparent;
    border: 0;
    z-index: 2;
    cursor: pointer;
  }
  .main-header .hamburger .line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 3px;
  }
  .main-header .menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .main-header nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #09050cd7;
    padding: 48px 24px;
    width: 310px;
    flex-direction: column-reverse;
    align-items: stretch;
    justify-content: flex-end;
    z-index: 5;
    transition: 0.3s ease;
    transform: translateX(-100%);
  }
  .main-header nav.active {
    transform: translateX(0);
  }

}
@media screen and (max-width: 768px) {
  .part-container {
    width: calc(100% - 48px);
  }
  .section-header h2::before {
    width: 7px;
    height: 24px;
  }
  .section-header h2 {
    font-size: 17px;
    padding-inline-start: 18px;
  }
  .section-header a {
    font-size: 13px;
  }
  .main-header {
    padding: 0;
  }
  .main-header .right-part {
    order: 1;
  }
  .hero-part {
    background-color: #08353e78;
    background-blend-mode: color-burn;
    min-height: 560px;
    height: auto;
    width: 100%;
  }
  .hero-content {
    padding: 30px 24px 24px;
  }
  .hero-content .text h1 {
    max-width: 330px;
    font-size: 52px;
    line-height: 52px;
  }
  .hero-content .text p {
    font-size: 14px;
  }
  .hero-content .text h1 span {
    margin-left: 72px;
  }
  .hero-part .options {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 14px;
  }
  .hero-part .options .spacer:nth-of-type(4) {
    display: none;
  }
  .about {
    height: auto;
    margin: 0 auto;
  }
  .about .content {
    flex-direction: column;
    gap: 14px;
  }
  .about .content > img {
    max-width: 75%;
  }

  .article .detail-part {
    padding: 0 24px 24px;
  }
  .article .content .image-container {
    height: 250px;
  }

  .article .name {
    font-size: 21px;
  }
  .article .date span ,
  .article .details{
    font-size: 15px;
    line-height: 26px;
  }
  .comments  {
    margin: 65px auto;
  }
  .faq {
    margin-bottom: 85px;
  }
  .main-footer {
    border-radius: 32px;
  }
}
@media screen and (max-width: 570px) {
  
  .main-footer .line {
    margin-bottom: 33px;
  }

}
@media screen and (max-width: 480px) {
  .hero-content .options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-content .options .spacer {
    display: none;
  }
  .services-list .service-item {
    padding: 12px 22px 12px 12px;
    border-radius: 12px;
  }
  .services-list .service-item p {
    font-size: 16px;
  }
  .faq .faq-item h5 {
    font-size: 15px;
  }
  .faq .faq-item.active .item-body {
    font-size: 13px;
    line-height: 25px;
  }

}

@media screen and (min-width: 768px) {
  .hero-part .options {
    width: calc(104vw);
    position: relative;
    left: calc(-12vw);
    justify-content: center;
    gap: 15px;
    border-radius: 0;
    border-right-color: transparent;
    border-left-color: transparent;
    transform: rotate(-1.9deg);
    margin-top: 7px;
  }
}