﻿/* Speaker Section*/

/*First Type Speaeker List*/
.speakers-area .col {
    flex: 0 0 25%;
    -webkit-flex: 0 0 25%; /* Safari 6.1+ */
    -ms-flex: 0 0 25%; /* IE 10 */
}

.speaker {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.speakers-area .speaker:before {
    content: "";
    position: absolute;
    z-index: 1;
    /*height: 100%;*/
    height: 50%;
    width: 100%;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 20%, rgba(236, 6, 249, 0.5) 70%, rgba(0, 0, 0, 0.9) 100%);*/
    background:linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgb(53 32 0 / 40%) 70%, rgba(0, 0, 0, 0.9) 100%);
    bottom: 0;
    left: 0;
    opacity: 0.9;
    transition: all 0.3s ease-in-out;
}

.speaker img {
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.23, 0.03, 0, 1.08);
}


.speaker:hover img {
    transform: scale(1.2);
}

.speaker .details {
    /*background: rgba(6, 12, 34, 0.76);*/
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: -30px;
    right: 0;
    text-align: center;
    transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.speaker:hover .details, .speaker:active .details, .speaker:focus .details {
    bottom: 0;
}

.speaker .details p {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.speaker .details .speaker_social {
    height: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.speaker .details .speaker_social a {
    display: inline-block;
    margin: 0 5px;
}

.speaker .details a {
    color: #fff;
}

.speaker .details a:hover {
    color: #ff6a00;
}


.speaker .details .speaker-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #333;
}

.speaker .details .speaker-company {
    font-size: 16px;
    display: block;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

@media only screen and (max-width: 1024px) {
    .speakers-area .col {
        padding-right: 5px;
        padding-left: 5px;
    }

    .speaker .details .speaker-name {
        font-size: 1rem;
    }

    .speaker .details .speaker-company {
        font-size: 0.85rem;
    }
}

@media only screen and (max-width: 768px) {
    .speakers-area .col {
        flex: 0 0 50%;
        -webkit-flex: 0 0 50%; /* Safari 6.1+ */
        -ms-flex: 0 0 50%; /* IE 10 */
        padding-right: 5px;
        padding-left: 5px;
    }

    .speaker img {
        width: 100%;
    }

    .speaker .details .speaker-name {
        font-size: 1.3rem;
    }

    .speaker .details .speaker-company {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 576px) {
    .speakers-area .col {
        flex: 1 0 100%;
    }

    .speaker img {
        width: 100%;
    }

    .speaker .details .speaker-name {
        font-size: 1.5rem;
    }

    .speaker .details .speaker-company {
        font-size: 1rem;
    }
}
