.sliderBox {
    width: 100%;
    min-height: 640px; 
    margin: 80px 0 50px 0;
} 

.sliderBoxPhoto {
    transition-duration: 0.8s;
}

.sliderBoxPhoto-img {
    width: 100%;
    height: 100%;
}

.hiddenPhoto {
    opacity: 0;
}

.showPhoto {
    opacity: 1;
}


.product_container-block {
    min-height: 100px;
    margin-bottom: 50px;
}

.product_list-block {
    max-width: 1230px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.product_list-item-wrapper {
    margin-bottom: 20px;

}

.product_list-item {
    max-width: 380px;
    height: 245px;
    border: 1px solid rgb(163, 163, 163);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition-duration: 0.6s;
    text-decoration: none;
    z-index: 1; 
}

.container-text_all-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1 1 auto;
    min-height: 40px;
    padding: 0 10px;
    color: #333333;
}  

.arrow_img {
    width: 20px;
    position: relative; 
    transform: rotate(-90deg);
    animation: arrow_menu-item-animte .8s infinite alternate-reverse;
}

.go_to_item {
    width: calc(100% + 2px);
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    min-height: 40px;
    background-color: rgb(240, 60, 60);
    padding: 0 10px;
    color: rgb(255, 255, 255);
    display: none; 
    position: relative;
    top: -55px;
    opacity: 0;
}


.product_list-item:hover .go_to_item {
    display: flex;
    animation: show-go_to_item 0.4s forwards;
    border: 1px solid rgb(163, 163, 163);
    border-top: 0;
}  

.product_list-item-img {
    max-width: 250px;
    height: 190px;  
    padding: 10px;
    z-index: 0;
}
 
.product-item-img_class {
    width: 100%;
    height: 170px;
}

.product_list-item-title {
    max-height: 55px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    width: 100%;
    flex: 1 1 auto;
    transition-duration: 0.6s;  
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.text-title {
    display: flex;
    height: 55px;
    align-items: center;
    text-align: center;
}

.product_list-item:hover {
    border-bottom: 0;
}
 
.product_list-item:hover .product_list-item-title {
    background-color: #004787;
    color: aliceblue;
}

.about {
    width: 100%;
    min-height: 400px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    color: rgb(199, 47, 47);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.text {
    max-width: 990px;
}



@media (max-width: 1300px) {
    .sliderBox {
        min-height: 280px;
        margin-top: 160px;
    }
}

@media (max-width: 1100px) { 
    .product_container-block {
        display: flex;
        justify-content: center;
    }
    .product_list-block {
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 350px);
        grid-template-rows: 260px;
        gap: 30px;
        margin: 0 auto;
        align-items: center;
    }
}

@media (max-width: 900px) {
    
    .sliderBox {
        margin-top: 80px;
    } 
}

@media (max-width: 800px) {
    .product_list-block {
        display: grid;
        grid-template-columns: repeat(2, 300px);
        grid-template-rows: 260px;
    }

    .product_list-item-title {
        font-size: 15px;
    }
}

@media (max-width: 680px) {
    .product_list-block {
        display: block; 
    }  
}

@media (max-width: 550px) {
    
    .sliderBox {
        margin-top: 80px;
    } 
}

@keyframes arrow_menu-item-animte {
    0% {
        left: 0px;
    }

    100% {
        left: -30px;
    } 
}

@keyframes show-go_to_item { 
    0% {
        top: 0;
    }

    40% {
        opacity: 0;
    }

    100% {
        top: -40px;
        opacity: 0.8;
    }
}