.jewelryStore_2nd_section {
 position: relative;
 font-family: 'irsans', sans-serif;
 padding: 70px 30px;
}

.jewelryStore_2nd_section > .counterContainer {
 display: flex;
 width: 100%;
 flex-direction: row;
 align-items: center;
 justify-content: space-around;
 row-gap: 40px;

 @media screen and (max-width: 650px) {
     -moz-column-gap: 60px;
          column-gap: 60px;
     flex-wrap: wrap;
 }
}

.jewelryStore_2nd_section > .counterContainer > .counter {
 display: flex;
 flex-direction: column;
 align-items: center;
}

.jewelryStore_2nd_section > .counterContainer > .counter > .context {
 font-size: 30px;

 @media screen and (max-width: 650px) {
     font-size: 22px;
 }
}

.jewelryStore_2nd_section > .counterContainer > .counter > .title {
 font-size: 20px;
 color: var(--title_color);
}

.jewelryStore_2nd_section > .counterContainer > .line {
 width: 3px;
 height: 120px;
 background-color: #000000;

 @media screen and (max-width: 650px) {
     display: none;
 }
}