@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html .RichContent {
  font-size: 16px;
  font-family: "Source Sans 3", "Montserrat", sans-serif;
}

body .RichContent {
  padding: 0;
  margin: 0;
}

.content {
  max-width: 1152px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 10px;
}
@media (min-width: 576px) {
  .content {
    padding: 0;
  }
}

.video {
  display: block;
  padding: 30px 24px;
}
@media (min-width: 576px) {
  .video {
    padding: 50px 57px;
    position: relative;
  }
}
.video__source {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video__background {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.video__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 99%;
  background: linear-gradient(90deg, #000028 0%, #00E7DB 100%);
  opacity: 0.7;
}
.video__text {
  display: block;
  z-index: 1;
}
@media (min-width: 576px) {
  .video__text {
    position: absolute;
    bottom: 15%;
    left: 10%;
  }
}
.video__title {
  position: relative;
  margin-bottom: 5%;
  font-weight: 600;
  font-size: 33px;
  line-height: 120%;
  padding-left: 25px;
  color: #000;
}
.video__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00FFB9, #00E6DC);
}
@media (min-width: 576px) {
  .video__title {
    color: #fff;
  }
}
.video__subtitle {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: #000;
}
@media (min-width: 576px) {
  .video__subtitle {
    color: #fff;
  }
}

.product-title {
  margin: 0 auto 30px;
  padding: 30px 24px;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
}
@media (min-width: 576px) {
  .product-title {
    padding: 50px 60px;
    font-size: 36px;
  }
}
.product-title__bottomNone {
  margin-bottom: 30px;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .product-title__bottomNone {
    margin-bottom: 0;
  }
}

.RichContent .productRC{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .RichContent .productRC{
    flex-direction: row;
  }
}
.product__picture {
  position: relative;
  width: 100%;
}
@media (min-width: 576px) {
  .product__picture {
    display: flex;
    justify-content: center;
    width: 50%;
    padding: 5%;
  }
}
.product__img {
  display: block;
  margin: 0 auto;
  max-width: 200px;
}
@media (min-width: 576px) {
  .product__img {
    max-width: 250px;
  }
}
.product__text {
  padding: 30px 24px;
}
@media (min-width: 576px) {
  .product__text {
    padding: 50px 57px;
    width: 50%;
  }
}
.product__title {
  position: relative;
  padding-left: 25px;
  margin: 10% 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}
.product__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00FFB9, #00E6DC);
}
.product__desc {
  font-size: 19px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1px;
}
@media (min-width: 576px) {
  .product__desc {
    font-size: 17px;
    line-height: 120%;
  }
}

.container {
  display: flex;
  padding: 50px 0;
  flex-direction: column-reverse;
  align-items: center;
  width: 100%;
}
@media (min-width: 576px) {
  .container {
    flex-direction: row;
  }
}

.image-container {
  width: 100%;
  position: relative;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .image-container {
    width: 50%;
  }
}

.image {
  margin: 0 auto;
  width: auto;
  max-height: 300px;
  display: block;
  -o-border-image: linear-gradient(to bottom, #00FFB9, #00E6DC) 1;
     border-image: linear-gradient(to bottom, #00FFB9, #00E6DC) 1;
  border-left: 10px solid;
}
@media (min-width: 340px) {
  .image {
    max-height: 325px;
  }
}

.pulse-button {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  font-size: 20px;
  border: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #009999;
  cursor: pointer;
  animation: pulse 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
  text-align: center;
}

.pulse-button:after {
  height: 15px;
  width: 3px;
}

.pulse-button:before {
  height: 3px;
  width: 15px;
}

.pulse-button:before, .pulse-button:after {
  background: #fff;
  content: "";
  cursor: pointer;
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pulse-button:nth-child(2) {
  top: 20%;
  left: 40%;
}

.pulse-button:nth-child(3) {
  top: calc(50% - 15px);
  left: 60%;
}

.pulse-button:nth-child(4) {
  bottom: 20%;
  left: 30%;
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
  }
}
.accordion-container {
  width: 100%;
  flex: 1;
}
@media (min-width: 576px) {
  .accordion-container {
    width: 50%;
  }
}

.accordion__input {
  display: none;
}

.accordion__header {
  padding: 10px;
  cursor: pointer;
}
.accordion__header::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 26px solid #009B9A;
  border-bottom: 13px solid transparent;
  position: absolute;
  margin-top: 20px;
  transform-origin: center;
  transition: all 0.25s ease-in-out;
}

.accordion__title {
  margin: 0;
  margin-left: 55px;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

.accordion__content {
  padding: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.accordion__content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
}

.accordion__input:checked ~ .accordion__header::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 25px solid #08FDB7;
  border-bottom: 13px solid transparent;
  transform-origin: center;
  transition: all 0.25s ease-in-out;
  transform: translateY(3px) rotate(90deg);
}

.accordion__input:checked ~ .accordion__content {
  max-height: 500px;
  transition: max-height 0.6s ease;
}

.slider-container {
  height: 600px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 576px) {
  .slider-container {
    height: 400px;
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 105px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .slide {
    flex-direction: row;
  }
}
.slide__picture {
  width: 100%;
}
@media (min-width: 576px) {
  .slide__picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
  }
}

.slide-img {
  width: 100%;
  height: auto;
}
@media (min-width: 576px) {
  .slide-img {
    max-height: 350px;
    width: auto;
  }
}

.slide-container {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 576px) {
  .slide-container {
    padding: 0;
    width: 50%;
  }
}

.slide__title {
  position: relative;
  padding-left: 25px;
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
}
.slide__title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00FFB9, #00E6DC);
}

