.news .heading-title {
    font-size: 75px;
    position: relative;
    color: #ed7e30;
    font-family: 'BebusNeue-Regular';
}

.news .heading-title:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 405px;
    right: 0;
    height: 50px;
    border-top: 1px solid #002347;
}

.news .pr-data img {
    width: 100%;
    height: 450px;
}

.news .pr-data .pr-date p {
    color: #ed7e30;
    font-family: 'BebusNeue-Regular';
    font-size: 18px;
}

.news .pr-data .pr-title {
    font-family: 'BebusNeue-Regular';
}

.news .pr-data .pr-description {
    font-family: 'Lato-Light';
    font-size: 15px;
}

.news .pr-data .pr-description p {
    font-family: 'Lato-Light' !important;
    font-size: 15px;
}

.news .pr-data .read-more-btn button {
    position: absolute;
    bottom: 0;
    transition: 2s all ease;
    z-index: 1;
    background-color: #002347;
    color: #fff;
}

.news .pr-data .read-more-btn button::before {
    content: "";
    position: absolute;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-color: #ee7e30;
    border-radius: 5px;
    transition: all 0.3s;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 100%;
}

.news .pr-data .read-more-btn button:hover {
    color: #fff;
    transition: all 0.6s;
}

.news .pr-data .read-more-btn button:hover::before {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.news .pr-container {
    border: 1px solid #ee7e30;
    border-radius: 5px;
    height: 280px;
    margin: 20px 0px;
}

.news .pr-container h6.news-date {
    color: #ee7e30;
    font-family: 'BebusNeue-Regular';
    font-size: 13px;
    margin-top: 15px;
}

.news .pr-container p.news-description {
    font-family: 'BebusNeue-Regular';
    font-size: 16px;
}

.news .pr-container:hover {
    background: #ee7e30;
}

.news .pr-container:hover>h6.news-date {
    color: white !important;
}

.news .pr-container:hover>p.news-description {
    color: #002347 !important;
}

@media screen and (max-width:768px) {
    .news .heading-title {
        font-size: 45px;
    }
    .news .heading-title:after {
        left: 180px;
        height: 30px;
    }
    .news .pr-data img {
        width: 100%;
        height: auto;
    }
    .news .pr-data .pr-description {
        font-size: 15px;
    }
    .news .pr-data .read-more-btn button {
        bottom: auto;
    }
    .news .pr-container {
        margin: 10px 0px;
        height: 295px;
    }
}

.news .content {
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 5px;
    height: auto;
}

.news .content:hover {
    height: auto;
}

.news .content .content-overlay {
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.news .content:hover .content-overlay {
    opacity: 1;
}

.news .content:hover .content-image {
    opacity: 0.3;
    transform: scale(1.25);
}

.news .content-image {
    width: 100%;
    transition: 0.5s all ease-in-out;
    border-radius: 5px;
    /* height: 100%; */
    height: 300px;
}

.news .image-caption {
    /* height: 35%; */
    background: linear-gradient(0deg, black, transparent);
    bottom: 0;
    transition: all 0.3s ease-in-out 0s;
    position: absolute;
    padding: 20px 0px;
    width: 100%;
}

.news .content:hover .image-caption {
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, -75%);
    transform: translate(0%, -75%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    bottom: 0px;
    height: 80%;
    display: none;
}

.news .content-details {
    position: absolute;
    width: 100%;
    top: 70%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.news .content:hover .content-details {
    top: 65%;
    left: 50%;
    opacity: 1;
}

.news .content-details h2 {
    height: 90px;
}

.news .content-details p {
    color: #fff;
    font-size: 13px;
}

.news .content-details .fadeIn-top {
    top: 90%;
}

.news .content-details .read-more-icon {
    position: relative;
    top: 20px;
    left: 190px;
    right: 0;
    transition: all 0.3s ease-in-out 0s;
    width: 15px;
}

.news .content:hover .read-more-icon {
    -moz-transform: translate(0%, -75%);
    transform: translate(85px, 0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    left: 0px;
    /* right: 100%; */
}

@media screen and (max-width:520px) {
    .news .content-image {
        height: 100%;
    }
    .news .content,
    .news .content:hover {
        height: 112%;
    }
    .news .image-caption {
        /* height: 90px; */
        bottom: 0;
        position: absolute;
        padding: 0;
    }
    .news .image-caption h2 {
        font-size: 12px !important;
    }
    .news .content:hover .content-details {
        top: 60%;
        left: 50%;
        opacity: 1;
    }
    .news .content-details h2 {
        height: 55px;
        font-size: 12px !important;
    }
    .news .content-details p {
        font-size: 10px;
        margin-bottom: 6px;
    }
}