File size: 527 Bytes
c9ba648
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*=============== DISCOUNT ===============*/
.discount{
   &__container{
      row-gap: 3.5rem;
   }
   &__data{
      text-align: center;
   }
   &__title{
      margin-bottom: 1rem;
   }
   &__description{
      margin-bottom: 2rem;
   }
   &__images{
      display: flex;
      justify-content: center;
   }
   &__img-1,
   &__img-2{
      width: 170px;
   }
   &__img-1{
      transform: translateX(1rem) rotate(-10deg);
   }
   &__img-2{
      transform: translateX(-1rem) rotate(10deg);
   }
}