/* body {
    background: #282f31 !important;
} */

.speakers-container{
    overflow: hidden;
    /* background: linear-gradient(45deg, rgba(53,172,226,1) 0%, rgba(27,59,104,1) 100%);
    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;
    padding: 50px 0;
    min-height: 300px;
    background-color: #2d2d3add;
    color: #fff;
    position: relative;
}

.speakers-container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/speakers-bg-image.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.2;
}

.speakers-sub-container{
    margin: 0 auto;
    max-width: 1800px;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.speakers-heading{
    color: #fff;
    background: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    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;
}

.speakers-content-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 20px;
    justify-content: flex-start;
    align-items: center;
    max-width: fit-content;
    margin: 0 auto;
    gap: 20px 50px;
}

.speakers-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.speakers-img-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    position: relative;
}

.speakers-img-container::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,#cacaca 0%, #b4b4b4 100%);
    /* 2d2d3a */
    z-index: 1;
    border-radius: 2px;
}

.speakers-image{
    width: 100%;
    height: auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.speakers-text-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 10px;
    justify-content: flex-start;
    position: relative;
}

.speaker-sticky-text{
    background: #b1cc1e;
    color: #000;
    padding: 5px 10px;
    font-weight: 700;
    text-transform: uppercase;
    position: absolute;
    top: -41px;
    font-size: 14px;
    z-index: 4;
}

.speakers-text:nth-child(2)::after{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 90%;
    height: 1px;
    background-color: #b1cc1e;
}

.speakers-body:nth-child(even) .speakers-text:nth-child(2)::after,
.speakers-body:nth-child(even) .speaker-sticky-text{
    background: #d7db0f;
    color: #000;
}

/* .speakers-body:nth-child(3n + 3) .speaker-sticky-text{
    background: #f1b631;
    color: #fff;
} */

.speakers-text:nth-child(2){
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    width: 100%;
}
/* 
.speakers-text:nth-child(2){
    color: #f1b631;
}

.speakers-body:nth-child(even) .speakers-text:nth-child(2){
    color: #d7db0f;
} */

/* .speakers-body:nth-child(3n + 3) .speakers-text:nth-child(2){
    color: #f1b631;
} */

.speakers-text:nth-child(3){
    margin-top: 10px;
}

.speakers-text{
    margin-bottom: 0;
    text-align: start;
}

.speakers-bold{
    font-weight: bold;
}

.speaker-coming{
    text-align: center;
    margin-top: 20px;
    font-size: 20px;
}


@media screen and (max-device-width: 1400px){
    .speakers-content-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/5;
    }
}

@media screen and (max-device-width: 1100px){
    .speakers-content-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/4;
    }
}

@media screen and (max-device-width: 856px){
    .speakers-content-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/3;
    }
}

@media screen and (max-device-width: 576px){
    .speakers-content-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/2;
        text-align: center;
    }
}