@import url("https://lp.al.to/libs/fonts/CentraleSans.css");

html,
body {
  position: relative;
  scroll-behavior: smooth;
  font-size: 14px;
  font-family: "CentraleSansRnd", sans-serif;
  color: #3b3b3b;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #fdefff;
}

/* Animations */
/* GSAP */
.fade-in,
.fade-in-delay,
.fade-up,
.fade-up-delay,
.fade-in-right,
.fade-in-right-delay,
.fade-in-left,
.fade-in-left-delay,
.fade-down,
.fade-down-delay {
  opacity: 0;
  will-change: opacity;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-up,
.fade-up-delay {
  will-change: transform;
  transform: translateY(20px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-down,
.fade-down-delay {
  will-change: transform;
  transform: translateY(-20px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-right,
.fade-in-right-delay {
  will-change: transform;
  transform: translateX(-20px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.fade-in-left,
.fade-in-left-delay {
  will-change: transform;
  transform: translateX(20px);
  /* animation distance */
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.scale-in {
  will-change: transform;
  transform: scale(0.5);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  opacity: 0;
}

h5 {
  color: rgb(150, 35, 142);
}

.bg {
  overflow-x: hidden;
  padding-bottom: 0px;
}

.nobr {
  white-space: nowrap;
}

#main {
  padding-top: 00px;
  overflow: hidden;
}

h2 {
  text-align: center;
  font-size: 1.5rem;
  padding: 0 15px;
  color: #2a2a2a;
  margin-bottom: 40px;
}

@media screen and (min-width: 576px) {
  h2 {
    font-size: 1.8rem;
  }
}

.top-bg {
  background: url("../img/top-bg.png");
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100vw;
  margin: 0 auto;
  height: 700px;
  position: relative;
}

@media screen and (min-width: 576px) {
  .top-bg {
    height: 700px;
  }
}

.top {
  position: relative;
  overflow-y: visible;
  border-radius: 0 0 16px 16px;
  max-width: 1920px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  z-index: 30;
  display: flex;
  align-items: flex-start;
  padding-top: 140px;
}

@media screen and (min-width: 576px) {
  .top {
    height: 600px;
    align-items: center;
    padding-top: 0;
  }
}

.blob {
  width: 400px;
  height: 500px;
  background: #96238e;
  animation: blobMove 8s linear infinite;
  transform: rotate(90deg);
  position: absolute;
  z-index: 9;
  margin: 0 auto;
  top: 270px;
  left: -40px;
  right: 0;
  width: 230px;
  height: 330px;
}

@media screen and (min-width: 561px) {
  .blob {
    top: 250px;
    left: 54vw;
    width: 250px;
    height: 350px;
  }
}

@media screen and (min-width: 753px) {
  .blob {
    top: 250px;
    left: 38vw;
    width: 250px;
    height: 350px;
  }
}

@media screen and (min-width: 977px) {
  .blob {
    top: 60px;
    left: 68vw;
  }
}

@media screen and (min-width: 1185px) {
  .blob {
    top: 60px;
    left: 52vw;
    width: 400px;
    height: 450px;
  }
}

@keyframes blobMove {
  0% {
    border-radius: 39% 61% 58% 42% / 51% 32% 68% 49%;
  }

  25% {
    border-radius: 61% 39% 35% 65% / 23% 56% 44% 77%;
  }

  50% {
    border-radius: 68% 32% 71% 29% / 48% 54% 46% 52%;
    transform: rotate(30deg);
  }

  75% {
    border-radius: 47% 53% 58% 42% / 47% 43% 57% 53%;
  }

  100% {
    border-radius: 39% 61% 58% 42% / 51% 32% 68% 49%;
  }
}

.top__image {
  position: absolute;
  z-index: 10;
  top: 60%;
  left: 0;
  right: 0;
  width: 80%;
  object-fit: cover;
  margin: 0 auto;
  z-index: -1;
}

@media screen and (min-width: 576px) {
  .top__image {
    left: 24%;
    top: 50%;
    max-height: 70%;
    object-fit: contain;
  }
}

@media screen and (min-width: 768px) {
  .top__image {
    left: 40%;
    max-height: 80%;
    top: 28%;
  }
}

@media screen and (min-width: 992px) {
  .top__image {
    top: 60%;
    transform: translateY(-50%);
    left: 40%;
    max-height: 100%;
  }

  @media screen and (min-width: 1200px) {
    .top__image {
      left: 30%;
      max-height: 100%;
    }
  }
}

.top-bird {
  position: absolute;
  left: -30px;
  bottom: -220px;
  transform: rotateY(180deg);
  pointer-events: none;
  user-select: none;
  width: 200px !important;
  height: 200px !important;
}

@media screen and (min-width: 576px) {
  .top-bird {
    width: 300px !important;
    height: 300px !important;
    bottom: -180px;
  }
}

@media screen and (min-width: 768px) {
  .top-bird {
    width: 300px !important;
    height: 300px !important;
    bottom: -100px;
  }
}

.top__wrapper {
  border-radius: 0 0 16px 16px;
  height: auto;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {
  .top__wrapper {
  }
}

.top__copy {
  display: flex;
}

@media screen and (min-width: 576px) {
  .top__copy {
    margin-top: -80px;
  }
}

@media screen and (min-width: 768px) {
  .top__copy {
    margin-top: 0;
  }
}

.top__copy h2 {
  font-weight: 200;
  font-size: 1.2rem;
  color: #202020;
  margin-bottom: 10px;
}

@media screen and (min-width: 576px) {
  .top__copy h2 {
    font-size: 1.6rem;
  }
}

.top__copy--center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #202020;
}

@media screen and (max-width: 576px) {
  .top__copy--center h2 {
    font-size: 18px;
  }

  .top__copy--center h1 {
    font-size: 24px;
  }
}

.top__copy--left {
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #202020;
}

@media screen and (min-width: 576px) {
  .top__copy--left {
    align-items: flex-start;
    text-align: left;
  }
}

@media screen and (max-width: 576px) {
  .naglowek-1 {
    padding-top: 60px;
  }
}

h1 {
  font-size: 1.4rem;
  color: #202020;
  font-weight: 200;
  margin-bottom: 20px;
}

@media screen and (min-width: 576px) {
  h1 {
    font-size: 1.8rem;
  }
}

img {
  max-width: 100%;
  max-height: auto;
}

.container {
  overflow: visible;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

.content {
  max-width: 1600px;
  margin: auto;
  min-height: 1200px;
}

.ona {
  background: url(../img/dla-niej2.png) center center no-repeat;
  background-size: contain;
  text-align: center;
}

.on {
  background: url(../img/dla-niego2.png) center center no-repeat;
  background-size: contain;
  text-align: center;
}

.ona a {
  color: #fff;
  font-size: 1.5rem;
}

.on a {
  color: #fff;
  font-size: 1.5rem;
}

.button {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  height: 224px;
  padding: 0%;
}

.cnt01 {
  padding: 0px;
  text-align: center;
  max-width: 1140px;
}

.cnt02 {
  padding: 0px;
  text-align: center;
  max-width: 1140px;
}

.cta-blue {
  background: #00b1ed;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 2;
  border: 1px solid transparent;
}

.cta-blue:hover {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  background: unset;
}

.footer {
  padding: 50px 20px;
  position: absolute;
  bottom: 0;
  height: 500px;
  width: 100%;
}

.footer p {
  padding: 0px 20px;
  font-size: 14px;
}

.footer a {
  color: #000;
  font-weight: 600;
}

.maxhdn {
  display: none;
}

.minhdn {
  display: block;
}

.product-block {
  display: block;
  width: 60%;
  margin-left: 40%;
  background: rgb(226, 226, 226);
  background: linear-gradient(
    90deg,
    rgba(226, 226, 226, 1) 0%,
    rgba(255, 255, 255, 1) 39%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 10px;
}

.spacing {
  margin: 50px 0;
}

.product-img {
  position: absolute;
  width: 50%;
  left: 50px;
  height: auto;
}

.product-block .desc {
  text-align: left;
  padding: 30px 20px 30px 80px;
}

.product-block .desc h2 {
  font-size: 18px;
}

.product-block .desc ul {
  list-style-type: none;
  padding: 0px 10px;
}

.product-block .desc li {
  font-size: 14px;
  color: gray;
}

.product-block .desc span {
  font-size: 20px;
  font-weight: 500;
}

.product-block .desc span:first-child {
  font-size: 16px;
  color: silver;
  text-decoration: line-through;
  padding-right: 10px;
}

.desc ul {
  padding-top: 18px;
  color: #001884;
  position: relative;
  list-style: none;
  padding-left: 6px;
}

.desc ul li:before {
  content: "+";
  position: absolute;
  left: 0;
  color: #96238e;
}

@media (max-width: 768px) {
  .az1 {
    margin-top: 80px;
  }

  .ala1,
  .tola1 {
    display: none;
  }

  .maxhdn {
    display: block;
  }

  .minhdn {
    display: none;
  }
}

@media (max-width: 1200px) {
  .product-block .desc {
    padding: 30px 20px 30px 90px;
  }
}

@media (max-width: 991px) {
  .spacing {
    margin: 0;
  }

  .product-block {
    position: static;
    display: block;
    width: 100%;
    margin: -60px 0 0 0;
  }

  .product-img {
    position: static;
    display: block;
    width: 100%;
    height: auto;
  }

  .product-block .desc {
    text-align: center;
    padding: 50px 20px 20px 20px;
  }

  .desc ul {
    padding-top: 18px;
    color: #001884;
    position: relative;
    list-style: none;
    padding-left: 6px;
  }

  .desc ul li:before {
    content: "";
    position: absolute;
    left: 0;
    color: #96238e;
  }

  .button {
    text-align: center;
    height: 184px;
    padding: 0%;
  }
}

@media (max-width: 500px) {
  .ona a,
  .on a {
    font-size: 14px;
  }
}

.cta-violet {
  background: #96238e;
  display: inline-block;
  font-size: 16px;
  color: #fff !important;
  padding: 10px 30px;
  transition: all 0.5s;
  border-radius: 2px;
  border: 2px solid #96238e;
  text-decoration: none;
  outline: 0;
  cursor: pointer;
}

.cta-violet:hover {
  background: #5c1657;
  text-decoration: none;
}

.products {
  position: relative;
  margin-top: 100px;
}

.wave-1 {
  position: absolute;
  bottom: 0;
}

.wave-3 {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -10;
}

.wave-2 {
  transform: rotate(180deg);
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -10;
}

.naglowek-1 {
  padding-bottom: 50px;
}

@media screen and (min-width: 1024px) {
  .products .products-carousel {
    left: 30px;
  }
}

.products .products-carousel {
  width: calc(100% - 60px);
  position: relative;
}

@media (max-width: 1024px) {
  .products .products-carousel {
    margin: 0 30px;
  }
}

.products .products-carousel2 {
  width: calc(100% - 60px);
  position: relative;
}

@media (max-width: 1024px) {
  .products .products-carousel2 {
    margin: 0 30px;
  }
}

.products .products-carousel .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(100% + 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  left: -60px;
  z-index: 0;
}

.products .products-carousel2 .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: calc(100% + 120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  left: -60px;
  z-index: 0;
}

.products .products-carousel .owl-nav button {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #96238e;
  color: #fff !important;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
}

.products .products-carousel .owl-nav button:focus {
  outline: none;
}

.products .products-carousel2 .owl-nav button {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#96238e),
    to(#6d1867)
  ) !important;
  background: linear-gradient(90deg, #96238e 0%, #6d1867 100%) !important;
  color: #fff !important;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
}

.products .products-carousel .owl-nav button.owl-prev {
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 2px;
}

.products .products-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 2px;
}

.products .products-carousel .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(254, 237, 226, 0.8) 80%
  );
  border-radius: 20px;
  padding: 20px;
}

.products .products-carousel2 .owl-nav button.owl-prev {
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 0;
}

.products .products-carousel2 .owl-nav button.owl-next {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
}

.products .products-carousel2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  border-radius: 3px;
}

.products .products-carousel .item a {
  text-decoration: none;
}

.products .products-carousel .item a .thumb {
  position: relative;
  width: 100%;
}

.products .products-carousel .item a .thumb img {
  width: 100%;
  padding: 0;
  height: auto;
  max-height: 280px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.products .products-carousel .item a h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #3b3b3b;
  min-height: 64px;
  padding: 0 6px;
  margin-top: 20px;
  font-weight: 600;
}

.products .products-carousel2 .item a {
  text-decoration: none;
}

.products .products-carousel2 .item a .thumb {
  position: relative;
  width: 100%;
}

.products .products-carousel2 .item a .thumb img {
  width: 100%;
  height: auto;
  max-height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
}

.products .products-carousel2 .item a h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: #202020;
  height: 60px;
  padding: 0 6px;
}

.products .products-carousel .item a .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;

  color: #202020;
}

.price-wrapper {
  margin-bottom: 40px;
}

.old-price {
  color: #000;
  opacity: 0.6;
  margin-left: 10px;
  text-decoration: line-through;
}

.products .products-carousel .item a .cta {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
}

.products .products-carousel2 .item a .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 40px;
  color: #202020;
}

.products .products-carousel2 .item a .cta {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
}

.products .products-carousel.owl-carousel .owl-stage {
  display: flex;
}

.products .products-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.products .products-carousel.owl-carousel .owl-stage-outer .owl-item {
  opacity: 0.1;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  -webkit-transition-delay: 50ms;
  transition-delay: 50ms;
  margin-right: 0;
}

.products .products-carousel.owl-carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.products .more-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
}

.listing {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.listing__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* justify-content: center; */
  text-decoration: none;
  color: #fff;
  margin: 30px 0;
}

@media screen and (min-width: 768px) {
  .listing__item {
    margin-bottom: 0;
    margin: 50px 0;
  }
}

.listing__item-image-wrapper {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 15px 15px 0 15px;
}

.listing__item-image-wrapper .button {
  width: 50px;
  height: 50px;
  background: #96238e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -26px;
}

button.owl-prev.disabled,
button.owl-next.disabled {
  filter: grayscale(0.6);
  opacity: 0.5;
}

.listing__item-image-wrapper2 {
  height: 264px;
  width: 330px;
}

@media screen and (max-width: 1080px) {
  .listing__item-image-wrapper2 {
    height: 264px;
    width: 330px;
    margin: 0 15px;
  }

  .img-5 {
    background-image: url("../img/poradnik-1.png");
    background-size: contain;
  }

  .img-6 {
    background-image: url("../img/poradnik-2.png?v=1.1");
    background-size: contain;
  }

  .img-7 {
    background-image: url("../img/poradnik-3.png?v=1.1");
    background-size: contain;
  }

  .img-8 {
    background-image: url("../img/poradnik-4.png?v=1.1");
    background-size: contain;
  }

  .img-9 {
    background-image: url("../img/poradnik-5.png?v=1.1");
    background-size: contain;
  }

  .img-10 {
    background-image: url("../img/poradnik-6.png");
    background-size: contain;
  }

  .img-11 {
    background-image: url("../img/poradnik-7.png");
    background-size: contain;
  }
}

@media screen and (max-width: 768px) {
  .listing__item-image-wrapper {
    height: 100%;
    width: 100%;
  }
}

.img-1 {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(8, 10, 33, 0) 90%
    ),
    url("../img/img-1.png"),
    linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(8, 10, 33, 0) 60%);
  background-size: cover;
  background-position: 30% 50%;
  background-repeat: no-repeat;
  min-height: 300px;
}

