* {
  box-sizing: border-box;
  margin: 0;
}
body {
  font-size: 17px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.content {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  /* width: 800px;
    margin: 50px auto; */
  text-align: center;
}
#scroll-up,
#scroll-down {
  width: 220px;
  color: #fff;
  background-color: #333333;
  border: 1px solid #ccc;
  cursor: pointer;
  margin: 25px 10px;
  padding: 12px 0;
  border-radius: 9px;
  font-size: 22px;
  transition: all 0.3s linear;
}
#scroll-up:hover,
#scroll-down:hover {
  background: #e9e9e9;
  color: #333333;
}
#box-slider {
  height: 250px;
  overflow: hidden;
}
.slide_item {
  width: 650px;
  height: 250px;
  padding: 5px 25px;
  border-radius: 15px;
  background: linear-gradient(45deg, #302b63, #24243e);
  border: none;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide_item h1 {
  color: #fff;
}
.not-pointer {
  background-color: rgb(190, 20, 20) !important;
  cursor: none;
  pointer-events: none;
  user-select: none;
}
