*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.container{
    width: 1000px;
    height: 400px;
    background: #ccc;
    margin: 120px auto;
    display: flex;
}
.col{
    height: 100%;
    flex: 1;
    color: black;
    box-sizing: border-box;
    padding: 25px;
    position: relative;
    transition: 0.6s;
}
.col:nth-child(1){
    background: rgb(255, 145, 0);
}
.col:nth-child(2){
    background: rgb(0, 255, 149);
}
.col:nth-child(3){
    background: rgb(0, 119, 255);
}
h2{
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.caption{
    max-width: 230px;
    font-size: 12px;
    margin: 28px 0;
    display: none;
}
.caption button{
    border: 1px solid #fff;
    background: transparent;
    outline: none;
    padding: 8px 18px;
    color:#fff;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 12px;
}
.col img{
    width: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.col:hover{
    flex-grow: 2.5;
}
.col:hover .caption{
    display: block;
}
.col:hover h2{
    text-align: left;
}
.caption{
    font-size: 22px;
}