



.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 600px;
    background: white;
    box-shadow: 0 30px 50px white;
}


.container .slide .item{
    height: 20px;
    width: 50%;
}
.container .slide .item{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50px #505050);
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}


.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: white;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}

.slide .item:nth-child(2) .content{
    display: block;
}

.content .name{
    color: #8b0303;
    text-shadow: 4px 4px rgb(245, 240, 240);
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    text-shadow: 3px 3px rgb(80, 0, 117);
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}



@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    top: 550px;
    bottom: 20px;
}

.button button{
    width: 60px;
    height: 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}


.button button:hover{
    background: #ababab;
    color: #fff;
}





/* ----------------sampels----------- */










#container__samp {
   
    display: grid;
    place-items: center;
}

#slider-container__samp{
    height: 300px;
    width: 85vw;
    max-width: 1400px;
    position: relative;
    overflow: hidden;
    padding: 20px;

}

#slider-container__samp .btn__samp{
    position: absolute;
    top: calc(50% - 2px);
    height: 15px;
    width: 15px;
    border-left: 8px solid #f50303;
    border-top: 8px solid #f30202;
    cursor: pointer;
}

#slider-container__samp .btn__samp:hover {
    transform: scale(1.2);
}
#slider-container__samp .btn__samp.inactive {
    border-color: #000000;
}

#slider-container__samp .btn__samp:first-of-type {
    transform: rotate(-45deg);
    left: 10px;
}
#slider-container__samp .btn__samp:last-of-type {
    transform: rotate(135deg);
    right: 10px;
}

#slider-container__samp #slider__samp{
    display: flex;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}
#slider-container__samp #slider__samp .slide__samp{
    height: 90%;
    margin: auto 10px;
    background-color: #b5b5b5;
    border-radius: 5px;
    box-shadow: 2px 2px 4px 2px white, -2px -2px 4px 2px white;
    display: grid;
    place-items: center;
}

.slide__samp__img{
    width: 250px;
    height: 250px;
}

#slider-container__samp #slider__samp .slide__samp span{
    color: red;
    font-size: 60px;
}

.head__samp {
    font-size: 8rem;
    place-items: center;
    margin-top: 40px;
}