.discount{
  background: var(--accent-color);
  padding: 18px 0;
}

.discount-percent{
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 32px;
  gap: 15px;
  max-width: 340px;
  height: 80px;
  border: 1.5px solid #1F1F4D;  
  background-color: #1F1F4D !important;
  border-radius: 200px;
}

.discount-percent .discount-wrap{
  position: relative;

  font-weight: 700;
  font-size: 3.8rem;
  line-height: 100%;

  letter-spacing: -0.02em;
  color: white !important;
}

.discount-percent p{
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 100%;
  color: white !important;
}

.discount-content a{
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 160%;
  margin: 0;

  color: white;
  text-decoration: none;
}

.discount-content a:hover{
  color: white;
  text-decoration: underline;
}

.discount-content span{
  color: white;
}

.discount-content p{
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 160%;

  color: white;
}


@media screen and (max-width: 1201px){
  .discount-percent .discount-wrap{
    font-size: 2.7rem;
  }

  .discount-percent p{
    right: 1.1rem;
  }

  .discount-content a{
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 993px){
  .discount-percent{
    margin-bottom: 0 !important;
  }

  .discount-content{
    margin-top: 0.9rem;    
  }

  .discount-percent .discount-wrap{
      font-size: 3.4rem;
  }

  .discount-percent p{
      right: 2rem;
  }

  .discount-content p{
    margin: 0 !important;
  }
}

@media screen and (max-width: 375px){
  .discount-percent p{
    right: 1rem;
  }
}