
/*------------------------------------------------------------------
    website
-------------------------------------------------------------------*/
.web-container-logo{
    align-items: center;
    justify-content: center;
}
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform: translateX(calc(-250px * 7));
    }
}
.content1{
    width: 50rem;
    justify-content: left;
    justify-items: left;
}
.underline{
    border: 3px solid #9ACD32;
    padding: 1rem;
    border-radius: 5px;
}

.content1 h3{
    padding-top: 0.7rem;
    color: #9ACD32;
}
.slider-web{
    min-height: 18vh;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.slide-web img{
    height: 150px;
    width: auto;
}
@media screen and (max-width: 991px) {
    .slide-web img{
        height: 60px;
        width: auto;
    }
    @keyframes scroll{
        0%{
            transform:translateX(0);
        }
        100%{
            transform: translateX(calc(-100px * 7));
        }
    }
    .slider-web{
        min-height: 10vh;
        margin: auto;
        overflow: hidden;
        position: relative;
        width: auto;
    }
}

.slide-track{
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(250px * 7);
}
.slide-web{
    height: auto;
    width: auto;
}


/*------------------------------------------------------------------
    website
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
 previous works wed
-------------------------------------------------------------------*/
.shop-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 40vh;
    margin: 0;
}
.previous-works-web{
    width: 100%;
    background-color: #2e2d2d;
}

.previous-works-web h1{
    font-weight: normal;
    font-size: 3rem;
    position: relative;
    margin: 10px 0;
    padding-top: 0.2rem;
    color: #fff;
    text-align: center;
}

.previous-works-web span{
    color: #090;
}
.previous-works-web h1::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: #090;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation: animate 4s linear infinite;  
}
@keyframes animate{
    0%{
        width: 100px;
    }
    50%{
        width:200px;
    }
    100%{
        width: 100px;
    }
}

.shop-wrapper{
    width: 95%;
    text-align: center;
    padding: 20px 0;
}

.shop-inner-content{
    font-size: 1.3rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffff;
}

.shop-main-content{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-row-gap: 5px;
    grid-column-gap: 5px;
}
.shop-main-content .box-web{
    position:relative;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 15px 15px 40px rgb(0, 0, 0, .15);
    height: 450px;
    overflow: hidden;
}

.shop-main-content .box-web:hover::before{
    top: 0;
    right: calc(100% - 5px);
    z-index: 8;
    opacity: 2;
    transform:scale(0.95)
}
.shop-main-content .box-web img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.shop-main-content .box-web:hover {
    opacity: 2;
    transform:scale(0.95)}

    .shop-main-content .box-web .img-text{
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(57, 92, 50, 0.733);
        width: 100%;
        height: 100%;
        top: 0;
        right: 100%;
        transition: al 0.5s ease-in-out;
    }
    .shop-main-content .box-web:hover .img-text{
        top: 0;
        right: 0;
    } 
    
    .box-web .img-text h3{
        font-size: 1rem;
        color: rgb(100, 228, 143);
        font-weight: 100;
    }

    .btnweb{
        margin-top: 1rem;
        display: inline-block;
        border: #fff 2px solid;
        color: #9ACD32;
        background: none;
        font-size: 1rem;
        padding: 1rem 1.2rem;
    
        &:hover{
            background: #999;
            color: #e2e2e2;
            border: #e2e2e2 2px solid;
        }
    }
    

/*------------------------------------------------------------------
    previous works wed
-------------------------------------------------------------------*/