/* blogCard SLIDER */
.blogCard-slider-section {
    background: #323137;
    color: #FFF;
    padding: 70px 0;
}
.blogCard-slider-section h3, .blogCard-slider-section .blogCard__h3style {
    max-width: 30vw;
    margin: 0 0 50px 5vw;
}
.fr-img {
    display: block;
    line-height: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    transition: all 1s ease-out;
}
.blogCard-item:hover img {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.blogCard-slider ul {
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}
.blogCard-slider ul .blogCard-item {
    display: inline-block;
    min-width: 22vw;
    width: 22vw;
    margin: 0 .5vw 0 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}
.blogCard-item {
    cursor: pointer;
}
.blogCard-item a {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
}
.blogCard-item a:after {
    content: '';
    display: block;
    width: 100%;
    height: 150%;
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    transition: all .3s ease;
    background: rgba(0, 0, 0, 0.15);
}
.blogCard-item:hover a:after {
    background: rgba(0, 0, 0, 0.15);
}
.blogCard-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px 10%;
}
.blogCard-item-content:before {
    content: '';
    display: block;
    width: 100%;
    height: 150%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0, 0, 0, 0.8) 80%);
} .h4-title, .bci-title {
    font-weight: 600;
    line-height: 1.2;
    font-size: 25px;
    font-size: 1.6vw;
    position: relative;
    z-index: 1;
}
.bci-subtitle {
    font-size: 12px;
    font-size: 1vw;
    position: relative;
    z-index: 1;
    display: flex;
    line-height: 1.4;
    margin-top: 20px;
}
.bci-subtitle-tag {
    margin-right: 20px;
}
.blogCard-item.active {
    cursor: ew-resize;
}
.blogCard-slider ul li:first-child {
    margin-left: 5vw;
    cursor: ew-resize;
}
.blogCard-item:before {
    display: none;
}
/* pg-slider-controls */
.pg-slider-controls {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.pgsc-line {
    height: 1px;
    background: #FFF;
}
.pgsc-line-l {
    width: calc(5vw - 10px);
    min-width: calc(5vw - 10px);
}
.pgsc-line-title {
    display: block;
    line-height: 0;
    color: #FFF;
    padding: 0 10px;
    white-space: nowrap;
    font-size: 16px;
    font-size: 1.5vw;
}
.pgsc-line-c {
    width: 90vw;
}
.pgsc-line-arrows {
    display: flex;
}
.pgsc-arrow {
    padding: 15px;
    cursor: pointer;
    display: block;
    line-height: 0;
}
.pgsc-arrow.disabled {
    opacity: .5;
}
@media screen and (min-width: 1900px) {
    .pgsc-line-title {
       font-size: 18px; 
    }.h4-title,&nbsp;.bci-title {
        font-size: 25px;
    }
    .bci-subtitle {
        font-size: 14px;
    }
}
@media screen and (max-width: 1050px) {
    .blogCard-slider-section h3, .blogCard-slider-section .blogCard__h3style {
        max-width: 50%;
    }
    .blogCard-slider ul .blogCard-item {
        min-width: 25vw;
        width: 25vw;
    }
}
@media screen and (max-width: 700px) {
    .blogCard-slider-section h3, .blogCard-slider-section .blogCard__h3style {
       margin: 0 20px 50px;
       text-align: center;
    }
   .pgsc-line-title {
       font-size: 14px; 
    } .h4-title, .bci-title {
        font-size: 18px;
    }
    .bci-subtitle {
        font-size: 12px;
    }
    .blogCard-slider-section h3, .blogCard-slider-section .blogCard__h3style {
        max-width: 100%;
    }
    .blogCard-slider ul .blogCard-item {
        min-width: 45vw;
        width: 45vw;
    }
}
@media screen and (max-width: 500px) {
    .blogCard-slider ul .blogCard-item {
        min-width: 75vw;
        width: 75vw;
    }
    .pgsc-line {
        display: none;
    }
    .pgsc-line-arrows {
        width: 100%;
        padding: 0 17%;
        justify-content: space-between;
    }
    .pgsc-line-title {
        position: absolute;
        left:50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
    }
}
.blogCard-item a svg{
    width: 40%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.9s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.blogCard-item a svg.play_round {
    left: 49%;
    width: 55%;
}
.blogCard-item .fr-img{
    /* filter: saturate(0.2) brightness(1) contrast(0.8); */
    transition: filter .5s ease;
}
.blogCard-item a:hover .fr-img {
    filter: inherit;
}