
/*--------------------------------------------------------------
# Keynote
--------------------------------------------------------------*/
.keynote {
    background: #fcfcfc;
}

    .keynote .keynote-box {
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
        height: 100%;
        padding: 30px;
        /* text-align: center; */
        transition: 0.3s;
        border-radius: 5px;
        background-color: white;
    }

        .keynote .keynote-box .icon {
            font-size: 36px;
            padding: 40px 20px;
            border-radius: 4px;
            position: relative;
            margin-bottom: 25px;
            display: inline-block;
            line-height: 0;
            transition: 0.3s;
        }

        .keynote .keynote-box h3 {
            color: #444444;
            font-weight: 700;
        }

        .keynote .keynote-box .read-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 20px;
        }

            .keynote .keynote-box .read-more i {
                line-height: 0;
                margin-left: 5px;
                font-size: 18px;
            }

.keynote-image {
    overflow: hidden;
    margin: -30px -30px 15px -30px;
    position: relative;
}

.keynote .keynote-box.blue {
    border-bottom: 3px solid #2db6fa;
}

    .keynote .keynote-box.blue .icon {
        color: #2db6fa;
        background: #dbf3fe;
    }

    .keynote .keynote-box.blue .read-more {
        color: #2db6fa;
    }

    .keynote .keynote-box.blue:hover {
        background: #2db6fa;
    }

.keynote .keynote-box.orange {
    border-bottom: 3px solid #f68c09;
}

    .keynote .keynote-box.orange .icon {
        color: #f68c09;
        background: #fde3c4;
    }

    .keynote .keynote-box.orange .read-more {
        color: #f68c09;
    }

    .keynote .keynote-box.orange:hover {
        background: #f68c09;
    }

.keynote .keynote-box.green {
    border-bottom: 3px solid #08da4e;
}

    .keynote .keynote-box.green .icon {
        color: #08da4e;
        background: #cffddf;
    }

    .keynote .keynote-box.green .read-more {
        color: #08da4e;
    }

    .keynote .keynote-box.green:hover {
        background: #08da4e;
    }

.keynote .keynote-box.red {
    border-bottom: 3px solid #cc0000;
}

    .keynote .keynote-box.red .icon {
        color: #e9222c;
        background: #fef7f8;
    }

    .keynote .keynote-box.red .read-more {
        color: #333333;
        font-weight: bold;
        /* background-color: #bcbdc0; */
    }

        .keynote .keynote-box.red .read-more:hover {
            color: white;
            background-color: #cd0101;
        }


/* .keynote .keynote-box.red:hover {
  background: #444;
} */

.keynote .keynote-box.purple {
    border-bottom: 3px solid #b50edf;
}

    .keynote .keynote-box.purple .icon {
        color: #b50edf;
        background: #f8e4fd;
    }

    .keynote .keynote-box.purple .read-more {
        color: #b50edf;
    }

    .keynote .keynote-box.purple:hover {
        background: #b50edf;
    }

.keynote .keynote-box.pink {
    border-bottom: 3px solid #f51f9c;
}

    .keynote .keynote-box.pink .icon {
        color: #f51f9c;
        background: #feecf7;
    }

    .keynote .keynote-box.pink .read-more {
        color: #f51f9c;
    }

    .keynote .keynote-box.pink:hover {
        background: #f51f9c;
    }

.keynote .keynote-box:hover h3, .keynote .keynote-box:hover p, .keynote .keynote-box:hover .read-more {
    /* color: #fff; */
}

.keynote .keynote-box:hover .icon {
    background: #fff;
}


