

.header_desktop {
    display: block;
}

.header_mobile {
    display: none;
}

.production_category {
    position: relative;
    top: 300px;
    width: 100%;
    /* height: 95vh; */
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.row {
    width: 100%;
    display: flex;
}

.row .container {
    position: relative;
    height: 850px;
    width: 33.333%;
    text-align: center;
    display: flex;
    flex-direction: column;
}


.row .container h1 {
    position: absolute;
    top: 0;
    left:15%;
    display: block;
    color: #000;
    font-family: Montserrat;
    font-size: 45px;   
    text-transform: uppercase;
    text-align: center;
    z-index: 10;
    
}



.row .container .main {  
    z-index: 5;
    transition: 0.5s ease-in-out all;
}

.row .container .main img {
    width: 100%;
    height: 850px;
    object-fit: cover;
    object-position: 70% 25%; 
    
    z-index: 5;
    transition: 0.5s ease-in-out all;
}


.row .container .hidden {
    width: 100%;
    position: absolute;
    top: 0;
    display: none;
    z-index: 3;
    
}


.row .container .hover {
    /* position: absolute; */
    top: 150;
    left: 0;
    width: 100%;
    height: 630px;
    object-fit: cover;
    opacity: 1;
    z-index: 2;
}


.row .container p {
    display: block;
    margin-top: 20px;
    color: #000;
    font-family: Montserrat;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
}


.production_category .category_name h1 {
    display: block;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 100px;
}

.production_category .container ul {
    /* position: absolute;
    bottom: 0; */
    display: flex;
    justify-content: space-around;
}

.production_category .container ul li {  
    display: flex;
    flex-direction: column;
    align-items: center;
}

.production_category .row:nth-child(1) .container ul li span, .production_category .row:nth-child(2) .container:nth-child(1) ul li span {
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #2e7069;
    backdrop-filter: blur( 12px );
    border-radius: 6px;
}

.production_category .row:nth-child(2) .container ul li span , .production_category .row:nth-child(3) .container ul li span{
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #1096ec;
    backdrop-filter: blur( 12px );
    border-radius: 6px;
}


.production_category .container ul li p {
    font-size: 25px;
    text-transform: none;
    font-weight: 400;
    margin-top: 0;
}