.img-2 {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(8, 10, 33, 0) 90%
    ),
    url("../img/img-2.png?v=2.0");
  background-size: cover;
  background-position: 10% 50%;
  background-repeat: no-repeat;
  min-height: 300px;
}

.img-3 {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(8, 10, 33, 0) 90%
    ),
    url("../img/img-3.jpg");
  background-size: cover;
  background-position: 10% 50%;
  background-repeat: no-repeat;
  min-height: 300px;
}

.img-4 {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(8, 10, 33, 0) 90%
    ),
    url("../img/img-4.jpg");
  background-size: cover;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  min-height: 300px;
}

.img-5 {
  background-image: url("../img/poradnik-1.png?v=1.1");
  background-size: contain;
}

.img-6 {
  background-image: url("../img/poradnik-2.png?v=1.1");
  background-size: contain;
}

.img-7 {
  background-image: url("../img/poradnik-3.png?v=1.1");
  background-size: contain;
}

.img-8 {
  background-image: url("../img/poradnik-4.png?v=1.1");
  background-size: contain;
}

.img-9 {
  background-image: url("../img/poradnik-5.png?v=1.1");
  background-size: contain;
}

.img-10 {
  background-image: url("../img/poradnik-6.png");
  background-size: contain;
}

.img-11 {
  background-image: url("../img/poradnik-7.png");
  background-size: contain;
}

