@charset "UTF-8";
.who-button {
  display: flex;
  justify-content: space-between;
}
.who-button .button {
  width: 17rem;
  margin-right: 0.75rem;
}
@media (max-width: 1300px) {
  .who-button .button {
    width: calc(50% - 0.375rem);
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .who-button .button {
    width: 100%;
  }
  .who-button .button:nth-child(1) {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 991px) {
  .who-button {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 767px) {
  .who-button {
    flex-direction: column;
  }
}

.who-container {
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 1300px) {
  .who-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  .who-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}

.who-content {
  max-width: 45rem;
}
@media (max-width: 1300px) {
  .who-content {
    width: calc(50% - 0.6875rem);
  }
}
@media (max-width: 991px) {
  .who-content {
    width: 100%;
  }
}

.who-offer p {
  margin-bottom: 1rem;
}
.who-offer li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.who-offer li:before {
  content: "";
  width: 0.5rem;
  height: 0.625rem;
  background: url("../images/trangle.svg");
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
}
@media (max-width: 1300px) {
  .who-offer br {
    display: none;
  }
}

.who-swiper.swiper-container {
  position: absolute;
  width: 36.75rem;
  height: 23.1875rem;
  top: 0;
  right: 0;
}
.who-swiper.swiper-container img {
  border-radius: 1.25rem;
}
@media (max-width: 1300px) {
  .who-swiper.swiper-container {
    position: relative;
    width: calc(50% - 0.6875rem);
    top: auto;
    height: auto;
    right: auto;
  }
  .who-swiper.swiper-container img {
    max-height: 16.375rem;
    object-fit: cover;
    object-position: center;
  }
}
@media (max-width: 991px) {
  .who-swiper.swiper-container {
    width: 100%;
  }
  .who-swiper.swiper-container img {
    max-height: inherit;
  }
}

.swiper-arrow-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 1.75rem;
  z-index: 2;
  right: 1.75rem;
}
.swiper-arrow-container .swiper-arrow {
  margin-left: 0.25rem;
}
@media (max-width: 991px) {
  .swiper-arrow-container {
    top: 1rem;
    right: 1rem;
  }
}

.swiper-arrow {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  transition: all 0.25s linear;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-arrow .icon {
  width: 1rem;
  height: 1rem;
}
.swiper-arrow svg {
  fill: var(--black);
  transition: all 0.25s linear;
}
.swiper-arrow:hover {
  background: var(--orange);
}
.swiper-arrow:hover svg {
  fill: var(--white);
}
@media (max-width: 991px) {
  .swiper-arrow {
    width: 2rem;
    height: 2rem;
  }
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .section-head .button {
    display: none;
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  height: 100%;
}
@media (min-width: 991px) {
  .news-item:hover {
    background: var(--gray-100);
  }
}
@media (max-width: 991px) {
  .news-item {
    padding: 0;
  }
}

.news-item__pic {
  position: relative;
  margin-bottom: 1rem;
  padding-bottom: 67.6%;
  border-radius: 1.25rem;
  overflow: hidden;
}
.news-item__pic img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item__date {
  position: absolute;
  background: var(--gray-100);
  padding: 0 1rem;
  top: 1rem;
  left: 1rem;
  height: 2rem;
  display: flex;
  align-items: center;
  border-radius: 3.125rem;
  font-size: 0.875rem;
}
@media (max-width: 991px) {
  .news-item__date {
    font-size: 0.8125rem;
    padding: 0 0.5rem;
    height: 1.75rem;
  }
}

.swiper-arrow {
  z-index: 3;
}

.swiper-full-news {
  position: relative;
}
.swiper-full-news .swiper-arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  background: var(--orange);
}
.swiper-full-news .swiper-arrow svg {
  fill: var(--white);
}
.swiper-full-news .swiper-arrow:hover {
  background: var(--orange-hover);
}
@media (max-width: 1300px) {
  .swiper-full-news .swiper-arrow {
    display: none;
  }
}
.swiper-full-news .swiper-arrow-prev {
  right: calc(100% + 1.5rem);
}
@media (max-width: 1500px) {
  .swiper-full-news .swiper-arrow-prev {
    right: auto;
    left: 0;
  }
}
.swiper-full-news .swiper-arrow-next {
  left: calc(100% + 1.5rem);
}
@media (max-width: 1500px) {
  .swiper-full-news .swiper-arrow-next {
    left: auto;
    right: 0;
  }
}
.swiper-full-news .swiper-button-disabled {
  display: none !important;
}

.news-swiper.swiper-container .swiper-slide {
  height: initial;
}
@media (max-width: 1300px) {
  .news-swiper.swiper-container {
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
  }
}
@media (max-width: 991px) {
  .news-swiper.swiper-container {
    margin: 0 -1rem;
    padding: 0 1rem;
  }
}

.area-items {
  display: flex;
  flex-flow: row wrap;
  margin-top: -1.25rem;
  margin-right: -1.25rem;
}
@media (max-width: 991px) {
  .area-items {
    margin-right: -1rem;
    margin-top: -1rem;
  }
}
@media (max-width: 767px) {
  .area-items {
    margin-right: 0;
    margin-top: -0.75rem;
  }
}

.area-item {
  margin-right: 1.25rem;
  width: calc(33.3% - 1.25rem);
  margin-top: 1.25rem;
  min-height: 10.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 2rem;
  background: var(--gray-100);
}
@media (min-width: 991px) {
  .area-item:hover {
    color: var(--white);
  }
  .area-item:hover .area-item__icon svg {
    fill: var(--white);
  }
  .area-item:hover .area-item__pic {
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .area-item {
    width: calc(50% - 1rem);
    margin-right: 1rem;
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .area-item {
    margin-right: 0;
    margin-top: 0.75rem;
    width: 100%;
  }
}

.area-item_50 {
  width: calc(50% - 1.25rem);
}
@media (max-width: 991px) {
  .area-item_50 {
    width: calc(50% - 1rem);
  }
}
@media (max-width: 767px) {
  .area-item_50 {
    width: 100%;
  }
}

.area-item__icon.icon {
  position: relative;
  z-index: 1;
  margin-bottom: 1.75rem;
  display: flex;
  width: 3rem;
  height: 3rem;
}
.area-item__icon.icon svg {
  fill: var(--orange);
  transition: all 0.25s linear;
}

.area-item__housing .icon svg {
  fill: transparent;
  stroke: var(--orange);
}
.area-item__housing:hover .area-item__icon svg {
  fill: transparent;
  stroke: var(--white);
}

.area-item__title {
  position: relative;
  z-index: 1;
}
@media (max-width: 1300px) {
  .area-item__title {
    font-size: 1.25rem;
  }
}

.area-item__pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.25s linear;
  opacity: 0;
}
.area-item__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-full-partner {
  position: relative;
}
.swiper-full-partner:before {
  content: "";
  background: linear-gradient(to left, white, transparent);
  height: 100%;
  width: 6.25rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .swiper-full-partner:before {
    width: 1.875rem;
  }
}
.swiper-full-partner:after {
  content: "";
  background: linear-gradient(to right, white, transparent);
  height: 100%;
  width: 6.25rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media (max-width: 991px) {
  .swiper-full-partner:after {
    width: 1.875rem;
  }
}
.swiper-full-partner .swiper-arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  background: var(--orange);
}
.swiper-full-partner .swiper-arrow svg {
  fill: var(--white);
}
.swiper-full-partner .swiper-arrow:hover {
  background: var(--orange-hover);
}
.swiper-full-partner .swiper-arrow-prev {
  right: calc(100% + 1.5rem);
}
@media (max-width: 1500px) {
  .swiper-full-partner .swiper-arrow-prev {
    right: auto;
    left: 0;
  }
}
.swiper-full-partner .swiper-arrow-next {
  left: calc(100% + 1.5rem);
}
@media (max-width: 1500px) {
  .swiper-full-partner .swiper-arrow-next {
    right: 0;
    left: auto;
  }
}
.swiper-full-partner .swiper-button-disabled {
  display: none !important;
}
.swiper-full-partner .swiper-slide-rosatom {
  width: 13.25rem;
}
.swiper-full-partner .swiper-slide-rosgidro {
  width: 12.6875rem;
}
.swiper-full-partner .swiper-slide-transneft {
  width: 12.5rem;
}
.swiper-full-partner .swiper-slide-inter {
  width: 13.375rem;
}
.swiper-full-partner .swiper-slide-slavneft {
  width: 13.5rem;
}
.swiper-full-partner .swiper-slide-nlmk {
  width: 9.0625rem;
}
.swiper-full-partner .swiper-slide {
  width: auto;
}
.swiper-full-partner img {
  height: 7.375rem;
  object-fit: cover;
}

.geography {
  display: none;
}
@media (max-width: 991px) {
  .geography {
    display: block;
  }
}

.map-desktop {
  position: relative;
}
.map-desktop [stroke-width] {
  pointer-events: all;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}
.map-desktop [stroke-width]:hover {
  cursor: pointer;
  animation: bounce2 0.6s ease;
}

@keyframes bounce2 {
  0% {
    transform: scale(1) translateY(0);
  }
  30% {
    transform: scale(1.05) translateY(-0.25rem);
  }
  50% {
    transform: scale(1) translateY(0);
  }
  70% {
    transform: scale(1.03) translateY(-0.125rem);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.active {
  stroke: #ff6600;
  stroke-width: 1;
  position: relative;
}
.active[stroke-width] {
  stroke-width: 0;
}
#popover {
  position: absolute;
  width: 14rem;
  background: white;
  z-index: 3;
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
}
#popover:before {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background: white;
  left: calc(50% - 0.3125rem);
  bottom: -0.3125rem;
  transform: rotate(45deg);
  position: absolute;
}

#close-popover {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}
#close-popover svg {
  transform: rotate(45deg);
  stroke: var(--gray-400);
}
#close-popover:hover svg {
  stroke: var(--orange);
}

#popover-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

#popover-description {
  font-size: 0.875rem;
  line-height: 1.1;
  color: var(--gray-400);
}

.hidden {
  display: none;
}

#country-details {
  position: absolute;
  top: 3.25rem;
  left: 2.75rem;
}

