.animated-box{
    width: 384px;
    height: 361px;
    position: relative;
}

.animated-box:hover{
    cursor: pointer;
}

.animated-box .content{
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    padding-left: 24px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: height 0.2s;
}

.animated-box .content span{
    font-size: 22px!important;
}

.animated-box .content p {
    display: none;
}

.animated-box .content a {
    font-weight: bold;
}

.animated-box .content a:after{
    content: url("../images/plus.svg");
    display: inline-block;
    margin-left: 15px;
    height: 19px;
    vertical-align: middle;
}

.animated-box:hover .content{
    height: 100%
}

.animated-box:hover .content p{
    display: block;
}

@media screen and (min-width: 1025px) and (max-width: 1599px){
    .animated-box{
        width: 300px;
        height: 321px;
    }

    .animated-box .content{
        padding-right: 15px;
    }

    .animated-box .content{
        padding-right: 24px;
    }
}

@media screen and (max-width: 1279px){
    .animated-box{
        width: 330px;
        height: 336px;
        margin: auto auto 25px;
    }

    .animated-box .content{
        padding-right: 24px;
    }
}

@media screen and (max-width: 1024px){
    .animated-box{
        width: 280px;
        height: 306px;
    }
}

@media screen and (max-width: 767px){
    .animated-box{
        width: 100%;
        height: 306px;
    }
}