.speakers-container{
    padding: 50px 0;
    overflow: hidden;
    background: #15aebf !important;
    background: -webkit-linear-gradient(to right, rgba(21, 174, 191, 0.5), rgba(175, 75, 242, 0.5)) !important;
    background: linear-gradient(to right, rgba(21, 174, 191, 0.5), rgba(175, 75, 242, 0.5)) !important;
    overflow: hidden;
}

.speakers-heading{
    color: #D2D918;
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}

.speakers-sub-heading {
    grid-column: 1/6;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
    padding: 35px 0 25px;
    color: #EEF1F6;
    margin-bottom: 0;
    opacity: 0.9;
}

.event-speakers-subContainer {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 80%;
    grid-gap: 20px;
    margin: auto;
    justify-content: center;
    align-items: center;
}

.speakers-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    grid-gap: 0px;
    align-items: center;
    text-align: center;
    color: #fff;
    height: 100%;
}

.speaker-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25), 0 3px 10px 5px rgba(0, 0, 0, 0.05) !important;
    background: rgb(230, 224, 13);
    background: linear-gradient(90deg, rgba(230, 224, 13, 1) 0%, rgba(166, 202, 34, 1) 100%);
    opacity: 0.8;
}

.speaker-head-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 4px;
    margin-top: 10px;
}

.speaker-text-1 {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2px;
}

.speaker-text-2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    /* margin-bottom: 2px; */
}

@media screen and (max-device-width: 1200px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(4, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/5;
    }
}

@media screen and (max-device-width: 992px){
    .speaker-img {
        width: 200px;
        height: 200px;
    }
    .event-speakers-subContainer {
        grid-template-columns: repeat(3, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/4;
    }
}

@media screen and (max-device-width: 768px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/3;
    }
}

@media screen and (max-device-width: 576px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(1, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/2;
        text-align: center;
    }
}