.imgs_01 {
    position: relative;
    width: 100vw;
    height: 400px;
    background-color: antiquewhite;   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.imgs_02 {
    width: 100vw;
    height: 600px;
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

#slides {
    position: relative;
    width: 500px;
    height: 340px;
    border-radius: 05px;
    box-shadow:0 2px 3px 0 rgba(0, 0, 0, 0.651);
    transition: all 0.6s cubic-bezier(0.65, 0.84, 0.44, 1);
}

#slides::after{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow:0 5px 16px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.65, 0.84, 0.44, 1);
}

#slides:hover{
    transform: scale(1.15,1.15);
}

#slides_02 {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 05px;
    box-shadow:0 2px 3px 0 rgba(0, 0, 0, 0.651);
    transition: all 0.6s cubic-bezier(0.65, 0.84, 0.44, 1);
}

#slides_02::after{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow:0 5px 16px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.65, 0.84, 0.44, 1);
}

#slides_02:hover{
    transform: scale(1.25,1.25);
}