.reset-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.repair-reviews-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.repair-reviews-inner {
  padding: 0 10px;
  margin-top: 60px;
}

.repair-reviews-slider {
  overflow: hidden;
}

.brands-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.repaired-equipment-slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.repaired-equipment-slider .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 20px;
}

@media(max-width: 767px) {
  .repaired-equipment-slider .swiper-wrapper {
    display: flex;
    gap: 0;
  }
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #2c2c26;

  span {
    font-size: 14px;
    font-weight: 400;
    display: block;
  }
}

.header-burger {
  display: none;
}

.header-menu-close {
  display: none;
}

.header-menu-list {
  display: flex;
  align-items: center;
}

.header-menu-item {
  padding: 0 10px;
}

.header-menu-link,
.header-dropdown-link,
.header-dropdown-sublink {
  font-size: 14px;
  line-height: 1.2em;
  color: #2c2c26;
  font-weight: 400;
  text-decoration: none;
}

@media (any-hover: hover) {
  .header-menu-link:hover,
  .header-dropdown-link:hover,
  .header-dropdown-sublink:hover {
    text-decoration: none;
    color: #b75d69;
  }
}

.header-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  border-radius: 15px;
  background-color: #e9e9db;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.3s ease;
  z-index: 35000;
}

.header-dropdown-list::before {
  position: absolute;
  width: 200px;
  height: 20px;
  content: "";
  top: -5px;
  left: 0;
}

.header-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;

  &::before {
    content: "\e603";
    font-family: "webflow-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    order: 10;
  }
}

.header-dropdown-item,
.header-dropdown-subitem {
  position: relative;
  padding: 10px 20px;
}

.header-dropdown-sublist {
  position: absolute;
  left: 0;
  width: 200px;
  margin-top: -38px;
  margin-left: 200px;
  background-color: #f1f1e0;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition: 0.3s ease;
}

.header-dropdown:hover::before {
  transform: rotate(180deg);
}

.header-dropdown:hover .header-dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.header-dropdown-item:hover .header-dropdown-sublist {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 5px;
}

.header-contacts-tel {
  color: #2c2c26;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.header-contacts-schedule {
  color: #2c2c26;
  font-size: 14px;
  font-weight: 400;
}

.header-contacts-address {
  color: #2c2c26;
  font-size: 14px;
  font-weight: 400;
}

@media (any-hover: hover) {
  .header-contacts-tel:hover {
    text-decoration: none;
    color: #b75d69;
  }
}

.header-dropdown-btn {
  display: none;
}

.header-menu-link a,
.header-dropdown-link a {
  color: unset;
  text-decoration: none;
}

@media (max-width: 991px) {
  .header-menu {
    padding: 30px 60px;
    background-color: #1a1a1a;
    position: fixed;
    inset: 0;
    z-index: 25000;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }

  .header-menu.is-open {
    transform: translateX(0);
  }

  .header-burger {
    display: block;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    color: unset;
  }

  .header-menu-close {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    margin-left: auto;
    margin-bottom: 16px;
    background: transparent;
    padding: 0;
    border: none;
    outline: none;
    color: unset;
  }

  .header-menu-close::before,
  .header-menu-close::after {
    display: block;
    content: "";
    width: 25px;
    height: 1px;
    background-color: #ffffff;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .header-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .header-menu-list {
    flex-direction: column;
    align-items: flex-start;
    height: calc(100vh - 51px);
    overflow-y: auto;
    padding-bottom: 24px;
  }

  .header-menu-item {
    width: 100%;
  }

  .header-menu-link,
  .header-dropdown-link,
  .header-dropdown-sublink {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
  }

  .header-menu-item {
    padding: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header-dropdown-item,
  .header-dropdown-subitem {
    padding: 10px;
  }

  .header-dropdown {
    padding-right: 24px;
  }

  .header-dropdown::before,
  .header-dropdown-list::before {
    display: none;
  }

  .header-dropdown-list,
  .header-dropdown-sublist {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
    transition: unset;
    background-color: transparent;
    margin: 0;
    margin-bottom: -10px;
  }

  .header-dropdown-item {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
  }

  .header-dropdown-btn {
    content: "";
    width: 12px;
    height: 12px;
    display: block;
    background: url("../images/plus-white.png") no-repeat center;
    background-size: 12px 12px;
    transform: rotate(0);
    transition: transform 0.3s ease;
  }

  [data-dropdown="link"].is-open .header-dropdown-btn {
    transform: rotate(45deg);
  }

  [data-dropdown="list"] {
    display: none;
  }

  .header-dropdown-link,
  .header-menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .header-dropdown-link a,
  .header-menu-link a {
    color: #ffffff;
    text-decoration: none;
  }

  .header-contacts {
    margin-left: auto;
    margin-right: 16px;
  }
}

@media (max-width: 767px) {
  .header-contacts {
    display: none;
  }
}

@media (max-width: 479px) {
  .header-menu {
    padding: 16px 10px 10px;
  }
}

.header__mobile {
  display: none;
}

@media(max-width: 767px) {
  .header__mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 10px;
  }

  .header__mobile .header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
  }
}

.table-content.marg {
  margin-top: 60px;
}

.table-content table {
  width: 100%;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
}

.table-content table tbody,
.table-content table thead {
}

.table-content table th {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  background-color: #e9e9db;
  padding: 20px;
  border-right: 1px solid #cfcfc2;
}

.table-content table th:first-child {
  border-radius: 30px 0 0 30px;
}

.table-content table th:last-child {
  border-radius: 0 30px 30px 0;
  border-right: 0;
}

.table-content table td {
  text-align: left;
  font-size: 16px;
  padding: 12px 20px;
  border-bottom: 1px solid #cfcfc2;
  border-right: 1px solid #cfcfc2;
}

.table-content table td:first-of-type {
  border-bottom-left-radius: 30px;
}

.table-content table td:last-of-type {
  border-right: 0;
  border-bottom-right-radius: 30px;
}

@media (max-width: 767px) {
  .table-content table th {
    padding: 10px 10px 10px 20px;
    font-size: 16px;
  }

  .table-content table td {
    padding: 10px 10px 10px 20px;
    font-size: 14px;
  }
}