.listing__item img {
  height: 100%;
}

.listing__item:hover {
  text-decoration: none;
  color: #fff;
}

.listing__item h4 {
  font-size: 22px;
  font-weight: 400;

  font-weight: 600;
}

.listing__item h5 {
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.listing__item button {
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00b1ed),
    to(#0083af)
  ) !important;
  background: linear-gradient(90deg, #00b1ed 0%, #0083af 100%) !important;
  color: #fff !important;
  border-radius: 0;
  -webkit-box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  box-shadow: 0px 0px 70px 10px rgba(100, 100, 100, 0.1);
  border: none;
}

.listing__item button:hover {
  text-decoration: none;
  background: none !important;
  border: 1px solid #fff;
}

.listing .more {
  margin-top: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spider {
  position: absolute;
  top: 0;
  left: 40%;
  animation: hang 2s ease-in-out infinite alternate;
}

.spider img {
  height: auto;
  width: 100px;
}

.gfx-ghost {
  animation: hangSwing 3s ease-in-out infinite alternate;
}

.gfx-bat {
  animation: fly 9s ease-in-out infinite forwards;
  animation-delay: 0.3s;
}

.gfx-bat2 {
  animation: hang2 6s ease-in-out infinite alternate;
  animation-delay: 0.3s;
}

@keyframes shoot {
  0% {
    opacity: 0;
    left: 0;
    transform: scale(0);
  }

  4% {
    opacity: 0.7;

    transform: scale(0.2);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes hang {
  from {
    top: -60px;
  }

  to {
    top: 0;
  }
}

@keyframes hang2 {
  from {
    left: 46%;
    top: 830px;
    transform: rotate(0);
  }

  to {
    left: 36%;
    top: 700px;
    transform: rotate(10deg);
  }
}

@keyframes fly {
  0% {
    left: 84%;
    top: 200px;
    transform: rotate(360deg);
  }

  25% {
    left: 60%;
    top: 100px;
    transform: rotate(280deg);
  }

  75% {
    left: 100%;
    top: 100px;
    transform: rotate(360deg);
  }

  100% {
    left: 84%;
    top: 200px;
    transform: rotate(0);
  }
}

@keyframes hangSwing {
  0% {
    top: 160px;
    left: -100px;
    transform: rotate(-10deg);
  }

  100% {
    top: 60px;
    left: -200px;
    transform: rotate(0deg);
  }
}

.kroki {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 60px rgba(255, 194, 215, 0.3);
  border-radius: 20px;
  color: #000;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 60px auto 0 auto;
  overflow: visible;
}

.kroki h2 {
  margin-bottom: 24px;
}

.kroki img {
  margin-bottom: 20px;
}

.kroki p {
  margin-bottom: 30px;
  font-weight: 400;

  color: #303030;
}

@media screen and (min-width: 768px) {
  .kroki p {
    margin-bottom: 0;
  }
}

.steps__item-coupon {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px dashed #96238e;
  color: #96238e;
  line-height: 100%;
  font-weight: 400;
  height: 50px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  padding: 0 26px;
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin-bottom: 14px;
  white-space: nowrap;
}

.step-icon {
  border-radius: 6px;
  border: 2px solid #96238e;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon span {
  font-size: 26px;
  color: #96238e;
  font-family: "CentraleSansRnd", sans-serif;
  font-weight: 400;
  position: relative;
  top: 2px;
}

.main {
  margin-top: 100px;
  position: relative;
}

.main .col-md-5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .main .row {
    margin-bottom: 60px;
  }
}

.main__card {
  box-shadow: 0 0 60px rgba(255, 194, 215, 0);
  background: rgba(255, 255, 255, 0.3);
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
  transition: 0.5s;
  transition-delay: 0.1s;
  justify-content: center;
  flex-direction: row;
  height: 80vw;
  width: 80vw;
  max-width: 320px;
  max-height: 320px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 576px) {
  @media screen and (min-width: 992px) {
    .main__card {
      margin-bottom: 80px;
    }
  }
}

.main__card#intersection {
  background: url("../img/card-bg.jpg") no-repeat;
  background-size: cover;
  padding: 0;
  min-height: 300px;
}

.main__photo {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 10%,
    #e2fff7 60%
  );
  transition: 0.6s;
  z-index: -1;
}

.main a {
  text-decoration: none;
  color: unset;
}

.main__card .cta {
  position: absolute;
  bottom: -10px;
  left: 50%;
  font-size: 1rem;
  transform: translateX(-50%);
  user-select: none;
  padding: 8px 22px;
}

.main__card:hover > .main__photo {
  transform: scale(0);
}

.main__card:hover {
  background: rgba(255, 255, 255, 0.8);
}

.main__card:hover > img {
  transform: translateX(-50%) scale(1.05);
}

.main__card img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 1;
  object-fit: contain;
  height: 80%;
  transition: 0.6s;
  opacity: 0.9;
  user-select: none;
  pointer-events: none;
}

