*{
    padding: 0;
    margin: 0;
    font-family: 'popppins', sans-serif;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #928dab;
}
.container .card{
    position: relative;
    width: 320px;
    height: 450px;
    background: #1f1c2c;
    border-radius: 20px;
    overflow: hidden;
}
.container .card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1bbfe9;
    clip-path: circle(150px at 80% 20%);
    transition: 0.5s ease-in-out;
}
.container .card:hover::before{
    clip-path: circle(300px at 80% -20%);
}
.container .card:after{
    content: "Nike";
    position: absolute;
    top: 40%;
    left: -5%;
    font-size: 10em;
    font-weight: 800;
    font-style: italic;
    color: #ffffff15;
}
.container .card .imgBox{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: 0.5s;
}
.container .card .imgBox img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    width: 270px;
}
.container .card:hover .imgBox{
    top: 0%;
    transform: translateY(-25%);
}
.container .card .contentBox{
position: absolute;
bottom: 0;
width: 100%;
height: 100px;
text-align: center;
transition: 1s;
z-index: 90;
}
.container .card:hover .contentBox{
    height: 210px;
}
.container .card .contentBox h2{
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}
.container .card .contentBox .size,
.container .card .contentBox .color{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px, 20px;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}
.container .card:hover .contentBox .size{
    opacity: 1;
    visibility: visible;
    transition-delay: .5s;
}
.container .card:hover .contentBox .color{
    opacity: 1;
    visibility: visible;
    transition-delay: .6s;
}
.container .card .contentBox .size h3,
.container .card .contentBox .color h3{
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 10px;
}
.container .card .contentBox .size span{
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
    display: inline-block;
    color: #111;
    background: #fff;
    margin: 0 5px;
    transition: .5s;
    border-radius: 4px;
    cursor: pointer;
}
.container .card .contentBox .color span{
    width: 20px;
    height: 20px;
    background: #ff0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.container .card .contentBox .color span:nth-child(2) {
    background: #1bbf09;
}
.container .card .contentBox .color span:nth-child(3){
    background: #001aff;
}
.container .card .contentBox .color span:nth-child(4){
    background: #080481;
}
.container .card .contentBox a{
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}
.container .card:hover .contentBox a{
    opacity: 1;
    transform: translateY(10px);
    transition-delay: .7s;
    cursor: pointer;
}
h3{
    color: #ff0000;
    margin-top: 10px;
}