@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background-color: #f1f1f1;
    overflow: hidden;
}
.container{
    width: 600px;
    height: 100ch;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;

}
.card{
    width: 350px;
    height: 600px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px 0;
    position: relative;
}
.card-item{
    width: 100%;
    height: 100%;
}
.card-top{
    width: 100%;
    height: 60%;
    background: #0088d2;
    border-radius: 30px;
    color: #fff;
}
.icons{
    display: flex;
    justify-content: space-between;
}
.icons img{
    cursor: pointer;
    padding: 2em;
}
.icons img.disable{
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.card-top h3{
    font-size: 20px;
    padding-left: 2em;
    font-weight: 400;
}
.card-top h1{
    font-size: 30px;
    padding-left: 1.3em;
    font-weight: 600;
}
.card-bottom{
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.card-bottom h3{
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}
.card-bottom p{
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;   
}
.buttom{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    margin-top: 15px;
    font-size: 16px;
    text-decoration: none;
    color: #0088d2;
    border: 2px solid #0088d2;
    border-radius: 10px;
    transition: all 0.5s;
}
.buttom:hover{
    background: #0088d2;
    color: #fff;
}
#tenis1, #tenis2{
    width: 450px;
    position: absolute;
    top: 190px;
    transition: 1s;
}
#tenis1{
    left: -50px;
}
#tenis2{
    left: -650px;
}