.main__card #kaski {
  height: 68%;
}

@media screen and (min-width: 576px) {
  .main__card #kaski {
    height: 94%;
    left: -60px;
    bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .main__card #kaski {
    left: 20px;
  }
}

@media screen and (min-width: 992px) {
  .main__card #kaski {
    height: 82%;
    left: -20px;
    bottom: -20px;
  }
}

.main__card #kaski {
  height: 98%;
  left: -20px;
}

.main__card h2 {
  margin-top: 30px;
  font-size: 1.5rem;
}

.main__copy {
  width: 100%;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 400px) {
  .main__copy {
    padding: 40px;
  }
}

@media screen and (min-width: 576px) {
  .main__copy {
    width: 50%;
    padding: 20px 20px 20px 0;
  }
}

@media screen and (min-width: 1200px) {
  .main__copy {
    padding: 20px 20px 20px 8px;
  }
}

.main__copy span.series {
  font-weight: 200;
  color: #8f8f8f;
  font-size: 15px;
}

.main__copy#last {
  padding: 30px;
  width: 100%;
}

@media screen and (min-width: 400px) {
  .main__copy#last {
    padding: 40px;
  }
}

.main__listing {
  margin-top: 20px;
  font-size: 15px;
}

.main__listing p::before {
  content: "+";
  color: #96238e;
  font-weight: 600;
  margin-left: -8px;
  position: relative;
  left: -6px;
}

