
ol.slidee,
ol.items{
  padding: 0;
  margin: 0;
}

ol.slidee>li{
  list-style-type: none;
}

.itembar{
  border-bottom: 1px #A2AFAF solid;
  margin-bottom: 50px;
}

.itembar>ol{
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.itembar>ol::-webkit-scrollbar {
  display: none;
}

.itembar li.item-label{
  font-weight: 700;
  font-size: 14px;
  padding: 13px 15px 9px 15px;
  margin: 0 17.5px;
  border-bottom: transparent solid 4px;
  white-space: nowrap;
  cursor: pointer;
  text-transform: uppercase;
  transition: .3s ease-in-out;
}

.itembar li.item-label:hover{
  color: #0C1B30;
}

.itembar li.item-label.active{
  border-bottom: #0C1B30 solid 4px;
}

.itembar li.item-label:first-child{
  margin: 0 17.5px 0 0;
}

.itembar li.item-label:last-child{
  margin: 0 0 0 17.5px;
}

.slider{
  margin: 0 auto;
}

.slider button{
  border: none;
  background-color: #F6F7F7;
  cursor: pointer;
  height: 110px;
  width: 70px;
  top: 50%;
  padding: 0;
  transform: translateY(-50%);

}

.prev{
  left: 0;
}

.next{
  right: 0;
}

.slider button,
.sldier button path{
  transition: .5s ease-in-out;
}

.slider button.disabled{
  opacity: 0;
}

.slider button:hover{
  background-color: #085083;
}

.slider button:hover path{
  stroke: #F6F7F7;
}

.slider li{
  animation-duration: 1.7s;
  animation-fill-mode: forwards;
}

.slider li .copy div{
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.slider li h2{
  font-weight: 900;
  font-size: 28px;
  margin-bottom: 20px;
}

.slider li p{
  font-size: 18px;
  font-weight: 300;
  margin: 0;
  line-height: 1.4;
}

.slider .img-wrapper{
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 20px;
}

.slider .img-wrapper img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@media only screen and (min-width: 768px){
  .itembar{
      margin-bottom: 0;
  }
  .slider{
      height: 480px;
  }
  .slider li div .copy{
      top: 50%;
  }
  .slider .img-wrapper{
      top: 50%;
      transform: translateY(-50%);
      margin-bottom: 0;
  }
  .slider li h2{
      font-size: 36px;
      margin-bottom: 25px;
  }
}