.slider-item {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  max-width: 275px;
  min-width: 275px;
  width: 100%;
  align-items: center;
  user-select: none;
  padding: 2rem 0;
}
.slider-item:nth-child(1) {
  background-color: #113043;
}
.slider-item:nth-child(2) {
  background-color: #136A9D;
}
.slider-item:nth-child(3) {
  background-color: #B9541C;
}
.slider-item:nth-child(4) {
  background-color: #135A2A;
}
.slider-item__title *,
.slider-item__title {
  font-family: var(--font-fraunces);
  font-size: 32px;
  margin: 0;
  line-height: 150%;
  font-weight: 400;
}
@media all and (min-width: 650px){
  .slider-item {
    max-width: 500px;
    min-width: 500px;
  }
  .slider-item__title *,
  .slider-item__title {
    font-size: 54px;
  }
}
@media all and (min-width: 1200px){
  .slider-item {
    max-width: 639px;
    min-width: 639px;
  }
}