.main__card-img {
  max-width: unset;
  height: 80%;
  max-height: 200px;
  object-fit: contain;
  position: relative;
  bottom: -60px;
  max-width: 90%;
}

.main__card-img-2 {
  max-height: 300px;
}

@media screen and (min-width: 768px) {
  .main__card-img {
    max-width: 200%;
    max-height: unset;
    height: unset;
    bottom: unset;
  }

  .main__card-img-2 {
    left: -200px;
  }

  .main__card-img-3 {
    max-height: 300px;
  }
}

@media screen and (min-width: 992px) {
  .main__card-img {
    width: unset;
    max-width: unset;
    max-height: 80%;
  }

  .main__card-img-2 {
    left: -100px;
    max-height: 400px;
  }

  .main__card-img-3 {
    max-height: 300px;
    left: 60px;
  }
}

@media screen and (min-width: 1200px) {
  .main__card-img {
    left: -60px;
  }

  .main__card-img-2 {
    left: -100px;
    max-height: 400px;
  }

  .main__card-img-3 {
    left: 0;
  }
}

.main__card p {
  font-weight: 200;
  line-height: 1.5;
}

.banner {
  position: relative;
}

@media screen and (min-width: 992px) {
  .banner {
    margin-top: 60px;
  }
}

.banner__card {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 60px rgba(255, 194, 215, 0.3);
  border-radius: 20px;
  width: 100%;
  position: relative;

  padding: 40px;
  padding-top: 60px;
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .banner__card {
    padding: 40px;
    flex-direction: row;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
  }
}

