.news-carousel,
.carousel-inner,
.carousel-item {
    height: 100%
}


/* .container {
    display: flex;
    justify-content: center;
    align-items: center;
} */

.card {
    border-radius: 0px;
    height: 100%;
    width: 100%;
    /* box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); */
    border: none;
}

.carousel-item {
    z-index: 2;
    /*padding: 10px 25px;*/
}

.carousel-item>.row {
    margin: 0;
}

.news-slider-img-div {
    width: 100%;
    height: 100%;
}

.news-slider-img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-slider-text {
    background-color: #064694;
    /* text-align: center; */
    color: #fff;
}

.news-slider-text h3 {
    text-align: left;
    font-family: myFlamaLight;
    font-size: 1.5rem;
}

.news-slider-text P {
    color: #fff;
    text-align: justify;
    text-justify: inter-word;
}

.btn-readmore {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    border: 1px solid #fff;
    font-family: myFlamaLight;
    font-size: .875rem;
    margin-right: auto;
}

.btn-readmore:hover {
    background-color: #9CDBF8;
    color: #064694;
    border-radius: 0;
    border: 1px solid #064694;
}

.btn-next {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-color: #064694;
    border-radius: 50%;
    color: #fff;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
    z-index: 3;
}

.btn-next:hover {
    color: #9CDBF8;
}

.btn-prev {
    position: absolute;
    bottom: 15px;
    right: 80px;
    width: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #064694;
    color: #fff;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
    z-index: 3;
}

.btn-prev:hover {
    color: #9CDBF8;
}


/*-- vertical bootstrap slider --*/

.news-carousel .carousel-item-next.carousel-item-left,
.news-carousel .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.news-carousel .carousel-item-next,
.news-carousel .active.carousel-item-right {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100% 0);
}

.news-carousel .carousel-item-prev,
.news-carousel .active.carousel-item-left {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}


/*-- vertical carousel indicators --*/

.news-carousel-indicators {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 40px;
    right: -10px;
    left: auto;
    width: auto;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.news-carousel-indicators li {
    display: block;
    margin-bottom: 0px;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #E7E6DD;
    transition: all ease 0.6s;
    border-top: none;
    border-bottom: none;
}

.news-carousel-indicators li.active {
    background: #064694;
    width: 20px;
    border-radius: 25px;
}


/* Media Querys */


/* Small devices (landscape phones, 576px and up)*/

@media (min-width: 576px) {}


/* Medium devices (tablets, 768px and up)*/

@media (max-width: 768px) {
    .news-slider-text {
        height: 200px;
    }
    .news-slider-text P {
        height: 40px;
        overflow: hidden;
    }
    .news-slider-img-div {
        height: 200px;
    }
    .news-carousel-indicators li.active {
        background: #9CDBF8;
    }
}


/* Large devices (desktops, 992px and up)*/

@media (min-width: 768px) and (max-width: 992px) {
    .news-slider-img-div {
        height: 200px;
        /* background-color: azure; */
    }
}


/* Extra large devices (large desktops, 1200px and up)*/

@media (min-width: 1200px) {}