.DownloadComponent {
    padding: 4rem;
    background-color: #01142f;
    border-top: 4px solid #ffffff;
}

.DownloadComponent .btn-blue {
    border: 1px solid #1ca8fc;
    background-color: #fff;
    color: #01142f;
    width: 90%;
    padding: 2rem 3rem;
    font-size: 1.1rem;
}

.DownloadComponent .btn-blue:hover {
    background-color: #1ca8fc;
    color: #ffffff;
}

.DownloadComponent .file-types {
    padding: 0 2rem;
    position: relative;
}

.DownloadComponent .file-types > article {
    width:100%;
    position: relative;
    border: 1px solid #ffffff;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.DownloadComponent .file-types > article:hover {
    box-shadow: 0 0 20px rgba(255,255,255, 0.5);
}

.DownloadComponent .image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
}

.DownloadComponent .file-box .info {
    text-align: center;
    vertical-align: center;
    position: absolute;
    /*height: 10rem;*/
    padding: 10px;
    bottom: 0;
    top: 50%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 100;
    -webkit-transition: all .6s ease-out;
    -moz-transition: all .6s ease-out;
    -o-transition: all .6s ease-out;
    transition: all .6s ease-out;
}
.DownloadComponent .file-box:hover .info {
    top:0;
    background-color: rgba(0, 0, 0, 0.7);
}

.DownloadComponent .info, .DownloadComponent .info h5 {
    color: #ffffff;
    font-weight: 600;
}

.DownloadComponent .info .download {
    position: absolute;
    bottom: 0;
    right: 1rem;
    color: #ffffff;
}

.DownloadComponent .file-download {
    text-decoration: none;
    color: #ffffff;
}

.DownloadComponent .brl-2 {
    border-left: 5px solid #1ca8fc;
}

.DownloadComponent .br:hover {
    background-color: #1ca8fc;
}

.DownloadComponent .brl-2 h4, .DownloadComponent .brl-2 h3 {
    color: #ffffff;
}

.DownloadComponent .button-x.selected {
    background-color: #1ca8fc;
    color: #ffffff;
}

.DownloadComponent .br {
    border-bottom: 1px solid #1ca8fc;
    padding: 1rem 0;
}