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

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide-active {
  z-index: 10;
}

.swiper-root > .swiper-pagination {
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: start;

  --swiper-pagination-right: auto;
  --swiper-pagination-left: 0px;

  padding: 0 5px;
  background-color: #fff;
}

.swiper-root > .swiper-pagination > .swiper-pagination-bullet {
  position: relative;
  margin: 15px 0;
  border-radius: 0;

  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;

  box-sizing: border-box;

  opacity: 1;
  background-color: #fff;
  border: 2px solid rgb(170, 170, 170);

  height: 8px;
  width: 8px;
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:after {
  font-family: 'Teko';
  font-weight: 400;
  visibility: visible;

  padding-left: 10px;
  font-size: 19px;

  color: rgb(170, 170, 170);
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(1)::after { content: "*About." }
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(2)::after { content: "*Gallery." }
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(3)::after { content: "*GitHub." }
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(4)::after { content: "*YouTube." }
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(5)::after { content: "*Contact." }

.swiper-root > .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: none;
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(1).swiper-pagination-bullet-active {
  background-color: #FAB217;
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(2).swiper-pagination-bullet-active {
  background-color: rgb(170, 170, 170);
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(3).swiper-pagination-bullet-active {
  background-color: rgb(255, 68, 126);
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(4).swiper-pagination-bullet-active {
  background-color: rgb(196, 43, 31);
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet:nth-of-type(5).swiper-pagination-bullet-active {
  background-color: rgb(137, 203, 238);
}
.swiper-root > .swiper-pagination > .swiper-pagination-bullet-active:after {
  color: #fff;
  text-shadow:
    1px 1px 0 rgb(170, 170, 170),
    -1px 1px 0 rgb(170, 170, 170),
    -1px -1px 0 rgb(170, 170, 170),
    1px -1px 0 rgb(170, 170, 170);
  font-size: 18px;
  margin-left: 3px;
}
.swiper-root > .swiper-pagination-lock {
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.swiper-button-prev
, .swiper-button-next {
  color: rgb(170, 170, 170);
}
.swiper-button-disabled {
  visibility: hidden;
}
.swiper-root > .swiper-button-prev {
  top: calc(50% - 25vh);
}
.swiper-root > .swiper-button-next {
  bottom: calc(50% - 25vh);
}
.swiper-about > .swiper-button-prev
, .swiper-photograph > .swiper-button-prev {
  left: 1vw;
  right: auto;
  top: var(--swiper-navigation-top-offset,50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  margin-left: unset;
}

.swiper-about > .swiper-button-next
, .swiper-photograph > .swiper-button-next {
  left: auto;
  right: 1vw;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  transform: rotate(270deg);
}


.swiper-about > .swiper-pagination {
  margin: 0 auto 28px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;

  gap: 5px;
}
.swiper-about > .swiper-pagination > .swiper-pagination-bullet {
  width: 30%;
  margin: 0;
  border-radius: 0;

  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid rgb(170, 170, 170);
  opacity: 1;

  height: 10px;
}
.swiper-about > .swiper-pagination > .swiper-pagination-bullet-active {
  border: unset;
  background-color: rgb(170, 170, 170);
}

.swiper-photograph {
  display: flex;
  align-items: center;
}
.swiper-photograph > .swiper-wrapper > .swiper-slide { z-index: -1; }
.swiper-photograph > .swiper-wrapper > .swiper-slide-active { z-index: 0; }
.swiper-photograph > .swiper-pagination {
  margin: 0 auto 28px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;

  gap: 5px;
}
.swiper-photograph > .swiper-pagination > .swiper-pagination-bullet {
  width: 20%;
  margin: 0;
  border-radius: 0;

  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid rgb(170, 170, 170);
  opacity: 1;

  height: 10px;
}
.swiper-photograph > .swiper-pagination > .swiper-pagination-bullet-active {
  border: unset;
  background-color: rgb(170, 170, 170);
}
.swiper-slide-thumb-active { opacity: 0.35; }


@media screen and (min-width: 968px) {
  .swiper-root > .swiper-pagination { justify-content: center; }
  .swiper-about > .swiper-pagination
  , .swiper-photograph > .swiper-pagination { margin: 0 auto 48px auto; }

  .swiper-about > .swiper-button-prev
  , .swiper-photograph > .swiper-button-prev {
    left: 1vw;
  }

  .swiper-about > .swiper-button-next
  , .swiper-photograph > .swiper-button-next {
    right: 1vw;
  }
}
