@charset "UTF-8";

:root {
  --color-contrast: #D78C10;
  --color-contrastDark: #DA7B23;
  --color-contrastLight: #E2AB4F;
  --color-light: #747474;
  --color-light2: #7C7C7C;
  --color-regular: #2D3032;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.content {
  width: 100%;
  max-width: 1252px;
  padding-left: 16px;
  padding-right: 16px;
}

.center {
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .15s ease-in-out;
}

a:hover {
  color: var(--color-contrast);
}

a:hover svg {
  stroke: var(--color-contrast);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-regular);
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: #fff;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header__logo-link {
  font-family: "Mulish", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22.59px;
  text-decoration: none;
  color: var(--color-regular);
}

.header__nav-box {
  flex-grow: 1;
  display: flex;
  justify-content: center;

}

.header__nav-social {
  justify-content: center;
}

.header__nav {
  display: flex;
  gap: 45px;

}

.header__nav-item {
  padding: 27px 0 26px;
  font-size: 14px;
  line-height: 16.94px;
  text-decoration: none;
  color: var(--color-light);
  transition: all .15s ease-in-out;
}

.header__nav-item:hover,
.header__nav-item.active {
  color: var(--color-contrast);
  text-decoration: underline;
}

.header__nav-item:hover:active {
  color: var(--color-contrastLight);
}

.nav-item__count {
  display: none;
}

.header__lang-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-left: 81px;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 400;
  color: var(--color-light);
  padding: 3px 5px;
  transition: all .15s ease-in-out;
  text-decoration: none;
}

.lang__item-box {
  display: flex;
}

.lang__item-box:not(:last-child)::after {
  margin-left: 5px;
  content: "";
  display: block;
  min-height: 100%;
  width: 1px;
  background-color: var(--color-light);
}

.lang-item:hover {
  cursor: pointer;
  background-color: var(--color-contrast);
  color: #fff;
}

.lang-item:active {
  background-color: var(--color-contrastLight);
}

.lang-item_active {
  background-color: var(--color-contrast);
  color: #fff;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.header__nav_mobile {
  display: none;
}

.main {
  flex-grow: 1;
  align-self: stretch;
}

.main.main__page {
  padding-top: 70px;
}

.main__page {
  background-color: #F8F8F8;
  min-height: 100vh;
}

.main__page-content {
  display: flex;
  min-height: calc(100vh - 70px);

}

.main__page-left {
  position: relative;
  min-height: 100%;
  width: 100%;
}

.main__page-slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 60vw;
  height: 100%;
}

.main__page-right {
  flex-grow: 1;
  padding: 95px 0 19px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 75px;
  max-width: 749px;
  width: 100vw;
  flex-shrink: 1;

}

.main__page-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.main__page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main__page-footer_mobile {
  display: none;
}

.about__picture {
  max-width: 266px;
  height: 389px;
}

