@media only screen and (max-width: 1024px) {
  .navmenu ul {
    position: absolute;
    width: 100%;
    height: max-content;
    left: 0;
    top: 100%;
    background: #ffffff;
    transform: scaleY(0);
    transition: all 0.3s ease-in-out;
  }
  .navmenu.active ul {
    transform: scaleY(1);
    transition: all 0.3s ease-in-out;
  }
  header .navmenu ul li::before {
    display: none;
  }
  header .header_area .navmenu ul li {
    padding: 0;
    width: 100%;
  }
  header .navmenu ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    align-items: flex-end;
  }
  header .header_area .navmenu ul li.dropdown-item:hover .dropdown,
  header .header_area .navmenu ul li.dropdown-item.active .dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
    width: unset;
    transition: all 0.2s ease-in-out;
  }
  header button.menu-button {
    position: absolute;
    right: 20px;
    display: block;
  }
  header .header_area .navmenu .phone {
    margin-left: 0;
    right: 30px;
    position: relative;
  }
  .logo a img {
    width: 150px;
  }
  .banner .banner_area {
    display: block;
  }
  .banner {
    min-height: auto;
  }
  .insurance .insurance_area .in_item .in_img img {
    height: 200px;
  }
  .who .who_area {
    gap: 20px;
  }
  .who .who_area .who_img {
    min-height: unset;
  }
  .process .process_area {
    flex-wrap: wrap;
  }
  .process .process_area .process_item {
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 50px;
  }
  .offer .offer_area {
    grid-template-columns: repeat(3, 1fr);
  }
  .serve .serve_area {
    flex-direction: column;
  }
  .company .splide__arrow {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .insurance .insurance_area,
  .who .who_area {
    flex-direction: column;
  }
  .big_title h1 {
    font-size: 38px;
    line-height: 48px;
  }
  .who.why .who_area .who_content {
    padding-left: 0;
  }
}
@media only screen and (max-width: 575px) {
  header {
    padding: 10px 20px;
  }
  header .header_area {
    flex-direction: column;
    gap: 10px;
  }
  header .header_area .navmenu .phone {
    right: 0;
  }
  header button.menu-button {
    bottom: 25px;
  }
  .banner .banner_area .banner_content h1 {
    font-size: 56px;
    line-height: 65px;
  }
  .process .process_area,
  .serve .serve_area .serve_content .serve_item {
    flex-direction: column;
  }
  .process .process_area .process_item {
    flex: 1;
  }
  .who.why .who_area .who_content .why_inner,
  .offer .offer_area {
    grid-template-columns: repeat(1, 1fr);
  }
  .serve .serve_area .serve_content .serve_item {
    border-radius: 10px;
  }
}