.banner__card h4 {
  margin-bottom: 0;
  color: #96238e;
}

.banner__copy {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .banner__copy {
    text-align: start;
  }
}

.banner__card img {
  height: 50px;
  width: 50px;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .banner__card img {
    margin-bottom: 0;
    margin-right: 40px;
  }
}

@media screen and (min-width: 992px) {
  .banner__card img {
    height: 80px;
    width: 80px;
  }
}

.banner__card p {
  font-weight: 300;
}

.banner__card a {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
}

.banner__scoot {
  object-fit: contain;
  max-width: 100%;
  position: relative;
  top: 50px;
}

@media screen and (min-width: 768px) {
  .banner__scoot {
    height: 60%;
    max-width: unset;
    top: 40%;
    transform: translateY(-50%);
    left: -100px;
  }
}

@media screen and (min-width: 992px) {
  .banner__scoot {
    height: 90%;
    max-width: unset;
    left: -120px;
  }
}

.banner-2 {
  /*  margin-top: 60px; */
}

.banner-2__wrapper {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 60px rgba(255, 194, 215, 0.3);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .banner-2__wrapper {
    flex-direction: row;
    max-height: 160px;
  }
}

.banner-2 img {
  max-width: unset;
}

@media screen and (min-width: 768px) {
  .banner-2 img {
    align-self: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .banner-2 .cta {
    margin-left: auto;
  }
}

#diglet {
  height: 160px !important;
  margin-bottom: 30px;
}

