﻿.wrapper {
  position: relative;
  margin-top:70px;
}
.wrapper:before, .wrapper:after {
  position: absolute;
  top: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 20px;
  height: 100%;
}
.wrapper:before {
  left: 0;
  background: linear-gradient(90deg, #3a5b73, transparent);
   width:40px;
}
.wrapper:after {
  right: 0;
  background: linear-gradient(-90deg, #3a5b73, transparent);
  width:20px;
}

.wrapper2 {
  position: relative;
  margin-top:70px;
}
.wrapper2:before, .wrapper2:after {
  position: absolute;
  top: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 20px;
  height: 100%;
}
.wrapper2:before {
  left: 0;
  background: linear-gradient(90deg, #d4ddd8, transparent);
   width:40px;
}
.wrapper2:after {
  right: 0;
  background: linear-gradient(-90deg, #d4ddd8, transparent);
  width:20px;
}

.items {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
  cursor: pointer;
}
.items.active {
  cursor: grab;
}

.items2 {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0;
  cursor: pointer;
}
.items2.active {
  cursor: grab;
}

.item {
  display: inline-block;
  margin-right: 35px;
  user-select: none;
 
  width: 50%;
  
  color: #222;
  font-size: 33px;
  font-weight: bold;
}
.item:last-child {
  margin-right: 20px;
}

@media screen and (min-width: 500px) {
  .item {
    width: 21%;
  }
}
@media screen and (min-width: 800px) {
  .item {
    width: 21%;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper {
    margin-left: -20px;
  }

  .item {
    width: 21%;
  }
}