html > body {
  padding: 0;
  /* background-color: #000; */
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none !important;
  /* -webkit-text-fill-color: #fff !important; */
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

body {
  font-size: 18px;
  background-color: #fff;
  letter-spacing: 0px;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  background-color: #2c2c2c;
  z-index: -1;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  zoom: 0.4;
  color: #fff;
  font-weight: bold;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.zoomInLeft {
  transform-origin: left;
  animation-name: zoomIn;
}

.zoomInRight {
  transform-origin: right;
  animation-name: zoomIn;
}

.MuiFilledInput-input:-webkit-autofill {
  box-shadow: none !important;
  -webkit-text-fill-color: #2c2c2c !important;
}