.banner-2 h4 {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .banner-2 h4 {
    text-align: start;
    padding-right: 60px;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .banner-2 a {
    margin-right: 40px;
  }
}

.gallery {
  margin: 80px 0;
  z-index: 1;
  position: relative;
  margin-bottom: 180px;
}

footer {
  position: relative;
  z-index: 1;
}

.gallery__item img {
  border-radius: 20px;
  height: 260px;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  object-position: top;
  margin: 20px 0;
  box-shadow: 0 0 60px rgba(255, 194, 215, 0.3);
}

.gfx {
  position: absolute;
}

.gfx.butterfly {
  left: 86%;
  top: 30%;
}

.gfx.butterfly-2 {
  right: 86%;
  top: 70%;
}

.gfx.flower {
  right: 86%;
  bottom: -10%;
}

.gfx.flower-2 {
  left: 82%;
}

.bg-2 {
  background-image: url("../img/bg-2.png");
  background-size: cover;
  overflow: hidden;
}

/* products & slider */
.slider .products .tns-item .products__item {
  max-width: 300px;
  background-size: cover;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
  min-height: 400px;
  color: #fff;
  border-radius: 20px;
  background-repeat: no-repeat;
  margin: 0 auto;

  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .slider .products .tns-item .products__item {
    max-width: unset;
  }
}

.slider .products .tns-item .products__item h4 {
  padding: 0 20px 20px 20px;
}

.slider .products .tns-item:first-child .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner6.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner6.jpg");
}

.slider .products .tns-item:nth-child(2) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner4.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner4.jpg");
}

.slider .products .tns-item:nth-child(3) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner5.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner5.jpg");
}

.slider .products .tns-item:nth-child(4) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner2.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner2.jpg");
}

.slider .products .tns-item:nth-child(5) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner1.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner1.jpg");
}

.slider .products .tns-item:nth-child(6) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner3.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner3.jpg");
}

.slider .products .tns-item:nth-child(7) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner1.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner1.jpg");
}

.slider .products .tns-item:nth-child(8) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner1.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner1.jpg");
}

