.container_banner {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  width: 1290px;
  background-color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 1279px) {
  .container_banner {
    width: 100%;
  }
}

@media screen and (max-width: 1240px) {
  .container_banner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.banner-btn {
  outline: none;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 5px;
  padding: 5px;
}

.banner-btn:hover {
  background-color: #23815a;
  color: white;
}

.block-for-slider {
  width: 100%;
  margin: 15px 15px;
  /*margin-top: 100px;*/
  overflow: hidden;
}

@media screen and (max-width: 1240px) {
  .block-for-slider {
    width: 1013px;
  }
}

@media screen and (max-width: 1024px) {
  .block-for-slider {
    width: 800px;
  }
}

.viewport {
  width: 90%;
  display: table;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 20px auto;
}

.slidewrapper {
  position: relative;
  width: 400%;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.slidewrapper ul, .slidewrapper li {
  margin: 0;
  padding: 0;
}

.slidewrapper li {
  /*width: calc(100%/4);*/
  list-style: none;
  display: inline-block;
}

.slide-img {
  width: 1210px;
  height: 134px;
  padding-right: 15px;
}

@media screen and (max-width: 1240px) {
  .slide-img {
    width: 990px;
    height: 110px;
  }
}

@media screen and (max-width: 1024px) {
  .slide-img {
    width: 800px;
    height: 90px;
  }
}

.prev-btn, .next-btn {
  position: relative;
  /*background-color: red;*/
  /*width: 0;
	height: 0;*/
  border: 0px solid transparent;
  /*top: calc(50% - 30px);*/
  font-size: 3em;
  color: #2f8665;
}

.prev-btn:hover, .next-btn:hover {
  cursor: pointer;
}

.prev-btn {
  border-right-color: #ff4500;
  border-left: 0;
  background-color: #fff;
  background-color: inherit;
}

.next-btn {
  border-left-color: #ff4500;
  border-right: 0;
  background-color: #fff;
  background-color: inherit;
}

.not-banner {
  text-align: center;
  font-size: 18pt;
}

.btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1279px) {
  .btn-container {
    display: none;
  }
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
/*# sourceMappingURL=banner.css.map */