.wow {
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-duration: 1s;
    -webkit-animation-duration: 1s
}

#articleInfo7 {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

#articleInfo7 .photoBox {
    width: 100%;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    position: relative;
    margin: auto;
    text-align: center;
}

#articleInfo7 .photoBox:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid #f7f7f7;
    display: none;
}

#articleInfo7 .photoBox img {
}

#articleInfo7 .info {
    width: 100%;
    margin: 60px 0 70px 0;
}

#articleInfo7 .info h3 {
    position: relative;
    padding: 0 0 0px;
    text-transform: uppercase;
    line-height: 120%;
    letter-spacing: 2.4px;
    font-size: 32px;
    font-weight: 500;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
    text-align: center;
}

#articleInfo7 .info:hover h3 {
    animation: animatedIcon 1s;
    -webkit-animation: animatedIcon 1s infinite linear;
    -moz-animation: animatedIcon 1s infinite linear;
    -ms-animation: animatedIcon 1s infinite linear;
    -o-animation: animatedIcon 1s infinite linear
}

#articleInfo7 .info p {
    animation-name: fadeInRight;
    -webkit-animation-name: fadeInRight;
    font-weight: 400;
    font-size: 25px;
    color: var(--info);
    letter-spacing: 2px;
    text-align: center;
}

#articleInfo7 .info article {
    margin: 30px 0 0;
    line-height: 200%;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    text-align: justify;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    #articleInfo7 .photoBox {
        width:100%
    }

    #articleInfo7 .info {
        position: relative;
        width: 100%;
    }


    #articleInfo7 .info article {
        margin-top: 10px;
    }

    #articleInfo7 .info p {
        margin-top: 40px;
    }
}

@media screen and (max-width: 480px) {
    #articleInfo7 .info {
        margin-top:50px;
    }

    #articleInfo7 .info p {
        margin-top: 10px;
        font-size: 20px;
    }

    #articleInfo7 .info h3 {
        color: var(--primary);
        font-size: 35px;
    }
}