.slider .products .tns-item:nth-child(9) .products__item {
  background-image: -webkit-gradient(
      linear,
      left bottom,
      left top,
      color-stop(10%, #00b1ed),
      color-stop(70%, transparent)
    ),
    url("../img/baner1.jpg");
  background-image: linear-gradient(0deg, #00b1ed 10%, transparent 70%),
    url("../img/baner1.jpg");
}

.products {
  margin-top: 40px;
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 24px 30px 30px 30px;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  font-size: 0.9rem;
  max-width: 400px;
}

@media screen and (min-width: 660px) {
  .products__item {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .products__item {
    max-width: 340px;
  }
}

@media (min-width: 576px) {
  .products__item:hover .products__item-image img {
    -webkit-transform: scale(1.05) translateY(-6px);
    transform: scale(1.05) translateY(-6px);
    -webkit-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
  }

  .products__item:hover .products__item-bg {
    background-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(67, 233, 123, 0.2)),
      to(rgba(56, 249, 215, 0.2))
    );
    background-image: linear-gradient(
      to right,
      rgba(67, 233, 123, 0.2) 0%,
      rgba(56, 249, 215, 0.2) 100%
    );
  }
}

.products__item-bg {
  position: absolute;
  background: #fff;
  width: 100%;
  height: 56%;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
}

.products__item-bg .leaf {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.products__item-bg .leaf-1 {
  top: -60px;
  left: 60px;
  -webkit-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
}

.products__item-bg .leaf-2 {
  top: -60px;
  width: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
}

.products__item-bg .leaf-3 {
  width: 150px;
  top: -60px;
  right: 0;
  -webkit-transform: rotate(-30deg) scale(0);
  transform: rotate(-30deg) scale(0);
}

.products__item-badge {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4d4d;
  border: 1px solid #cccccc;
  border-radius: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 12px;
  font-size: 14px;
  vertical-align: baseline;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: absolute;
}

.products__item-image {
  margin-top: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.products__item-image img {
  max-width: 100%;
  max-height: 86%;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.products__item h4 {
  margin-bottom: 8px;
  text-align: center;
  margin-top: -30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.products__item svg {
  position: relative;
  top: -2px;
  margin-left: -4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}

.products__item img,
.products__item h4 {
  position: relative;
}

.products__item-rating {
  margin-bottom: 10px;
}

.products__item ul {
  list-style-type: none;
  list-style-position: outside;
  padding-left: 0;
  margin-bottom: 20px;
}

.products__item ul li {
  margin-bottom: 0px;
  font-weight: 200;
  color: #4d4d4d;
}

.products__item ul li strong {
  color: #000;
  font-weight: 400;
}

.products__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 24px;
  width: 100%;
  margin-top: auto;
}

.products__item-footer-button {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.products__item-footer-button svg path {
  pointer-events: none;
}

.products__item-footer-button svg rect {
  fill: #96238e;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  height: 40px;
  width: 40px;
}

.products__item-footer-button svg rect:hover {
  fill: #6d1967;
}

.products__item-footer-button svg rect:active {
  fill: #431040;
}

.products__item-footer-cart {
  height: 24px;
  width: 24px;
}

.products__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.products__item-price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 300;
  margin-left: 10px;
}

.products__item-price .new-price {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Slider */
.slider__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: translate3d;
}

.slider {
  margin-bottom: 0;
  margin: 0 auto;
  max-width: 1300px;
}

.tns-ovh {
  overflow: visible;
}

.slider__nav {
  display: none;
}

@media screen and (min-width: 600px) {
  .slider__nav {
    display: block;
  }
}

.slider__nav button {
  height: 40px;
  width: 46px;
  border: none;
  margin: 0 20px;
}

@media screen and (min-width: 576px) {
  .slider__nav button {
    margin: 0 8px;
  }
}

@media screen and (min-width: 768px) {
  .slider__nav button {
    margin: 0 -10px;
  }
}

@media screen and (min-width: 992px) {
  .slider__nav button {
    margin: 0 60px;
  }
}

/* @media screen and (min-width: 1500px) {
  .slider__nav button {
    margin: 0 -80px;
  }
} */
.slider__nav-next,
.slider__nav-prev {
  background: none;
}

.slider__nav-next:hover,
.slider__nav-prev:hover {
  opacity: 0.8;
}

.slider__nav-next,
.slider__nav-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider__nav-next {
  right: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-next {
    top: 50%;
  }
}

.slider__nav-prev {
  left: 0;
  top: 30%;
}

@media screen and (min-width: 576px) {
  .slider__nav-prev {
    top: 50%;
  }
}

.slider__nav button[disabled] {
  opacity: 0;
}

.slider__nav button[disabled] svg {
  fill: rgba(0, 0, 0, 0.4);
}

.tns-outer {
  padding: 0;
}

@media (min-width: 992px) {
  .tns-outer {
    padding: 0 100px !important;
  }
}

.tns-inner {
  overflow: hidden;
}

.tns-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}

.tns-slide-active {
}

.tns-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin: 60px 0 0 0;
}

.tns-nav [aria-controls] {
  width: 8px;
  height: 8px;
  padding: 0;
  margin: 0 2px;
  border-radius: 200px;
  background: #cccccc;
  border: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tns-nav .tns-nav-active {
  background: #96238e;
  width: 8px;
  height: 8px;
}
