:root {
  --black: #222328;
  --white: #fff;
  --accent: #7981ad;
  --secondary: #da9c86;
  --new-white: #fafcfc;
  --hyper-light: #f8f8fa;
  --gradient-light: linear-gradient(
    8deg,
    #dee3fb 0%,
    rgba(222, 227, 251, 0) 100%
  );
  --gradient-dark: linear-gradient(359deg, #777faa 0%, #a3ade5 100%);
}

@media screen and (max-width: -1px) {
  .hidden-xs-down {
    display: none !important;
  }
}
.hidden-xs-up {
  display: none !important;
}

@media screen and (max-width: 779px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media screen and (min-width: 780px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .hidden-lg-up {
    display: none !important;
  }
}
.work-gallery-swiper__wrap {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: none !important;
}
.work-gallery-swiper__wrap.swiper-initialized {
  display: block !important;
}
.work-gallery-swiper__wrap .pr-content {
  position: relative;
  display: block;
}
.work-gallery-swiper__wrap .pr-content .image {
  background-size: auto 100%;
  background-position: right;
  border-radius: 12px;
  overflow: hidden;
}
.work-gallery-swiper__wrap .pr-content .image img {
  width: 100%;
  right: 0;
}
.work-gallery-swiper__wrap .pr-content .text {
  margin-top: 16px;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
  gap: 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each {
  height: 40px;
  width: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--accent);
  flex: none;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each svg {
  fill: #fff;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each:hover {
  background-color: var(--accent);
  opacity: 0.88;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each:hover svg {
  fill: #fff;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each.swiper-button-disabled {
  background-color: transparent;
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .each.swiper-button-disabled svg {
  fill: var(--accent);
}
.work-gallery-swiper__wrap .g-buttons-slider__wrap .g-swiper-pagination {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 20px;
}

@keyframes amorphous-promotion {
  0%, 100% {
    border-radius: 120px 280px 120px 280px;
  }
  50% {
    border-radius: 90px 180px 90px 180px;
  }
}