@-webkit-keyframes tabs-after {
  0% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 50%;
    width: 50%;
  }
}
@keyframes tabs-after {
  0% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 50%;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .pride--mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .pride--desktop {
    display: none;
  }
}
.pride__list {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: #d0d0d0;
}
.pride__list-point {
  width: 100%;
}
@media (max-width: 767px) {
  .pride__list-point {
    border-right: 2px solid #1b1b1b;
  }
}
.pride__list-point:last-child {
  border-right: none;
}
.pride__list-button {
  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;
  width: 100%;
  height: 100%;
  padding: 8px;
  background-color: #d0d0d0;
  border: none;
  font-size: 0;
}
@media (max-width: 767px) {
  .pride__list-button {
    background-color: #ffffff;
    min-height: 24px;
  }
}
@media (min-width: 768px) {
  .pride__list-button {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 500;
    padding: 16px 24px;
    min-height: 5.1vw;
  }
}
@media (min-width: 1200px) {
  .pride__list-button:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
}
.pride__list-button.active {
  background-color: #ff7d00;
}
@media (min-width: 768px) {
  .pride__list-button.active {
    background-color: #ffffff;
  }
}
.pride__item {
  display: none;
  position: relative;
  background-size: cover;
  background-position: center;
}
.pride__item.active {
  display: block;
}
.pride__item.active::after {
  -webkit-animation: tabs-after 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation: tabs-after 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.pride__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .pride__item::before {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
@media (min-width: 992px) {
  .pride__item::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #1b1b1b;
  }
}
.pride__item-content {
  position: relative;
}
.pride__item-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #1b1b1b;
}
.pride__arrow {
  position: absolute;
  z-index: 1;
  top: 96px;
  width: 72px;
  height: 72px;
  margin-top: -36px;
  background-color: transparent;
  background-position: center;
  background-size: auto 42px;
  background-repeat: no-repeat;
  border: none;
  padding: 0;
}
@media (min-width: 576px) and (max-width: 767px) {
  .pride__arrow {
    width: 10vw;
  }
}
.pride__arrow--next {
  right: 0;
  background-image: url("../icons/white/arrow-next.svg");
}
.pride__arrow--prev {
  left: 0;
  background-image: url("../icons/white/arrow-prev.svg");
}
.pride__arrow.swiper-button-disabled {
  opacity: 0.2;
  background-position: left 50% top 50%;
}
.pride .section__body {
  position: relative;
  z-index: 1;
}
