html, body{
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body > main,
body > section{
    flex: 1;
}

.applications{
    padding-top: 55px;
}
.applyContainer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.875rem;
}
.applyBox{
    max-width: 300px;
    width: 100%;
    background: #0A0A0A;
}

.applyImg{
    position: relative;
}
.applyImg.close{
    filter: grayscale(1);
}
.applyImg img{
    max-width: 300px;
    width: 100%;
}
.applyImg span{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-family: 'Panton Demo Black', sans-serif;
    font-size: 1.5625rem;
    text-shadow: 2px 2px 5px rgba(255,255,255,0.25);
    width: 100%;
    text-align: center;
}
.applyContent{
    padding: .3125rem .9375rem 1.25rem;
    width: 100%;
}
.applyContent p{
    font-size: .875rem;
}
.applyContent .quote{
    margin: .5rem 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    border-left: 3px solid #1593EE;
    border-radius: 10px;
}
.applyContent .quote span{
    font-size: .8125rem;
    color: #A5A5A5;
    margin-left: 3px;
}
.applyContent .applyInfo{
    font-size: .8125rem;
    text-align: center;
    margin-bottom: .9375rem;
}
.applyContent .btnApply{
    display: block;
    font-size: .875rem;
    font-weight: 600;
    background: #1593EE;
    box-shadow: 2px 2px 5px rgba(21, 147, 238, 0.25);
    width: 100%;
    padding: .625rem;
    text-align: center;
}