/*
 * CoreSlider v1.0.0
 * Copyright 2016 Pavel Davydov
 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */

 .core-slider {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.core-slider_viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.core-slider_list {
  width: 300%; /* Ajuste para o número de slides (100% por slide, aqui 3 slides) */
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.core-slider_item {
  float: left;
  width: 33.33%; /* 100% dividido pelo número de slides (3 slides = 33.33%) */
}

.core-slider_item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.banner-w3 {
  margin-bottom: 40px;
  position: relative;

}

.core-slider_nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}

.core-slider_arrow {
  position: absolute;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  transition: background-color 0.3s;
}

.core-slider_arrow__left {
  left: 10px;
}

.core-slider_arrow__right {
  right: 10px;
}

@media only screen and (max-width: 460px) {
  .core-slider_arrow {
    width: 25px;
    height: 25px;
  }
  .core-slider_arrow i {
    font-size: 12px;
  }
}


.core-slider_arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.core-slider_arrow i {
  font-size: 20px;
}

.core-slider_control-nav {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
}

.core-slider_control-nav-item {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.5);
}

.core-slider_control-nav-item:hover {
  opacity: 0.3;
}

.core-slider_control-nav-item.is-active {
  opacity: 0.3;
  cursor: default;
}

@media only screen and (max-width: 460px) {
  .core-slider_arrow {
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
  }
  .core-slider_arrow i {
    font-size: 12px;
  }
}