/*--------------------------------------------------------------
# Speakers
--------------------------------------------------------------*/
.speakers {
    /* background-color:#f7f7f7;
  background:url(../../assets/img/background/Shift++_BG\ Gray.png) no-repeat;
  padding: 60px 0;
  background-size: cover;
  background-attachment: fixed; */
}

    .speakers .member {
        overflow: hidden;
        text-align: center;
        border-radius: 5px;
        background: #fff;
        box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
        transition: 0.3s;
    }

        .speakers .member .member-img {
            position: relative;
            overflow: hidden;
        }

          .speakers .member .member-img:after {
            position: absolute;
            content: "";
            left: -1px;
            bottom: 0;
            height: 100%;
            width: 101%;
            z-index: 1;
            background: url('../../img/2021/team-shape.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom;
          }

        .speakers .member .social {
            position: absolute;
            right: -100%;
            top: 30px;
            opacity: 0;
            border-radius: 4px;
            transition: 0.5s;
            background: rgba(255, 255, 255, 0.3);
            z-index: 2;
        }

            .speakers .member .social a {
                transition: color 0.3s;
                color: rgba(1, 41, 112, 0.5);
                margin: 15px 12px;
                display: block;
                line-height: 0;
                text-align: center;
            }

                .speakers .member .social a:hover {
                    color: rgba(1, 41, 112, 0.8);
                }

            .speakers .member .social i {
                font-size: 18px;
            }

        .speakers .member .member-info {
            padding: 10px 15px 20px 15px;
        }

            .speakers .member .member-info h4 {
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 20px;
                color: #cc0000;
            }

            .speakers .member .member-info span {
                display: block;
                font-size: 14px;
                font-weight: 400;
                color: #aaaaaa;
            }

            .speakers .member .member-info p {
                font-style: italic;
                font-size: 14px;
                padding-top: 15px;
                line-height: 26px;
                color: #5e5e5e;
            }

        .speakers .member:hover {
            transform: scale(1.03);
            box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
            cursor: pointer;
        }

            .speakers .member:hover .social {
                right: 8px;
                opacity: 1;
            }

#speaker-modal .modal-body {
    background: linear-gradient( to left, #333333 0, #333333 20%, #bcbdc0 20%, #bcbdc0 30%, #cc0000 30%, #cc0000 )no-repeat;
    background-size: 100% 10px;
    background-color: white;
}


.speakers .speakers-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.speaker-profile {
    width: 100%;
    position: relative;
    background: #FFF;
    /* border: 1px solid #D5D5D5; */
    padding-bottom: 5px;
    margin-top: 10px;
}

    .speaker-profile .image {
        display: block;
        position: relative;
        z-index: 1;
        overflow: hidden;
        text-align: center;
        /* border: 5px solid #FFF; */
        height: 250px;
        background-image: linear-gradient(0deg, rgb(0 0 0 / 40%), rgb(255 255 255 / 0%), rgb(255 255 255 / 46%)),url(../../img/2021/banner-lg-blank.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        padding: 20px 20px 20px 233px;
    }

    .speaker-profile .user {
        position: relative;
        padding: 0px 5px 5px;
    }

        .speaker-profile .user .avatar {
            position: absolute;
            left: 30px;
            top: -123px;
            z-index: 2;
        }

    .speaker-profile .name-container h2 {
        line-height: 20px;
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 20px;
        color: #cc0000;
    }

    .speaker-profile .name-container p {
        display: table-row-group;
        font-size: 14px;
        font-weight: 400;
        color: #aaaaaa;
    }

    .speaker-profile .join-btn {
        /* width: 9em; */
        background: #2d2d2c;
        border: none;
        /* display: none; */
        text-align: left;
        padding: 2px 13px;
        margin-bottom: 1px;
    }

    .speaker-profile .name-container {
        margin: 21px 0px 0px 243px;
        /* display: flex;
  flex-direction: column; */
    }

.img-speaker-profile {
    height: 200px;
    width: 200px;
}

.img-cover {
    width: 100%;
    height: 250px;
}

.speaker-profile .user .actions {
    float: right;
}

    .speaker-profile .user .actions .btn {
        margin-bottom: 0px;
    }

.speaker-profile .info {
    /* float: left;
  margin-left: 20px; */
    padding: 31px;
    border: none;
}

.speaker-profile .topic-title {
    font-family: -webkit-pictograph;
    letter-spacing: 2px;
    color: #072C48;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 23px;
}

@media screen and (min-width: 992px) {
    .speaker-profile .topic-title {
        font-size: 2rem;
    }
}

@media screen and (min-width: 1200px) {
    .speaker-profile .topic-title {
        font-size: 2.8rem;
    }
}


.modal-nav-link {
    color: grey !important;
}

    .modal-nav-link:focus, .nav-link:hover {
        color: inherit;
    }

    .modal-nav-link.active {
        color: #2d2d2c !important;
    }

.col-red {
    color: #d43234;
}