.sce-insights {
  position: relative;
  padding: 60px 0;
  background-color: #000;
  color: #fff
}
.sce-insights__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex
}
.sce-insights__bg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}
.sce-insights__container {
  position: relative;
  z-index: 1
}
.sce-insights__title {
  margin-bottom: 40px
}
.sce-insights__panels {
  position: relative;
  display: flex;
  gap: 20px;
  margin: 0 -20px;
  padding: 0 20px 20px;
  overflow-x: scroll
}
.sce-insights__panel {
  flex: calc(100vw - 80px) 0 0;
  background: rgba(0,0,0,.85)
}
.sce-insights__panel-img {
  display: flex;
  overflow: hidden
}
.sce-insights__panel-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  transition: transform .5s
}
.sce-insights__panel-content {
  padding: 20px
}
.sce-insights__panel-content h3 {
  color: #fff;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: normal;
  display: flex;
  align-items: flex-end
}
.sce-insights__panel-content strong {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: normal
}
.sce-insights__panel-content span {
  background-image: linear-gradient(120deg,#fff 0,#fff 100%);
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: 0 100%;
  transition: background-size .3s
}
.sce-insights__panel:hover .sce-insights__panel-img img {
  transform: scale(1.2)
}
.sce-insights__panel:hover .sce-insights__panel-content strong span {
  background-size: 100% 2px
}
.sce-insights__nav {
  display: none;
  gap: 10px;
  align-items: center;
  justify-content: center
}
.sce-insights__nav button {
  cursor: pointer
}
.sce-insights__nav-back,
.sce-insights__nav-next {
  border: 0;
  border-radius: 0;
  background: 0 0
}
.sce-insights__nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center
}
.sce-insights__nav li {
  margin: 0;
  width: 13px;
  height: 13px
}
.sce-insights__nav-item {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  vertical-align: top;
  background: 0 0;
  transition: background-color .3s
}
@media (min-width:768px) {
  .sce-insights {
    padding: 73px 0 140px
  }
  .sce-insights__title {
    margin-bottom: 65px
  }
  .sce-insights__panels {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 400px;
    background: rgba(0,0,0,.85)
  }
  .sce-insights__panels[data-active="0"] .sce-insights__panel:nth-child(1) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="0"] + .sce-insights__nav li:nth-child(1) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="1"] .sce-insights__panel:nth-child(2) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="1"] + .sce-insights__nav li:nth-child(2) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="2"] .sce-insights__panel:nth-child(3) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="2"] + .sce-insights__nav li:nth-child(3) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="3"] .sce-insights__panel:nth-child(4) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="3"] + .sce-insights__nav li:nth-child(4) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="4"] .sce-insights__panel:nth-child(5) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="4"] + .sce-insights__nav li:nth-child(5) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="5"] .sce-insights__panel:nth-child(6) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="5"] + .sce-insights__nav li:nth-child(6) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="6"] .sce-insights__panel:nth-child(7) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="6"] + .sce-insights__nav li:nth-child(7) button {
    background-color: #fff
  }
  .sce-insights__panels[data-active="7"] .sce-insights__panel:nth-child(8) {
    visibility: visible;
    opacity: 1;
    pointer-events: all
  }
  .sce-insights__panels[data-active="7"] + .sce-insights__nav li:nth-child(8) button {
    background-color: #fff
  }
  .sce-insights__panel {
    background: 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: visibility .3s,opacity .3s;
    visibility: hidden;
    opacity: 0;
    pointer-events: none
  }
  .sce-insights__panel-content {
    padding: 0 20px;
    display: grid;
    grid-template-rows: 2fr 1fr
  }
  .sce-insights__panel-content h3 {
    font-size: 2.375rem
  }
  .sce-insights__nav {
    display: flex;
    margin-top: 0;
    position: absolute;
    bottom: 20px;
    left: calc(50% + 15px)
  }
}
@media (min-width:992px) {
  .sce-insights__panel-content {
    padding: 0 33px 0 55px;
    grid-template-rows: 1fr 1fr
  }
  .sce-insights__nav {
    bottom: 30px;
    left: calc(50% + 50px)
  }
}
/*# sourceMappingURL=sce-insights.min.css.map */
