:root {
  --base-easing: cubic-bezier(0.5, 0, 0.5, 1);
  --base-duration: 400ms;
}
*, *::before, *::after {
  box-sizing: border-box;
  transition-timing-function: var(--base-easing);
  transition-duration: var(--base-duration);
}

.swiper-bg {
  min-height: 150px;
  background: #fff url("https://assets.codepen.io/6791/clip-slider-bg.jpg") no-repeat center center / cover;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  background-color: black;
}
.slider__bg{
  background-color: #f7f6f3;
/*  border-bottom: 10px solid #f3f2ee;*/
}
#swipper_1.swiper-container{
  position: relative;
  font-size: 130%;
  font-weight: 500;
  margin: 0;

}

.swiper-wrapper.slide-content {
}
.slide-content .slide-section{
  padding: 30px 15px;
}

.slide-content .slide-section.no-padding{
  padding: 0 0;
}
.slide-content .slide-section.style1{
  padding: 30px 30px;
}
.swiper-wrapper.style1 {
  transition-timing-function: cubic-bezier(0.85, 0.12, 0.25, 1);
  transition-duration: 700ms;
/*  color: #fff;*/
  padding-bottom: 0;
}
.swiper-wrapper.style1 .list-section{
  padding-left: 0;
}

.swiper-wrapper.style1 .list-section .icon-box{
  padding-top: 10px;
}
.swiper-wrapper.style1 img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.swiper-wrapper.style1 .slide {
  padding: 0px 0px;

  /*display: grid;
  grid-template: 1fr / 1fr 4fr 1fr;
  overflow: hidden;*/
}
.swiper-wrapper.style1 .slide__title {
  color: #ff7f00;
  font-weight: 900;
  font-size: 36px;
  transition-delay: 1s, 0s;
  transition-duration: 200ms, 1s;
  transition-timing-function: var(--base-easing), ease-out;
  /*position: relative;
  font-size: 17vw;
  color: white;
  grid-row: 1;
  grid-column: 1 / -1;
  color: white;
  transform: translateX(100%);
  transition-property: transform, opacity;
  transition-delay: 1s, 0s;
  transition-duration: 200ms, 1s;
  transition-timing-function: var(--base-easing), ease-out;
  opacity: 0;
  will-change: transform opacity;
  z-index: -1;*/
}
.swiper-wrapper.style1  .slide__title.outline {
  /*position: relative;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px white;
  z-index: 2;*/
}
.swiper-wrapper.style1  .slide-content {
  position: relative;
  z-index: 3;
  left: 0;
  right: 0;
}
.swiper-wrapper.style1  .slide__image-wrapper {
  /*position: relative;
  height: 0;
  padding-bottom: 63.636363636%;
  grid-column: 2 / 2;
  grid-row: 1;
  overflow: hidden;*/
}
.swiper-wrapper.style1  .slide__image {

  /*position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;*/
  /*transform: scale(1.1);
  transition-property: transform;
  transition-delay: 1s;*/
}
.swiper-wrapper.style1  .swiper-slide-active .slide__title {
  /*opacity: 1;
  transform: translateX(0);
  transition-property: transform, opacity;
  transition-duration: 800ms, 500ms;
  transition-delay: 800ms, 0s;*/
}
.swiper-wrapper.style1 .swiper-slide-active .slide__image {
  transform: scale(1);
  transition-property: transform;
  transition-delay: 500ms;
}
.swiper-container .slider__controls {
  position: absolute;
  z-index: 1;
  left: 15px;
  bottom: 0;
}
.swiper-container .slider__control {
  border: 0;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  outline: 0;

}
.swiper-container span {
  background-color: inherit;
}
.swiper-container .slider__next .progress {
  /*stroke-dasharray: 220;
  stroke-dashoffset: 220px;*/
}
.swiper-container .slider__next .progress.play {
  background-color: green;
/*  animation: slider-progress 5s linear forwards;*/
}
@keyframes slider-progress {
  from {
    stroke-dashoffset: 220px;
  }
  to {
    stroke-dashoffset: 0px;
  }
}
.swiper-button-disabled {
  opacity: 0.4;
}
