/* #region Overlay */
.overlay{
    position: relative;
    bottom: 60%;
    left: 100%;
    background-color: #008CBA;
    overflow: hidden;
    width: 0;
    height: 0%;

    transition: .5s ease;
}

.overlayContainer{
    position: absolute;
}

.inner{
    overflow: hidden;
}

.inner:hover .overlay {
    height: 100%;
    width: 100%;
    /* width: 500px; */
    left: 0;
}

.overlayText{
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
/* #endregion */

.recentNews {
    background-color: rgb(0, 0, 0)  
}

.recentNews .information-title {
    text-align:center;
    padding-top:30px;
    padding-bottom:30px;
    font-family: 'nimbus-sans-condensed', sans-serif;
    font-size:55px;
    font-weight:bold;
    color: #fff;
}

.information-title{
    margin: 0;
}

.recentNews .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* margin-bottom: 30px; */
    flex-direction: row;
}

.recentNews .ct-blog {
    margin-bottom: 30px;
    padding: 30px;
    width: 40%;
}

.ct-blog .inner {
    /* width: 30%; */
    background-color: #FFF;
    padding: 10px;
    transition: all 0.2s ease-in-out 0s;
    cursor: pointer;
    height: auto;
}

.ct-blog .inner:hover {
    background-color: #e6e6e6;
}

.ct-blog .fauxcrop {
    height: 180px;
    overflow: hidden;
}

.ct-blog .fauxcrop img {
    /* width: 30%; */
    width: 100%;
}

.ct-blog-content {
    display: table;
    padding: 30px 0 28px;
}

.ct-blog-content .ct-blog-date {
    border-right: 1px solid #95A5A6;
    display: table-cell;
    font-family: "Lato", sans-serif;
    padding: 0px 18px 0px 15px;
    text-align: center;
}

.ct-blog-content .ct-blog-date span {
    font-size: 16px;
    color: rgb(20, 117, 175);  
    font-weight: 700;
    display: block;
    line-height: 1;
}

.ct-blog-content .ct-blog-date strong {
    font-size: 25px;
    color: rgb(20, 117, 175);  
}

.ct-blog-content .ct-blog-header {
    color: #000;
    display: table-cell;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 1.1;
    padding: 0 20px;
    vertical-align: top;
}

.btn-news {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 30px;
    text-align: center;
}

.btn-news.btn-contests a {
    color: #fff;
    font-family: 'nimbus-sans-condensed', sans-serif;
    font-size: 24px;
    transition: all 0.2s ease-in-out 0s;
}

.btn-news.btn-contests a:hover {
    color: #000;
}

@media(min-width: 100px){
    .ct-blog .inner{
        height: 500px;
    }

    .ct-blog .fauxcrop{
        height: 300px;
    }
}

@media(max-width: 1000px){
    .recentNews .ct-blog{
        width: 70%;
        padding-left: 60px;
        padding-right: 60px;
    }
    
    /* .ct-blog .fauxcrop{
        height: 100px;
    } */
}

@media(max-width: 600px){
    .recentNews .ct-blog{
        width: 90%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .ct-blog-content .ct-blog-header{
        font-size: 15px;
    }
}

@media(max-width: 500px){
    .recentNews .ct-blog{
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .ct-blog-content .ct-blog-header{
        font-size: 15px;
    }

    .ct-blog-content .ct-blog-date strong {
        font-size: 10px;
        color: rgb(20, 117, 175);  
    }

    .ct-blog-content .ct-blog-header{
        font-size: 10px;
    }

    .overlayText{
        font-size: 15px;
    }
}