.black-button {
  display: flex;
  align-items: center;
}
.white-btn .text-btn {
  background: #fff;
  color: #0b0b0b;
}
.white-btn .arow-btn {
  background: #fff;
}
.white-btn.text-btn {
  background: #fff;
  color: #0b0b0b;
}
.white-btn.arow-btn {
  background: #fff;
}
.text-btn {
  padding: 20px 30px;
  border-radius: 35px;
  background: #0b0b0b;
  color: #fff;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
.arow-btn {
  border-radius: 30px;
  background: #0b0b0b;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}
.arow-btn img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.section_top {
  margin-top: 120px;
}
body::-webkit-scrollbar {
  width: 10px; /* ширина всей полосы прокрутки */
}
.title,
.title span {
  position: relative;
  z-index: 1;
}

/* header */
.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: rgba(160, 162, 164);
}
.menu {
  display: none;
}
.heade-menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 15px;
}
.wrap__logo {
  width: 185px;
  height: 39px;
  flex-shrink: 0;
}
.heade-menu ul {
  display: flex;
  gap: 25px;
  align-items: center;
}
.heade-menu ul li {
  position: relative;
  width: max-content;
}
.heade-menu ul li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  background: #c00909;
  transition: 0.3s all;
  top: -31px;
  left: 0;
}
.heade-menu ul li:hover::before {
  width: 100%;
}
.heade-menu ul li div {
  cursor: pointer;
}
.heade-menu ul li a {
  color: #0b0b0b;
  font-size: 16px;
  font-weight: 400;
}
.header .text-btn {
  padding: 16px 24px;
  font-size: 14px;
}
.heade-menu .arow-btn {
  width: 49px;
  height: 49px;
}
.heade-menu .arow-btn img {
  width: 20px;
  height: 20px;
}

.heade-menu .list-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.heade-menu .list-menu:hover {
  overflow: visible;
}

.heade-menu .list-menu:hover .list-menu-item {
  z-index: 2;
  opacity: 1;
  visibility: visible;
}

.heade-menu .list-menu-item {
  position: absolute;
  z-index: -1;
  opacity: 0;
  top: 20px;
  left: -15px;
  width: max-content;
  padding: 18px 15px 10px;
  border-radius: 0 0 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.heade-menu .list-menu-item a {
  font-size: 16px;
  font-weight: 400;
}
.list-menu-item-wrap {
  display: contents;
}
@media screen and (max-width: 1220px) {
  header .heade-menu .list-menu-item {
    background-color: transparent !important;
    position: relative;
    left: 0px;
    padding: 0;
    transition: 0.3s all;
    display: grid;
    grid-template-rows: 0fr;
    gap: 20px;
    top: 0;
    overflow: hidden;
    z-index: 1;
    opacity: 1;
  }
  .list-menu-item-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  header .list-menu-item-wrap > a {
    padding-left: 0px;
    padding-top: 15px;
  }
  header .heade-menu .list-menu-item a {
    font-size: 16px;
    font-weight: 400;
  }
  header .list-menu-item-wrap {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  header .heade-menu .list-menu-item.active {
    grid-template-rows: 1fr;
  }
  header .list-menu > a {
    width: max-content;
  }
  header .heade-menu .list-menu {
    display: block;
    gap: 4px;
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    z-index: 5;
  }
  button.menu {
    border-radius: 60px;
    background: #000;
    padding: 6px;
    width: 43px;
    height: 42px;
  }
  .line {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    transition:
      stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .line2 {
    stroke-dasharray: 60 75;
    stroke-width: 6;
    stroke-dashoffset: -134;
    border-radius: 40px;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 6;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -90;
    stroke-width: 6;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 6;
  }
  .heade-menu ul {
    gap: 0px;
  }
  .heade-menu.burger {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    padding-bottom: 100px;
    z-index: 5;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 145px;
    background-color: rgba(160, 162, 164);
    /* background-image: url(../imgmk/mob-bg.webp); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom;
  }
  .heade-menu ul li::before {
    content: "";
    display: none;
  }
  .burger .wrap__logo,
  .burger .black-button {
    display: none;
  }
  .burger.active {
    left: 0;
  }
  .heade-menu.burger ul {
    flex-direction: column;
    justify-content: start;
    width: 100%;
    text-align: center;
    gap: 30px;
  }
  .heade-menu.burger ul li {
    padding: 0;
  }
  div.menu {
    padding: 20px 0;
  }
  div.menu > div {
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .title,
  .title span {
    font-size: 35px;
  }
}

@media screen and (max-width: 840px) {
  .wrap__logo {
    width: 158px;
    height: 33.247px;
  }
  .header .text-btn {
    padding: 10px;
    font-size: 14px;
  }
  button.menu {
    border-radius: 60px;
    background: #000;
    padding: 4px;
    width: 35px;
    height: 35px;
  }
}

.mk-block {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.mk-text {
  color: #c00909;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (max-width: 1044px) {
  .mk-block {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .mk-text {
    color: #c00909;
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .header .text-btn {
    padding: 10px;
    font-size: 12px;
  }
  .wrap__logo {
    width: 145px;
    height: 33.247px;
  }
  div.menu > div {
    display: flex;
    gap: 4px;
    align-items: center;
  }
}
