html{
    margin: 0;
    padding: 0;
}
body{
    margin: 0;
    padding: 0;
}
#wrap{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#wrap::-webkit-scrollbar{
    display: none;
}
.section{
    position: absolute;
    top: 200px;
    display: flex;
    width: 70%;
    left: 15%;
    margin: 0 auto;
    justify-content: space-between;
}
.section_item{
    position: relative;
    margin-top: 20px;
    width: 30%;
    transition: all 0.5s ease;
}
.section_item:hover{
    margin-top: 0;
}
.settion_btn{
    position: absolute;
    left: 40%;
    top: 63%;
    font-size: 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    cursor: pointer;
}
.settion_btn:hover{
    background-color: #e7e8e9;
}