/* Application ================================================================*/
.application-list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 90px;
}

.application-list a {
    width: calc(100% / 4 - 19px);
    margin-right: 25px;
    margin-bottom: 35px;
    display: block;
    text-align: center;
}


@media only screen and (min-width: 993px) {
    .application-list a:nth-child(4n+4) {
        margin-right: 0px;
    }
}

.application-list a:hover .pic img {
    transform: scale(1.1);
}

.application-list a:hover .name {
    color: #41A777;
}

.application-list span {
    display: block;
}

.application-list .pic {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.application-list .pic img {
    width: auto;
    max-height: 160px;
    border: 1px solid #C0C0C0;
    float: left;
    transition: all .2s;
}

.application-list .name {
    font-size: 18px;
    margin-top: 10px;
    text-align: center;
    color: #272727;
    transition: all .2s;
}

@media only screen and (max-width: 992px) {
    .application-list {
        justify-content: space-between;
    }

    .application-list a {
        width: calc(50% - 54px);
        margin-right: 0px;
    }
}

@media only screen and (max-width: 480px) {
    .application-list a {
        width: calc(50% - 10px);
    }

    .application-list .pic img {
        max-height: 110px;
    }
}

@media only screen and (max-width: 320px) {
    .application-list a {
        width: 100%;
    }

    .application-list .pic img {
        max-height: 1100px;
    }
}