#country-details .item {
  display: flex;
  background: var(--orange);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  align-items: center;
  color: var(--white);
  font-size: 1.125rem;
  border-radius: 1rem;
  width: 16.25rem;
}
#country-details .item p {
  margin: 0;
}

.item-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-right: 1rem;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  padding: 0.5rem;
}

#world-map {
  max-width: 100%;
  height: auto;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1rem;
}

.accordion__item {
  background: #F5F5F5;
  border-radius: 1.25rem;
  margin-bottom: 0.5rem;
}
.accordion__item:last-child {
  margin-bottom: 0;
}
.accordion__item.open .accordion__head .icon {
  transform: rotate(45deg);
}

.accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  width: 100%;
}
.accordion__head .icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.25s linear;
  flex-shrink: 0;
  margin-left: 0.625rem;
}
.accordion__head .icon svg {
  stroke: var(--gray-400);
}

.accordion__head-country {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}

.accordion__head-country-flag {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8125rem;
  background: var(--white);
  border-radius: 50%;
}

.geography-content {
  padding: 1.25rem;
  background: var(--white);
  color: var(--gray-400);
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.geography-element {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 0.0625rem solid var(--gray-100);
  color: var(--black);
  border-radius: 1rem;
}

.geography-element-icon {
  margin-bottom: 0.75rem;
}
.geography-element-icon .icon {
  width: 2rem;
  height: 2rem;
}
.geography-element-icon .icon svg {
  fill: var(--orange);
}

.footer {
  padding: 2.5rem 0;
  background: var(--black);
  color: var(--white);
  margin-top: 7.5rem;
}
@media (max-width: 991px) {
  .footer {
    margin-top: 4rem;
  }
}

.footer-main {
  margin-top: 3.125rem;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .footer-main {
    flex-direction: column-reverse;
    margin-top: 1.75rem;
  }
}

.footer-menu {
  width: 100%;
  display: block;
  column-count: 3;
  font-size: 1rem;
  line-height: 1.2;
}
@media (max-width: 1300px) {
  .footer-menu {
    column-count: 2;
  }
}
@media (max-width: 991px) {
  .footer-menu {
    display: flex;
    flex-direction: column;
  }
}

.footer-menu__items {
  margin-bottom: 2.25rem;
  break-inside: avoid;
}
.footer-menu__items:nth-child(3), .footer-menu__items:nth-child(4) {
  padding-left: 6.25rem;
}
@media (max-width: 1300px) {
  .footer-menu__items:nth-child(3), .footer-menu__items:nth-child(4) {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .footer-menu__items {
    margin-bottom: 0;
  }
}

.footer-main__item {
  margin-bottom: 1.25rem;
}
@media (max-width: 1300px) {
  .footer-main__item {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .footer-main__item:not(.footer-main__item_head) {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    margin-bottom: 0;
  }
  .footer-main__item.active {
    height: auto;
    opacity: 1;
    padding-top: initial;
    padding-bottom: initial;
    margin-bottom: 1rem;
  }
}

.footer-main__item_head {
  font-weight: 500;
  color: var(--orange);
}
@media (max-width: 991px) {
  .footer-main__item_head {
    display: flex;
    align-items: center;
  }
  .footer-main__item_head:after {
    content: "";
    background-image: url("../images/triangle-bottom.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: 0.375rem;
    width: 0.5rem;
    height: 0.25rem;
    transition: all 0.25s linear;
  }
  .footer-main__item_head.active:after {
    transform: rotate(180deg);
  }
}

.footer-main__link {
  color: var(--white);
}
.footer-main__link:hover {
  color: var(--orange);
}

.footer-contact {
  width: 23.9375rem;
  flex-shrink: 0;
  margin-left: 11.6875rem;
  font-style: normal;
}
@media (max-width: 1300px) {
  .footer-contact {
    margin-left: 3.125rem;
  }
}
@media (max-width: 991px) {
  .footer-contact {
    margin-left: 0;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 767px) {
  .footer-contact {
    width: 100%;
  }
}

.footer-contact__item {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .footer-contact__item {
    margin-bottom: 1rem;
  }
}

.footer-contact__label {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.footer-contact__link {
  color: var(--white);
}
.footer-contact__link:hover {
  color: var(--orange);
}

.footer-corruption {
  padding: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem;
  border-radius: 1rem;
  border: 0.0625rem solid var(--orange);
}
.footer-corruption img {
  flex-shrink: 0;
  margin-left: 1.25rem;
}
@media (max-width: 991px) {
  .footer-corruption {
    margin-top: 1.75rem;
  }
}
@media (max-width: 767px) {
  .footer-corruption {
    padding: 1rem;
  }
}

.footer-end {
  padding-top: 1.875rem;
  margin-top: 3.75rem;
  border-top: 0.0625rem solid var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-end {
    flex-direction: column-reverse;
    padding-top: 2.25rem;
    margin-top: 1.25rem;
    align-items: flex-start;
  }
}

.footer-developer:hover {
  opacity: 0.8;
}
@media (max-width: 991px) {
  .footer-developer {
    margin-bottom: 1.875rem;
  }
}

.footer-end-main {
  font-size: 0.875rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
}

.footer-error {
  color: var(--gray-400);
  margin-left: 0.75rem;
  text-decoration: underline;
}
.footer-error:hover {
  color: var(--orange);
}

.fab-menu {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  transition: bottom 0.3s ease;
}
@media (max-width: 991px) {
  .fab-menu {
    right: 1rem;
  }
}

.fab-menu__button {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fab-menu__button .icon {
  width: 2rem;
  height: 2rem;
}
@media (max-width: 991px) {
  .fab-menu__button .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.fab-menu__button svg {
  fill: var(--white) !important;
}
.fab-menu__button:hover {
  background: var(--orange-hover);
}
@media (max-width: 991px) {
  .fab-menu__button {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.fab-menu__button .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.icon-burger-fab {
  opacity: 1;
}

.icon-close-fab {
  opacity: 0;
}

.fab-menu.menu-open .icon-burger-fab {
  opacity: 0;
}

.fab-menu.menu-open .icon-close-fab {
  opacity: 1;
}
.fab-menu.menu-open .icon-close-fab svg {
  transform: rotate(45deg);
  stroke: white;
}

/* Элементы меню */
.fab-menu__item.icon {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
}
.fab-menu__item.icon svg {
  width: 2rem;
  height: 2rem;
  fill: transparent;
  stroke: var(--white);
}
@media (max-width: 991px) {
  .fab-menu__item.icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.fab-menu__item.icon:hover {
  background: var(--orange-hover);
}
@media (max-width: 991px) {
  .fab-menu__item.icon {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.fab-menu.menu-open .item-1 {
  transform: translateY(-4.625rem);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .fab-menu.menu-open .item-1 {
    transform: translateY(-2.875rem);
  }
}

.fab-menu.menu-open .item-2 {
  transform: translateY(-9.25rem);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 991px) {
  .fab-menu.menu-open .item-2 {
    transform: translateY(-5.75rem);
  }
}

.scroll-to-top.icon {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 4.25rem;
  height: 4.25rem;
  border: none;
  cursor: pointer;
}
.scroll-to-top.icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: transparent;
  fill: var(--white);
}
@media (max-width: 991px) {
  .scroll-to-top.icon svg {
    width: 1rem;
    height: 1rem;
  }
}
.scroll-to-top.icon:hover {
  background: var(--orange-hover);
}
@media (max-width: 991px) {
  .scroll-to-top.icon {
    width: 2.5rem;
    height: 2.5rem;
    right: 1rem;
  }
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: $themeColor;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper, .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 75rem;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 75rem;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 0.0625rem;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 0.0625rem;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 2.625rem;
  height: 2.625rem;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1.3125rem;
  margin-top: -1.3125rem;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 0.25rem solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */