.middle-section {
    text-align: center;
    padding: 100px 0 0 0;
    animation: fadeIn 1s ease-in-out
}

.message-info h4 {
    font-size: 27px;
    margin: 0;
    font-weight: 500
}

.message-info p {
    color: #585858;
    font-weight: 400;
    font-size: 16px;
    margin-top: 8px
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pop {
    0% {
        transform: scale(.5);
        opacity: 0
    }
    100% {
        transform: scale(1);
        opacity: 1
    }
}

.app-portfolio-sec {
    margin-top: 420px
}

@media (max-width:1023px) {
    .app-portfolio-sec {
        margin-top: 400px
    }
}