.slider{
    width: 100%;
    height: 80vh;
    margin-top: -20px;
    position: relative;
}
.image img{
    width: 100%;
    height: 80vh;
}
.title_slide{
    position: absolute;
    top: 200px;
    right: 200px;
    color: rgb(255, 255, 255);
}
.content_slide{
    position: absolute;
    top: 270px;
    right: 200px;
    color: rgb(255, 255, 255);
}
.btn{
    position: absolute;
    top: 350px;
    right: 200px;
    background-color: white;
    padding: 5px 30px;
    border-radius: 20px;
    cursor: pointer;
}
.btn a{
    color: black;
    font-weight: bold;
    font-size: 18px;
}
.btn:hover,
.btn:hover a{
    color: white;
    background-color: rgba(0, 0, 0, 0.905);
}

.items{
    display: grid;
    grid-template-columns: repeat(2,50%);
    margin: 100px 50px;
}
.item_1 .image img{
    width: 100%;
} 
.item_1,
.item_2,
.item_3,
.item_4{
    position: relative;
}
.item_1 .title_item,
.item_2 .title_item,
.item_3 .title_item,
.item_4 .title_item{
    position: absolute;
    top: 100px;
    right: 90px;
    font-weight: bold;
    font-size: 20px;
    color: rgb(255, 255, 255);
}
.item_1 .content_item,
.item_2 .content_item,
.item_3 .content_item,
.item_4 .content_item{
    position: absolute;
    top: 150px;
    right: 90px;
    font-weight: bold;
    font-size: 18px;
    color: rgb(255, 255, 255);
}
.item_1 .btns,
.item_2 .btns,
.item_3 .btns,
.item_4 .btns{
    position: absolute;
    top: 200px;
    right: 70px;
    display: grid;
}
.item_1 .btns a,
.item_2 .btns a,
.item_3 .btns a,
.item_4 .btns a{
    padding: 5px 80px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    background-color: black;
    border-radius: 20px;
}
.item_1 .btns a:hover,
.item_2 .btns a:hover,
.item_3 .btns a:hover,
.item_4 .btns a:hover{
    background: #305a66;
}
.Products{
    display: grid;
    grid-template-columns: repeat(3,auto);
    margin: 80px 50px;
}
.Product{
    border: 1px solid rgb(230, 230, 230);
    margin: 10px 10px;
    transition: .4s;
}
.Product:hover{
    box-shadow: 0px 0px 15px #444;
}
.Product .image img{
    width: 100%;
    height: 50vh;
}
.name_Product{
    text-align: center;
    color: rgb(45, 45, 45);
    h2{
        margin-bottom: 0px;
    }
}
.color_Product{
    text-align: center;
    color: rgb(59, 58, 58);
    p{
        margin-top: 0px;
    }
}
.price_Product{
    text-align: center;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
}
.Product .btns button{
    background-color: #305a66;
    border: 0;
    outline: none;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: white;
}
.Product .btns button:hover{
    background-color: #1d343b;
}
@media screen and (min-width:800px){
    .slider{
        width: 100%;
    }
}
@media screen and (max-width:1000px){
    .title_slide{
        position: absolute;
        top: 200px;
        right: 80px;
        color: rgb(255, 255, 255);
    }
    .content_slide{
        position: absolute;
        top: 270px;
        right: 80px;
        color: rgb(255, 255, 255);
    }
    .slider .btn{
        position: absolute;
        top: 350px;
        right: 50px;
    }
    .item_1 .title_item,
    .item_2 .title_item,
    .item_3 .title_item,
    .item_4 .title_item{
        position: absolute;
        top: 100px;
        right: 50px;
    }
    .item_1 .content_item,
    .item_2 .content_item,
    .item_3 .content_item,
    .item_4 .content_item{
        position: absolute;
        top: 150px;
        right: 50px;
        font-weight: bold;
        font-size: 18px;
        color: rgb(255, 255, 255);
    }
    .item_1 .btns,
    .item_2 .btns,
    .item_3 .btns,
    .item_4 .btns{
        position: absolute;
        top: 200px;
        right: 10px;
        display: grid;
    }
    .items{
        display: grid;
        grid-template-columns: repeat(1,100%);
    }
    .Products{
        display: grid;
        grid-template-columns: repeat(1,100%);
    }
}