.Breadcrumb {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.Breadcrumb .ant-breadcrumb-link a {
  color: #1a2028;
}
.Breadcrumb > span:last-child {
  opacity: 0.4;
}
.Breadcrumb .ant-breadcrumb-separator {
  color: #1a2028;
  opacity: 0.3;
  margin: 0 9px;
}
.Breadcrumb.white .ant-breadcrumb-link a {
  color: #ffffff;
}
.Breadcrumb.white .ant-breadcrumb-separator {
  color: #ffffff;
}

.PricesBlock {
  padding-top: 52px;
  padding-bottom: 58px;
}
@media screen and (max-width: 992px) {
  .PricesBlock {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  .PricesBlock {
    padding-top: 16.5px;
  }
}
@media screen and (max-width: 500px) {
  .PricesBlock {
    padding-top: 40px;
    padding-bottom: 51px;
  }
}
.PricesBlock__breadcrumb {
  margin-bottom: 32px;
}
@media screen and (max-width: 500px) {
  .PricesBlock__breadcrumb {
    margin-bottom: 24px;
  }
}
.PricesBlock__title {
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .PricesBlock__title {
    margin-bottom: 24px;
    font-weight: 600;
  }
}
.PricesBlock__services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1100px) {
  .PricesBlock__services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .PricesBlock__services {
    grid-template-columns: repeat(1, 100%);
  }
}
.PricesBlock__service {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 24px;
}
.PricesBlock__service:not(:last-child) {
  margin-bottom: 32px;
}
.PricesBlock__service:hover .PricesBlock__service-title {
  color: #0ab8b6;
}
.PricesBlock__service:hover svg {
  color: #0ab8b6;
}
@media screen and (max-width: 760px) {
  .PricesBlock__service {
    display: block;
  }
}
.PricesBlock__service-title {
  margin-bottom: 12px;
  min-width: 500px;
  transition: color 0.3s;
}
@media screen and (max-width: 500px) {
  .PricesBlock__service-title {
    min-width: none;
    font-size: 14px;
    line-height: 25px;
  }
}
.PricesBlock__service-requirements {
  color: #878787;
  margin-bottom: 12px;
}
@media screen and (max-width: 500px) {
  .PricesBlock__service-requirements {
    margin-bottom: 0;
  }
  .PricesBlock__service-requirements span {
    font-size: 12px;
    line-height: 14px;
  }
}
@media screen and (max-width: 500px) {
  .PricesBlock__service-price {
    display: block;
    margin-bottom: 8px;
  }
}

.ServiceCard {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  background-color: #ffffff;
  gap: 24px;
  box-shadow: 10px 20px 20px 0px rgba(0, 0, 0, 0.08);
}
.ServiceCard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ServiceCard__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ServiceCard__title {
  color: #1a2028;
  margin-bottom: 0;
}
.ServiceCard__description {
  color: #878787;
}
.ServiceCard__pill {
  background-color: #0ab8b6;
  border-radius: 40px;
  padding: 4px 8px;
  color: #ffffff;
  font-size: 12px;
  line-height: 100%;
}

