/* ---------------------------------------
               SERVICES
---------------------------------------- */

.grid-list.service-list {
    grid-gap: 15px;
}

.service-pres {
    position: relative;
}

.service-pres ul li {
    font-size: .9em;
    margin: 10px 0;
}

.service-pres .title {
    margin: 15px 0;
    padding-bottom: 15px;
    border-bottom: solid 1px #79797954;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-pres .title i {
    margin-left: 5px;
    font-size: 10px;
}

/* ---------------------------------------
               TAXONOMY
---------------------------------------- */

.tax-list {
    padding: 0 15px;
}

.category,
.topic {
    margin: 5px;
}

.category .tax-image, .topic .tax-image{
    position: relative;
}

.category .tax-image img, .topic .tax-image img{
    object-fit: cover;
}

.category .tax-image:after, .topic .tax-image:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 24, 44, 0.7);
    z-index: 1;
    mix-blend-mode: multiply;
    transition: background ease-in .1s;
}

.category .tax-image:hover:after,
.topic .tax-image:hover:after {
    background-color: transparent;
}

.tax-label {
    margin-top: 5px;
    font-size: 0.7em;
    line-height: 1em;
}

/* ------ CATEGORIES / TOPICS ------- */

.category .tax-image img {
    height: 130px;
}

.topic .tax-image img {
    height: 65px;
}

/* ---------------------------------------
               SPEAKER
---------------------------------------- */

.speaker-list > div{
    height: 100%;
}

.speaker-list .requested-speaker{
    position: absolute;
    z-index: 9;
    margin: 5px;
}

.speaker-list .image {
    position: relative;
    /* height: 200px; */
    /* overflow: hidden; */
}

.speaker-list .card-content p{
    line-height: 1.2em;
}

.speaker-list .main-cta {
    position: absolute;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity ease-in 0.1s;
    font-size: 0.8em;
}

.speaker-list:hover .main-cta {
    opacity: 1
}

.speaker-list .main-cta > span {
    width: 80%;
    max-width: 150px;
}

.slider-container .list-slider .speaker-list > div{
    min-height: 400px;
}

/* ------ FADE SLIDER ------- */

.fade-slider .speaker-list {
    margin: 10px;
}

.fade-slider .speaker-list .card-content .highlight-cats {
    font-size: 0.8em;
    margin-top: 10px;
}

.fade-slider .speaker-list img{
    height: 300px;
}

/* ------ BOARDROOM ADVISOR ------- */

.speaker-list.ba .image img{border-bottom: solid 3px #dba421;}

/* ------ BLOG ------- */

.blog-post .post-image img {
    /* overflow: hidden; */
    border-bottom: solid 5px #2196f3;
    height: 145px;
}

.blog-post span {
    font-size: 0.9em;
    line-height: 1.2em;
}

/* ------ PODCAST ------- */

.podcast-post{
    position: relative;
}

.podcast-post .post-image {
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.podcast-post > span {
    font-size: 0.9em;
    line-height: 1.2em;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 175px;
}

.podcast-post > span *{
    z-index: 12;
}

.podcast-post > span p{
    font-size: 0.8em;
}

.podcast-post .heads img{
    width: 60px;
    margin: 5px;
    margin-top: 0;
    display: inline-block;
}
.podcast-post .heads{}

/* ------ FEEDBACKS ------- */

/* .feedbacks-list.slider {
    width: 100%;
    max-width: 720px;
}

.feedbacks-list.slider .feedback {
    min-height: 0;
} */

.feedback {
    min-height: 225px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback p {
    font-style: italic;
    font-size: 0.9em;
}

@media only screen and (max-width: 1024px) {
    .slider-container .list-slider .speaker-list > div{
        min-height: 400px;
    }
}
@media only screen and (max-width: 767px) {
    .speaker-list .main-cta{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .slider-container .list-slider .speaker-list > div{
        min-height: auto;
    }
}