.c3 {
    background-image: url(../../images/c3-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    padding-top: 12rem;
    padding-bottom: 7rem;
}
.c3-title{
    font-family: var(--font-family);
font-weight: 400;
font-size: 3rem;
line-height: 100%;
text-transform: uppercase;
text-align: center;
color: #fff;
}
.sliderBox {
  width: 100%;
  margin: 5rem auto;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  padding: 0 1.5rem;
}

.frameBox {
  height: 14rem;
  position: relative;
}

.frame {
  display: none;
  
  padding: 30px 0;
}
.frame h2{

}
.frame p{
    font-family: var(--font-family);
font-weight: 300;
font-size: 1.8rem;
text-align: center;
color: #fff;
margin-top: 1.3rem;
}

.frame.active {
  display: block;
}

.controls {
  margin-top: 6rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.controls button {
  border: 1px solid #323232;
    border-radius: 25px;
    width: 90px;
    height: 90px;
  font-size: 20px;
  cursor: pointer;
  background: #000;
  color: #fff;
}
.controls button:nth-child(2){
    background: #191919;
}

.track {
  margin-top: 12rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.track .stick {
    width: 2px;
    background: #545454;
    height: 2.5rem;
  opacity: 0.4;
  transform-origin: bottom;
    pointer-events: none;
}

.track .stick.active {
    width: 2px;
    background: #fff;
    opacity: 1;
  transform: scaleY(1.6); /* увеличивается вверх */
  transition: 0.3s;
}

.c3-wrap{
        border-radius: 20px;
width: 36.7rem;
height: 21.5rem;
background: #738ca5;
position: relative;
padding: 4.1rem 0 4.3rem 3.7rem;
left: 50%;
transform: translate(-50%);
}
.c3-item{

display: flex;
flex-direction: column;
gap: 1.9rem;
}
.c3-item-title{
font-family: var(--font-family);
font-weight: 400;
font-size: 1.8rem;
text-transform: uppercase;
color: #fff;
}
.c3-item-text{
font-family: var(--font-family);
font-weight: 300;
font-size: 1.6rem;
color: #fff;
}
.c3-wrap img{
    width: 9.7rem;
    height: 10.2rem;
    position: absolute;
    top: 25%;
    
    right: -6%;
}