/* Main Slider  */
.productPagelogo img{
  position: absolute;
  width: 400px;
  top: 10%;
  right: 15%;
}
.productPagelogo .productMainTitle{
  position: absolute;
  width: 600px;
  top: 20%;
  right: 7%;
}
.productPagelogo .productMainTitle ul{
    margin-right: 0px;
}
.productPagelogo .productMainTitle h2{
  font-size: 35px;
}
.productSliderContainer {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--text-color);
    box-shadow: 0 30px 50px var(--accent-color);
    border-radius: 10px;
}
.productSliderContainer .productSliderSlides .productSliderItem {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    transform: translate(130%, -50%);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    display: inline-block;
    transition: .5s;
}


.productSliderSlides .productSliderItem:nth-child(1), .productSliderSlides .productSliderItem:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.productSliderSlides .productSliderItproductSliderItemem:nth-child(2) .content { display: block; }

.productSliderSlides .productSliderItem:nth-child(3) {
    left: 50%;
}

.productSliderSlides .productSliderItem:nth-child(4) {
    left: calc(50% + 220px);
}

.productSliderSlides .productSliderItem:nth-child(5) {
    left: calc(50% + 440px);
}

.productSliderSlides .productSliderItem:nth-child(n + 6) {
    left: calc(50% + 440px);
    overflow: hidden;
}

@keyframes mainSliderAnimate{
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.productSliderButton {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.productSliderButton button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid var(--text-color);
    transition: .3s;
    background-color: var(--text-color);
    color: var(--accent-color);
}

.productSliderButton button:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
}
