section.block.block-slideshow {
  padding: 80px 0px;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow {
    padding: 0px;
  }
}
section.block.block-slideshow .container .header {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .header {
    margin-bottom: var(--spacing-xl);
    text-align: left;
    padding-left: 20px;
    border-left: 2px solid var(--secondary);
  }
}
section.block.block-slideshow .container .header .label {
  color: var(--secondary);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .header .label {
    margin-bottom: var(--spacing-xs);
  }
}
section.block.block-slideshow .container .header h2 {
  margin: 0px;
}
section.block.block-slideshow .container .slideshow {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .slideshow {
    flex-direction: column;
    gap: var(--spacing-s);
  }
}
section.block.block-slideshow .container .slideshow .images {
  width: calc(50% - 25px);
  height: 430px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .slideshow .images {
    width: 100%;
    height: 200px;
  }
}
section.block.block-slideshow .container .slideshow .images .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
section.block.block-slideshow .container .slideshow .images .image.active {
  opacity: 1;
}
section.block.block-slideshow .container .slideshow .images .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.block.block-slideshow .container .slideshow .texts {
  width: calc(50% - 25px);
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .slideshow .texts {
    width: 100%;
  }
}
section.block.block-slideshow .container .slideshow .texts .text {
  padding: 30px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  background-color: var(--background);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .slideshow .texts .text {
    margin-bottom: var(--spacing-s);
    background-color: #222;
  }
}
section.block.block-slideshow .container .slideshow .texts .text.active {
  background-color: #222;
}
section.block.block-slideshow .container .slideshow .texts .text .title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  section.block.block-slideshow .container .slideshow .texts .text .title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 9px;
    font-weight: 700;
  }
}
section.block.block-slideshow .container .slideshow .texts .text p {
  margin: 0px;
  color: var(--color-text-light);
  font-weight: 400;
}