.top-head {
  padding-bottom: 40px;
}
.top-head h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  padding-bottom: 30px;
}
.top-head .d-grid {
  grid-template-columns: 40% 55%;
  gap: 5%;
}
.top-head-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 30px;
}
.bar-wrap {
  flex-grow: 1;
}
.bar-wrap p {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  padding-bottom: 10px;
  width: 100%;
}
.bar-wrap .bar {
  width: 100%;
  height: 16px;
  border-radius: 90px;
  box-shadow: 0px 1px 8.4px 0px #00000040 inset;
}
.bar-wrap .bar .value {
  display: block;
  height: 16px;
  border-radius: 90px;
  background: linear-gradient(90deg, #335eb8 0%, #869ce6 100%);
}
.top-head-descr p {
  line-height: 20px;
  padding-bottom: 1rem;
}
.top-head-lowbar {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
}
.top-head-price {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
}
.top-head-price .thp-current-price {
  font-weight: 600;
}
.top-head-price .thp-old-price {
  font-size: 20px;
  color: #7f7f7f;
  text-decoration: line-through;
}
.top-head-lowbar .btn {
  font-size: 16px;
  padding: 16px 25px;
}
/* RESPONSIVE */
@media screen and (min-width: 1300px) {

}
@media screen and (max-width: 1300px) {

}
@media screen and (max-width: 1023px) {
  
}
@media screen and (max-width: 800px) {
  .top-head .d-grid,
  .top-head-bars {
    grid-template-columns: 1fr;
  }
  .top-head .d-grid {
    gap:0
  }
  .top-head .top-head-image {
    width: 100%;
  }
  .top-head-lowbar {
    flex-flow: column;
    justify-content: center;
    gap:20px;
  }
}
@media screen and (max-width: 600px) {

}