.block-workPrice {
  margin-bottom: 60px;
}

.block-workPrice__body {
  display: flex;
  grid-column-gap: 30px;
}

.block-workPrice__form {
  position: sticky;
  top: 115px;
  height: 370px;
  width: 32%;
  display: flex;
  flex-direction: column;
  padding: 40px 45px;
  border-radius: 5px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.block-workPrice__form::before {
  content: "";
  background: linear-gradient(180deg, rgba(24, 22, 20, 0.8) 0%, rgba(24, 22, 20, 0) 100%);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.block-workPrice__form .title {
  position: relative;
  z-index: 15;
  color: var(--card);
  padding-bottom: 20px;
}

.block-workPrice__form .btn-main {
  position: relative;
  z-index: 15;
  margin-top: auto;
  max-width: 100%;
  width: 100%;
}

.block-workPrice__pricesWrap {
  width: 68%;
  border-radius: 5px;
  border: 1px solid var(--primary);
  overflow: hidden;
  height: 100%;
}

.block-workPrice__pricesWrap .price-item {
  display: flex;
  align-items: center;
  grid-column-gap: 15px;
  padding: 15px 40px;
  cursor: pointer;
}

.block-workPrice__pricesWrap .price-item .price-item__arrow {
  color: var(--text);
}

.block-workPrice__pricesWrap .price-item:hover .price-item__arrow {
  background-color: var(--text);
}

.block-workPrice__pricesWrap .price-item:hover .price-item__arrow svg {
  color: var(--card);
}

.block-workPrice__pricesWrap .price-item:nth-child(odd) {
  background: var(--bgLightGrey);
}

.block-workPrice__pricesWrap .price-item:nth-child(even) {
  background: var(--card);
}

.block-workPrice__pricesWrap .price-item__name {
  color: var(--text);
  width: 60%;
}

.block-workPrice__pricesWrap .price-item__price {
  width: calc(60% - 55px);
  font-weight: 700;
}

.block-workPrice__pricesWrap .price-item__arrow {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background-color 0.3s ease;
}

.block-workPrice__pricesWrap .price-item__arrow svg path {
  transition: stroke 0.3s ease;
}

@media (max-width: 1200px) {
  .block-workPrice__form {
    padding: 20px;
  }

  .block-workPrice__pricesWrap .price-item {
    padding: 15px 20px;
  }
}

@media (max-width: 991px) {
  .block-workPrice {
    margin-bottom: 40px;
  }

  .block-workPrice__body {
    flex-direction: column-reverse;
  }

  .block-workPrice__form {
    position: relative;
    top: 0px;
    height: auto;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .block-workPrice__form .title br {
    display: none;
  }

  .block-workPrice__pricesWrap {
    margin-bottom: 30px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .block-workPrice__pricesWrap {
    overflow-x: auto;
  }

  .block-workPrice__pricesWrap .price-item {
    padding: 15px;
  }

  .block-workPrice__pricesWrap .price-item__arrow {
    display: none;
  }

  .block-workPrice__pricesWrap .price-item__name {
    width: 50%;
  }

  .block-workPrice__pricesWrap .price-item__price {
    width: 50%;
  }

  .block-workPrice__prices {
    min-width: 380px;
  }
}