.about__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main__page .about__text {
  max-width: 496px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.header__logo-link_about {
  font-size: 48px;
  line-height: 60.24px;
  font-weight: 600;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-pagination {
  position: initial;
}

.swiper__btn-box {
  display: flex;
  align-self: stretch;
  gap: 5px;
}

.slider__btn {
  height: 100%;
  display: flex;
  align-items: center;

}

.slider__btn:hover {
  cursor: pointer;
}

.slider__btn svg {
  fill: var(--color-regular);
  transition: fill .15s ease-in-out;
}

.slider__btn_prev svg {

  rotate: -180deg;
}

.slider__btn:not(.swiper-button-disabled):hover svg {
  fill: var(--color-contrast);
}

.slider__btn:not(.swiper-button-disabled):active svg {
  fill: var(--color-contrastLight);
}


.swiper-button-disabled svg {
  fill: #D6D6D6;
}

.slider-pagination {
  width: auto;
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 400;
  color: #2D303266;
  z-index: 0;

}

.swiper-pagination-current {
  color: var(--color-contrast);
  opacity: 1;
}

.page-footer__left {
  display: flex;
  gap: 18px;
  align-items: center;
}

.social__btn-box {
  display: flex;
  align-items: center;
  gap: 15px;
}


.social__btn {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  padding: 7.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #BDBDBD;
  transition: all .15s ease-in-out;
}

.social__btn svg {
  fill: #fff !important;

}

.social__btn:hover {
  cursor: pointer;

}

.social__btn:hover svg {
  stroke: transparent !important;
}

.social__btn_wp:hover {
  background: #00D95F !important;
}

.social__btn_tg:hover {
  background: #34AADF !important;
}

.social__btn_inst:hover {
  transition: all .15s ease-in-out;
  background: linear-gradient(315deg, #FBE18A 0.96%, #FCBB45 21.96%, #F75274 38.96%, #D53692 52.96%, #8F39CE 74.96%, #5B4FE9 100.96%) !important;
}

.footer {
  padding: 50px 0 50px;
}

.footer__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__contacts-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer__contacts-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18.15px;
  color: var(--color-regular)
}

.footer__contacts-icon {
  stroke: var(--color-regular);
  transition: stroke .15s ease-in-out;
}

.footer .social__btn {
  background-color: var(--color-contrast);
}

.copyright {
  display: block;
  margin-top: 30px;
  color: #7C7C7C;
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 400;
}

.main__page+.footer {
  display: none;
}



.btn__up {
  position: fixed;
  z-index: 1;
  bottom: 0;
  max-width: 163px;
  padding: 19px 0 11px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 50px 50px 0 0;
  border: none;
  background-color: var(--color-contrast);
  color: #fff;
  font-size: 14px;
  line-height: 16.94px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all .15s ease-in-out;
}

.main__page~.btn__up {
  display: none;
}

.btn__up svg {
  stroke: #fff;
}

.btn__up:hover {
  cursor: pointer;
  background-color: var(--color-contrastDark);
}

.btn__up:disabled {
  background-color: #C7C7C7;
}

.btn__up:active {
  background-color: var(--color-contrastLight);
}

.page__content {
  flex-grow: 1;
  height: 100%;
  padding: 60px;
  padding-top: 130px;
  background-color: #F8F8F8;
}

.section__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  line-height: 29.05px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 15px;
  border-bottom: 1px solid #C7C7C7;
}

.section__title svg {
  transition: stroke .15s ease-in-out;
  stroke: var(--color-regular);
}

.about__item .section__title {
  padding-bottom: 12px;
}

.section__content {
  padding-top: 40px;
}

.section__content_page {
  display: flex;
  gap: 40px;
}

.section__content_page .about__picture {
  position: sticky;
  top: 70px;
  height: 483px;
  max-width: none;
  width: 330px;
}

.page__content-left {
  position: relative;
}

.page__content-right {
  flex-grow: 1;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about__name {
  padding-bottom: 15px;
  font-size: 20px;
  line-height: 24.2px;
  font-weight: 400;
  font-style: italic;
}

.about__text {
  padding-top: 15px;
  font-size: 14px;
  line-height: 20px;
}

.about__text p:not(:last-child) {
  margin-bottom: 20px;
}

.about__text ul {
  margin-left: 20px;
  text-align: left;
}

.about__text table {
  width: 100%;
  border-collapse: collapse;
}

.about__text table tr:not(:first-child) td {
  padding-top: 15px;
}

.about__text table tr:not(:last-child) td {
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 15px;
}

.about__text table tr td:last-child {
  text-align: right;
  width: 85%;

}

.slide-in-blurred-bottom {
  -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
  animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

.slide-out-blurred-bottom {
  -webkit-animation: slide-out-blurred-bottom 0.6s cubic-bezier(0.755, 0.050, 0.855, 0.060) both;
  animation: slide-out-blurred-bottom 0.6s cubic-bezier(0.755, 0.050, 0.855, 0.060) both;
}

.contacts__page {
  display: flex;
  flex-direction: column;
}

.contacts__page .page__content {
  display: flex;
  flex-direction: column;
}

.contacts__page .section__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contacts {
  flex-grow: 1;
}

.contacts,
.contacts__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.contacts__content {
  align-items: center;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contacts__img-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 23px;
}

.contacts__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
}

.contacts__item-value {
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
}

.contacts__item-descr {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 14px;
  line-height: 16.94px;
  color: var(--color-light);
}

.contacts__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.contacts__footer svg {
  stroke: var(--color-light);
}

.contacts__footer .contacts__item-descr {
  margin-bottom: 0;
}

.catalog {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.catalog__slider,
.catalog__slider_thumb {
  height: 537px;
  position: relative;
  display: flex;
  align-items: center;
}

.catalog__slider-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .5);
  background-color: #2D30321A;
  backdrop-filter: blur(20px);
  transition: all .15s ease-in-out;
}

.catalog__slider-btn.swiper-button-disabled {
  border-color: #D8D8D880;
  background-color: #2D303214;
}

.catalog__slider-btn.swiper-button-disabled svg {
  stroke: #C7C7C7;
}

.catalog__slider-btn svg {
  stroke: #fff;
  transition: stroke .15s ease-in-out;
}

.catalog__slider-btn:not(.swiper-button-disabled):hover {
  cursor: pointer;
  border-color: #fff;
  background-color: #fff;
}

.catalog__slider-btn:not(.swiper-button-disabled):hover svg {
  stroke: var(--color-contrast);
}

.catalog__slider-btn:not(.swiper-button-disabled):active {
  border-color: var(--color-contrast);
  background-color: var(--color-contrast);
}

.catalog__slider-btn:not(.swiper-button-disabled):active svg {
  stroke: #fff;
}

.catalog__slider-btn_prev {
  left: 30px
}

.catalog__slider-btn_next {
  right: 30px;
}

.slider_thumb {
  margin-top: 15px;
  margin-bottom: 25px;
}

.slider_thumb .swiper-slide {
  height: 105px;
  position: relative;
}

.slider_thumb .swiper-slide:hover {
  cursor: pointer;
}

.swiper-slide-thumb-active:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000033;
}

