.load-more-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.load-more-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 1;
  background: white;
  color: #ff5733;
  border: 1px solid #ff5733;
  padding: 10px 0 10px 30px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: color 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: none;
  will-change: color, border-color;
  width: 150px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  box-sizing: border-box;
}

.load-more-btn span {
  margin-right: 20px;
  padding-left: 5px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.load-more-btn::before {
  z-index: -1;
  content: "";
  position: absolute;
  background: linear-gradient(to right, #ff5733, #ffc300);
  inset: 0;
  clip-path: circle(6px at 20px 50%);
  transition: clip-path 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translate3d(0, 0, 0);
  will-change: clip-path, translate3d;
}
.load-more-btn:hover {
  color: #ffffff;
  background: none;
}

.load-more-btn:focus:not(:hover) {
  background: none;
  color: #ff5733;
}

.load-more-btn:hover::before {
  clip-path: circle(100% at 50% 50%);
}

.load-more-btn:hover span {
  transform: translateX(-15px);
}

.language-selector {
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #eff0f3;
  border-radius: 15px;
  margin-bottom: 20px;
}

.language-selector p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
