.mainbox {
  position: absolute;
  height: calc(100vh + 200px);  
  aspect-ratio: 1 / 1;
  margin-left: -50%;

}

.wheel_ .btn{
  margin-top: 20px;
}
.box_wheel {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: all ease-in-out 5s;
  transform: rotate(0deg);
  background: url(../img/wheel.png) no-repeat;
  background-size: 100%;
}

.mainbox:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: url(../img/whee_pl.png);
    background-size: 100%;
}


@media (max-width: 1000px) {
  .wheel_ .mainbox {
    width: 350px;
    height: 350px
  }
  .slick-prev, .slick-next{
    bottom: 0px;
  }
}


.container_wheel {
   position: relative;
    height: calc(100vh - 0px);  
    display: flex;
    width: 100%;
}

.block_wheel {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Вертикальное выравнивание по центру */
    align-items: center; /* Горизонтальное выравнивание по центру */
    padding: 20px;
    box-sizing: border-box;
}



.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
  }

  .wheel {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform: rotate(0deg);
    background: url(../img/wheel.png) no-repeat;
  background-size: 100%;
  }

  .sector {
    position: absolute;
    width: 50%;
    height: 50%;
    transform-origin: bottom right;
    left: 0;
    top: 0;
  }

  .sector span {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: rotate(90deg) translateX(-50%);
    transform-origin: left;
    font-weight: bold;
    font-size: 11px;
    white-space: nowrap;
  }

  .pointer {
    position: relative;
    margin-left: -40px;
    font-size: 24px;
     background: url(../img/whee_pl_.png) no-repeat center;
    background-size: 100%;
    font-weight: bold;
    line-height: 1;
    align-self: center;
    width: 50px;
    height: 50px;
  }
@media only screen and (max-width: 1000px) {
 .wheel-container{
  height: auto;
 }
   .pointer {
    margin-left: -35px;
  }
  .block_wheel:nth-child(1){
    width: 30%;
  }
  .block_wheel:nth-child(2){
    width: 70%;
  }
}