.kb-slider-news-container{
	display: none;
  margin: 0 auto;
  /*background-color: #eeeeee;*/
  border: 3px #556d7d solid;
  border-radius: 3px;
}

.kb-slider-news{
  display: flex;
  flex-direction: row;
  padding: 0;
}

.kb-slider-news .block-sliders{
  /*background-color: #eee;*/
  flex-basis: 66%;
  display: flex;
  align-items: center;
  position: relative;
}

.kb-slider-news .block-sliders-container{
  background-color: #dadada;
  overflow: hidden;
  width: 100%;
  
}
.kb-slider-news .block-sliders-container::before{
  content: '';
  display: block;
  padding-top: 46%;
  float: left;
}
.kb-slider-news .block-sliders-container .hide{
  display: none;
  opacity: 0;
}

.kb-slider-news .block-sliders-container .slider{
  position: relative;
  transition: all ease 1s;
}

.kb-slider-news .block-sliders-container .slider{
  width: 100%;
  overflow: hidden;
}

.kb-slider-news .block-sliders-container .slider::before{
  content: '';
  display: block;
  padding-top: 46%;
  float: left;
}

.kb-slider-news .block-sliders-container .slider img{
  /* width: 100%;
  height: auto; */
}

.kb-slider-news .block-sliders-container .slider .txt-container{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(228 244 255 / 90%);
  color: #31332f;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  padding: 15px 7px;
}

.kb-slider-news .block-headers{
  flex-basis: 34%;  
  display: flex;
  flex-direction: column;
}
.kb-slider-news .block-headers .items{
  background: rgba(216, 160, 107, 0.35);
  color: #31332F;  
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(121, 121, 121, 1);
  padding: 16px 7px;
  font-family: Roboto-Regular, sans-serif;
  font-size: 18px;
  cursor: pointer;
}

.kb-slider-news .block-headers .items p{
  padding: 0;
  margin: 0;
}

.kb-slider-news .block-headers .items:last-child{
  border-bottom: none;
}

.kb-slider-news .block-headers .items.active{
  background: rgba(250, 215, 182, 0.25);
  color: #31332f;
}

.kb-slider-news .image-container{
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.run-animation-1 {
  position: relative;
  animation: kb_slide_animation-1 .8s ease;
}

@keyframes kb_slide_animation-1 {   
  0%{
    opacity : 0;
    transform: translateX(-50%);
  }
  100%{
    opacity : 1;
    transform: translateX(0);
  }    
}

.run-animation-2 {
  position: relative;
  transform-style: preserve-3d;
  animation: kb_slide_animation-2 .8s ease;
}
@keyframes kb_slide_animation-2 {   
  0%{
    opacity : 1;
    transform: rotateX(90deg);
  }
  100%{
    opacity : 1;
    transform: rotateX(0deg);
  }    
}

.run-animation-3 {
  position: relative;
  transform-style: preserve-3d;
  animation: kb_slide_animation-3 .8s ease;
}
@keyframes kb_slide_animation-3 {   
  0%{
    opacity : 1;
    transform: rotateY(70deg);
  }
  100%{
    opacity : 1;
    transform: rotateY(0deg);
  }    
}

.run-animation-4 {
  position: relative;
  transform-style: preserve-3d;
  animation: kb_slide_animation-4 .8s ease;
}
@keyframes kb_slide_animation-4 {   
  0%{
    opacity: 0;
    transform: translate3d(80%,200px,200px);
  }
  100%{
    opacity: 1;
    transform: translate3d(0px,0px,0px);
  }    
}

.run-animation-5 {
  position: relative;
  transform-style: preserve-3d;
  animation: kb_slide_animation-5 .8s ease;
}
@keyframes kb_slide_animation-5 {   
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }    
}

@media (max-width: 768px) {  
  .kb-slider-news{
    flex-direction: column-reverse;
  }
}