.catalog__item-content {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog__item-material {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16.94px;
  font-weight: 300;
  color: var(--color-light);
}

.catalog__item-name,
.catalog__item-series {
  font-size: 16px;
  line-height: 19.36px;
  font-weight: 400;
  text-transform: uppercase;
}

.catalog__item-descr {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.item__descr-left {
  max-width: 551px;
}

.item__descr-text {
  font-size: 14px;
  line-height: 16.94px;
  text-align: justify;
}

.item__descr-footer {
  margin-top: 5px;
}

.item__descr-link {
  display: inline-block;

  font-size: 14px;
  line-height: 16.94px;
  color: var(--color-light);
  text-decoration: underline;
}

.item__descr-btn {
  padding: 7.5px 10px;
  border: 1px solid var(--color-contrast);
  border-radius: 20px;
  color: var(--color-contrast);
  font-size: 14px;
  line-height: 16.94px;
  transition: all .15s ease-in-out;
}

.item__descr-btn:hover {
  background-color: var(--color-contrast);
  color: #fff;
}

.item__descr-btn:active {
  background-color: var(--color-contrastLight);
  border-color: var(--color-contrastLight);
}

.catalog__slider .slider-pagination,
.catalog__slider_thumb .slider-pagination {
  position: absolute;
  z-index: 1;
  left: calc(((100%) - 55px)/2);
  bottom: 20px;
  backdrop-filter: blur(20px);
  padding: 3px 5px;
  border-radius: 15px;
  width: fit-content;
  min-width: 55px;
  color: #FFFFFF66;
  background-color: #2D30321A;
}

.catalog__slider .swiper-pagination-current,
.catalog__slider_thumb .swiper-pagination-current {
  color: #fff;
}

.catalog__content-heading {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.item__descr-list {
  margin-top: 10px;
  margin-bottom: 25px;
  margin-left: 20px;
  font-size: 14px;
  line-height: 20px;
}

.item__descr-btn_mobile,
.item__footer {
  display: none;
}

.item__descr-right {
  display: flex;
  align-items: flex-start;
}


@media(max-width: 1199px) {
  .header__lang-box {
    margin-left: 0;
  }
}

@media(max-width: 991px) {

  .content {
    width: 100vw;
    left: auto;
    right: auto;
  }

  .header {
    padding-top: 21px;
    padding-bottom: 20px;
  }

  .header__nav-box {
    display: none;
  }

  .header__nav_mobile {
    display: block;
  }

  .header__nav-burger:hover {
    cursor: pointer;
  }


  .header__nav-burger svg {
    stroke: var(--color-contrast);
    transition: stroke .15s ease-in-out;
  }


  .header__nav-burger:hover svg {
    stroke: var(--color-contrastDark);
  }

  .header__nav-burger:active svg {
    stroke: var(--color-contrastLight);
  }

  .header__nav_mobile .header__nav-burger+.header__nav-box {
    display: flex;
    position: absolute;
    flex-direction: column;
    width: 100vw;
    min-height: calc(100vh - 85px);
    gap: 110px;
    top: 85px;
    z-index: -1;
    background-color: #F8F8F8;
    transition: right 1s ease-in-out;
  }

  .header__nav_mobile .header__nav-burger+.header__nav-box .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .header__nav_mobile .header__nav-burger+.header__nav-box .header__nav-item {
    padding-top: 15px;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-regular);
    font-size: 13px;
    line-height: 15.73px;
  }


  .header__nav_mobile .header__nav-burger+.header__nav-box .header__nav-item.active {
    color: var(--color-contrast);
    font-weight: 400;
    text-decoration: none;

  }

  .header__nav_mobile .header__nav-burger:not(.active)+.header__nav-box {
    right: -100vw;

  }

  .header__nav_mobile .header__nav-burger.active+.header__nav-box {
    right: 0;
  }

  .header__nav_mobile .header__nav-burger:not(.active) .header__close-icon,
  .header__nav_mobile .header__nav-burger.active .header__burger-icon {
    display: none;
  }

  .nav-item__count {
    font-size: 14px;
    line-height: 16.94px;
    font-weight: 400;
    display: inline-block;
    color: #C7C7C7;
    margin-right: 11px;
  }

  .main {
    padding-top: 85px;
  }

  .main__page-content {
    min-height: calc(100vh - 85px);
    flex-direction: column;
  }

  .main__page-right {
    max-width: 100%;
    padding: 12px 0 60px;
    gap: 40px;
  }

  .main__page-slider {
    position: initial;
    width: 100vw;
    margin-left: -16px;
    aspect-ratio: 1/0.67;
  }

  .main__page-footer {
    justify-content: center;
  }


  .main__page-footer:not(.main__page-footer_mobile) {
    order: -1;
  }

  .main__page-footer_mobile {
    display: flex;
  }

  .main__page-footer:not(.main__page-footer_mobile) .page-footer__right {
    display: none;
  }

  .about__picture {
    min-width: 110px;
    width: 32vw;
    height: auto;
    aspect-ratio: 0.75/1;
  }

  .main__page-about {
    gap: 40px;
  }

  .header__logo-link_about {
    font-size: 36px;
    line-height: 45.18px;
  }

  .footer {
    padding: 50px 16px 100px;
  }

  .footer__contacts,
  .footer__contacts-left {
    flex-direction: column;
    gap: 30px;
  }

  .copyright {
    margin-top: 50px;
    text-align: center;

  }

  .main__page+.footer {
    display: block;
  }

  .page__content {
    padding: 40px 16px 45px;
  }

  .section__content {
    padding-top: 30px;
  }

  .section__content_page {
    flex-direction: column;
    gap: 30px;
  }

  .section__content_page .about__picture {
    width: 100%;
    max-width: 343px;
    height: 433px;
    margin: 0 auto;
  }

  .about__text p:not(:last-child) {
    margin-bottom: 15px;
  }

  .contacts__page .section__content {
    padding-top: 50px;
  }

  .catalog__slider-btn {
    width: 36px;
    height: 36px;
  }

  .catalog__slider .slider-pagination,
  .catalog__slider_thumb .slider-pagination {
    font-size: 12px;
    line-height: 14.52px;
    min-width: 50px;
  }


  .slider_thumb .swiper-slide {
    height: auto;
    aspect-ratio: 1/0.59;
  }

  .details .catalog__item-name {
    font-size: 24px;
    line-height: 29.05px;
  }

  .item__descr-text {
    line-height: 20px;
  }

}

@media (max-width: 767px) {


  .catalog__slider,
  .catalog__slider_thumb {
    height: auto;
    aspect-ratio: 1/0.67;
  }

  .slider_thumb {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .catalog__slider-btn_prev {
    left: 5px;
  }

  .catalog__slider-btn_next {
    right: 5px;
  }

  .catalog__slider .slider-pagination,
  .catalog__slider_thumb .slider-pagination {
    bottom: 5px;
  }

  .item__descr-left+.item__descr-right,
  .catalog__content-heading .item__descr-btn {
    display: none;
  }

  .item__descr-left {
    max-width: 100%;
  }

  .item__descr-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .item__descr-btn_mobile {
    display: block;
  }

  .item__footer {
    display: flex;
    margin-top: 30px;
  }
}


@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 1;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter/Inter-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}


/* ----------------------------------------------
 * Generated by Animista on 2024-3-15 14:8:10
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-blurred-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

/* ----------------------------------------------
* Generated by Animista on 2024-3-15 14:12:32
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation slide-out-blurred-bottom
* ----------------------------------------
*/
@-webkit-keyframes slide-out-blurred-bottom {
  0% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(2000px) scaleY(2) scaleX(0.2);
    transform: translateY(2000px) scaleY(2) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
}

@keyframes slide-out-blurred-bottom {
  0% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(2000px) scaleY(2) scaleX(0.2);
    transform: translateY(2000px) scaleY(2) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
}