a,
a:hover {
    text-decoration: none;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.news-slider__wrp {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.featuredCards .card {
    width: 400px;
    flex-shrink: 0;
}

@media screen and (max-width: 992px) {
    .featuredCards .card {
        width: 340px;
    }
}

.featuredCards .card.swiper-slide {
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.featuredCards .card.swiper-slide-active,
.featuredCards .card.swiper-slide-prev,
.featuredCards .card.swiper-slide-next {
    opacity: 1;
    pointer-events: auto;
}

.news-slider__ctr {
    position: relative;
    z-index: 12;
}

.news-slider__arrow {
    background: #fff;
    border: none;
    display: inline-flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 26px 6px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 12;
    cursor: pointer;
    outline: none !important;
}

.news-slider__arrow:focus {
    outline: none !important;
}

.news-slider__arrow .icon-font {
    display: inline-flex;
}

.news-slider__arrow.news-slider-prev {
    left: 15px;
    transform: translateY(-50%);
}

.news-slider__arrow.news-slider-next {
    right: 15px;
    transform: translateY(-50%);
}

.news-slider__pagination {
    text-align: center;
    margin-top: 50px;
}

.news-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 10px;
    display: inline-block;
    margin: 0 5px;
    border-radius: 20px;
    transition: opacity 0.5s, background-color 0.5s, width 0.5s;
    transition-delay: 0.5s, 0.5s, 0s;
}

.darkTheme .news-slider__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.2;
}

.lightTheme .news-slider__pagination .swiper-pagination-bullet {
    background: #222222;
    opacity: 0.2;
}

.news-slider__pagination .swiper-pagination-bullet-active {
    width: 100px;
    transition-delay: 0s;
}

.darkTheme .news-slider__pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

.lightTheme .news-slider__pagination .swiper-pagination-bullet-active {
    background: #222222;
    opacity: 1;
}

@media screen and (max-width: 576px) {
    .news-slider__pagination .swiper-pagination-bullet-active {
        width: 70px;
    }
}

.featuredCards .card {
    padding: 40px;
    border-radius: 10px;
    /*display: block;*/
    transition: all 0.3s;
}

.darkTheme .featuredCards .card {
    color: #fff;
}

.lightTheme .featuredCards .card {
    color: #222222;
}

@media screen and (min-width: 800px) {
    .featuredCards .card:hover {
        /*color: #222222;*/
        transition-delay: 0.1s;
    }

    .featuredCards .card:hover .news-date,
    .featuredCards .card:hover .news__title,
    .featuredCards .card:hover .news__txt {
        opacity: 1;
        transition-delay: 0.1s;
    }

    .featuredCards .card:hover .news__img {
        box-shadow: none;
    }
}

.featuredCards .card.active {
    color: #222222;
}

.featuredCards .card.active .news-date,
.featuredCards .card.active .news__title,
.featuredCards .card.active .news__txt {
    opacity: 1;
}

.featuredCards .card.active .news__img {
    box-shadow: none;
}

@media screen and (max-width: 992px) {
    .featuredCards .card {
        padding: 30px;
    }
}

@media screen and (max-width: 576px) {
    .featuredCards .card {
        padding: 20px;
    }
}

.news-date {
    font-family: interstate, sans-serif;
    font-weight: 400;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid;
    display: inline-block;
    /*opacity: 0.7;*/
    transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
    .news-date {
        margin-bottom: 10px;
        display: inline-flex;
        align-items: center;
        padding-bottom: 0;
    }
}

.news-date__title {
    display: block;
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 500;
}

@media screen and (max-width: 576px) {
    .news-date__title {
        margin-right: 10px;
    }
}

.news-date__txt {
    font-family: interstate, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.news__title {
    font-family: interstate, sans-serif;
    font-weight: 400;
    font-size: 25px;
    /*opacity: 0.7;*/
    margin-top: 10px;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

@media screen and (max-width: 576px) {
    .news__title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}

.news__txt {
    font-family: merriweather, serif;
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.6em;
    font-size: 15px;
    /*opacity: 0.7;*/
    transition: opacity 0.3s;
}

.news__img {
    border-radius: 10px;
    box-shadow: 0 6px 12px 6px rgba(0, 0, 0, 0.25);
    height: 200px;
    margin-top: 30px;
    width: 100%;
    transition: all 0.3s;
    transform-origin: 0% 0%;
}

@media screen and (max-width: 576px) {
    .news__img {
        height: 180px;
        margin-top: 20px;
    }
}

.news__img img {
    max-width: 100%;
    border-radius: 10px;
    height: 100%;
    width: 100%;
}

.swiper-two {
    padding: 20px 12px 30px 12px;
}

@media (min-width: 992px) {
    .swiper-two {
        padding: 20px 20px 30px 20px;
    }

}

.darkTheme .featuredCards .card:hover{
    background-color: #0e0e0e;
    box-shadow: 0 6px 16px 6px rgba(0, 0, 0, 0.25);
}

.lightTheme .featuredCards .card:hover {
    background-color: white;
    box-shadow: 0 6px 16px 6px rgba(0, 0, 0, 0.25);
}

.featuredCards img {
    width: 100%;
    display: block;
}

.featuredCards .card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: inherit;
    border: none;
}

.featuredCards .card__wrap--outer {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.featuredCards .card__wrap--inner {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.featuredCards .flexible {
    flex-grow: 1;
}

.featuredCards .swiper-slide {
    height: auto;
}

.darkTheme .featuredCards hr {
    background-color: white;
}