/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/

@media screen and  (min-device-width:910px) and (max-device-width: 1920px)
{
.category_block {
    margin-left: 8.66%;
}
.category_head{
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #404040;
}

/*    slides*/

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    display: flex;
    min-width: 100%;
    align-items: center;
    padding-left:40px;
    padding-right:40px;
    background: #f9f9f9;
}

.slide_img {
    flex: 1;
    padding: 20px;
}

.slide_img img {
    width: 100%;
}

.slide_info {
    flex: 1;
    font-size: 20px;
    color: #333;
    padding-left: 20px;
    letter-spacing: 2px;
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: black;
    cursor: pointer;
    font-size: 40px;
    background-color: transparent;
    border: none;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    color: rgba(0, 0, 0, 0.8);
}



    
/*    hamburger*/

.top{
    display: flex;
    
}
button{
    background-color: transparent;
    border: none;

}
.button img{
    width:15px;
}
.project_menu {
    display: none;
    background-color: #777;
    position: absolute;
    top: 130px;
    text-align: center;
    width: 12%;
    z-index: 999;
    left: 7px;

}
.project_menu a {
    display: flex;
    color: white;
    padding: 15px;
    text-decoration: none;
}
.project_menu a:hover {
    background-color: #575757;
}
.projecthamburger {
    color: #333;
    font-size: 28px;
    border: none;
    cursor: pointer;
    text-align: left;

}
.projecthamburger.active::before {
    content: "\2715 Close";
}


}