/* #explore-modes .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
} */
.explore-modes__title {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
  gap: 20px;
}

.explore-modes__title > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.explore-modes__btn {
  /* display: none; */
  display: flex;
  justify-content: end;
  gap: 20px;
}
.explore-modes__btn-left,
.explore-modes__btn-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #939ba9;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
#explore-modes .swiper-slide {
  background-color: #8c8c8c0f;
  padding: 32px;
  border-radius: var(--radius);
  /*  */
  height: unset;
}

.explore-modes__item {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /*  */
  gap: 24px;
  height: 100%;
  width: 100%;
}
.explore-modes__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* min-height: 110px; */
}
.explore-modes__item-body img {
  border-radius: var(--radius);
}
.explore-modes__item-header > :last-child {
  background-color: var(--pink);
  padding: 5px 15px 5px 15px;
  border-radius: 5px;
  color: white;
  text-transform: uppercase;
  font-family: 'Inter', serif;
  font-weight: 700;
  line-height: 30px;
}
.explore-modes__item-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  /* width: 100%; */
}
.explore-modes__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  width: 100%;
  border: 2px solid var(--pink);
  padding: 0 44px 0 44px;
  border-radius: 12px;
  color: #191b23;
  font-weight: 600;
  font-size: 20px;
  font-family: 'Outfit', serif;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.explore-modes__item-btn:hover {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  scale: 1.03;
}

@media (min-width: 900px) {
  .explore-modes__title {
    justify-content: space-between;
    align-items: end;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .explore-modes__btn {
    display: flex;
  }
  .explore-modes__item-btn {
    width: 256px;
  }
  .explore-modes__item-body {
    flex-direction: row;
  }
  .explore-modes__item-body img {
    width: 50%;
  }
}

/* @media (min-width: 1400px) {
  .explore-modes__item-body {
    height: unset;
  }
} */