.slide__text {
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
}

input:checked + .slide {
  opacity: 1;
}

.bullet-axis {
  position: absolute;
  width: 100%;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 420px) {
  .bullet-axis {
    bottom: 5px;
  }
}
@media (min-width: 576px) {
  .bullet-axis {
    bottom: 10px;
  }
}

.bullet {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 5px solid #fff;
  outline: 5px solid #00FFB9;
  margin: 0 5px;
  cursor: pointer;
}

.bullet:nth-child(3) {
  outline: 5px solid #00E6DC;
}

#slide1:checked ~ .bullet-axis .bullet:nth-child(1),
#slide2:checked ~ .bullet-axis .bullet:nth-child(2),
#slide3:checked ~ .bullet-axis .bullet:nth-child(3) {
  padding: -25px;
  background: #00FFB9;
  border: 5px solid #fff;
  outline: 5px solid #00FFB9;
}

#slide2:checked ~ .bullet-axis .bullet:nth-child(2) {
  background: linear-gradient(to right, #00FFB9, #00E6DC);
  border: 5px solid #fff;
}

#slide3:checked ~ .bullet-axis .bullet:nth-child(3) {
  background: #00E6DC;
  border: 5px solid #fff;
  outline: 5px solid #00E6DC;
}

.slider-container input[type=radio] {
  display: none;
}

.strip {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
  width: 70%;
  z-index: -1;
  background: linear-gradient(to right, #00FFB9, #00E6DC);
}

.bullet-subtitles {
  visibility: hidden;
  display: none;
}
@media (min-width: 576px) {
  .bullet-subtitles {
    visibility: visible;
    display: flex;
    text-align: center;
    padding-bottom: 50px;
  }
}
.bullet-subtitles h2 {
  position: relative;
  font-size: 20px;
  line-height: 120%;
  font-style: normal;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 576px) {
  .bullet-subtitles h2 {
    padding: 0 25px;
  }
}

.footer {
  height: 358px;
  background-image: url("rozlacznik-5TE2/asset/bottom.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom 0px right 0px;
}
@media (min-width: 576px) {
  .footer {
    margin-top: 100px;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .footer__content {
    height: 100%;
    justify-content: center;
    margin-top: 0px;
  }
}
.footer__strip {
  height: 20px;
  width: 100%;
  background: linear-gradient(to right, #00FFB9, #00E6DC);
}
.footer__title {
  position: relative;
  padding-left: 25px;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
}
@media (min-width: 576px) {
  .footer__title {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 120%;
  }
}
.footer__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #00FFB9, #00E6DC);
}

.sliderWT {
  overflow: hidden;
  position: relative;
}
@media (min-width: 576px) {
  .sliderWT {
    margin-top: 50px;
  }
}

.sliderWT .slidesWT {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.sliderWT .slidesWT .slideWT {
  width: 25%;
  display: flex;
  flex-direction: column;
}

.sliderWT .controls {
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .sliderWT .controls {
    top: 85%;
  }
}

.controls label {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 26px solid #009B9A;
  border-bottom: 13px solid transparent;
  position: absolute;
  margin-top: 15px;
  cursor: pointer;
}

#slide1WT:checked ~ .slidesWT {
  transform: translateX(0);
}

#slide1WT:checked ~ .controls #slideWT1 {
  display: none;
  visibility: hidden;
}

#slide1WT:checked ~ .controls #slideWT3 {
  left: 0;
  transform: rotate(180deg);
}

#slide1WT:checked ~ .controls #slideWT2 {
  position: absolute;
  right: 0;
}

#slide2WT:checked ~ .slidesWT {
  transform: translateX(-25%);
}

#slide2WT:checked ~ .controls #slideWT2 {
  display: none;
  visibility: hidden;
}

#slide2WT:checked ~ .controls #slideWT1 {
  left: 0;
  transform: rotate(180deg);
}

#slide2WT:checked ~ .controls #slideWT3 {
  position: absolute;
  right: 0;
}

#slide3WT:checked ~ .slidesWT {
  transform: translateX(-50%);
}

#slide3WT:checked ~ .controls #slideWT2 {
  left: 0;
  transform: rotate(180deg);
}

#slide3WT:checked ~ .controls #slideWT1 {
  position: absolute;
  right: 0;
}

#slide3WT:checked ~ .controls #slideWT3 {
  display: none;
  visibility: hidden;
}

.sliderWT input {
  visibility: hidden;
}

.slideWT__textContent {
  padding: 0 15%;
}

.slideWT__h2 {
  padding: 25px 0;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}
@media (min-width: 576px) {
  .slideWT__h2 {
    padding-top: 50px;
  }
}

.slideWT__text {
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  letter-spacing: 1px;
}

.slideWT__img {
  display: flex;
}
.slideWT__img img {
  width: 100%;
  height: 100%;
}

.slideWT__picture {
  width: 100%;
  height: 100%;
}

.slideWT__strip {
  height: 100%;
  width: 5px;
  background: linear-gradient(to top, #00FFB9, #00E6DC);
}/*# sourceMappingURL=style.css.map */