.speaker-container {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.speaker-container::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../assets/images/speakers-bg.webp");
    /* background-position: center; */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(5px);
    /* transform: scale(1.1); */
    z-index: -2;
}

.speaker-container::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #fff;
    opacity: 0.7;
}

/* .speakers-bg-image{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    z-index: 2;
} */

.speakers-light-filter{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 3;
    /* background: rgb(239,13,138);
    background: linear-gradient(90deg, rgba(239,13,138,0.3) 20%, rgba(250,165,69,0.3) 100%); */
}

.speaker-sub-container {
    width: 100%;
    position: relative;
    z-index: 4;
}

.speakers-content-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 50px;
    width: fit-content;
    margin: 0px auto 0;
}

.speakers-body{
    max-width: 270px;
    height: 100%;
    min-height: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgb(195,203,205);
    background: linear-gradient(180deg, rgba(195,203,205,1) 0%, rgba(212,212,212,1) 100%);
    border-radius: 150px;
    box-shadow: 0px 10px 30px 0px #021E7355;
}

.speakers-img-container{
    width: 230px;
    height: 230px;
    padding: 20px;
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0px 31px 40px 0px rgba(225,225,225,1); */
    /* border: #fff solid 3px; */
    border-radius: 50%;
}

.speakers-img-container::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../assets/speakers/speakers-back.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 2;
}

.speakers-img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgb(110,115,118);
    background: linear-gradient(180deg, rgba(110,115,118,1) 0%, rgba(77,87,88,1) 100%);
    position: relative;
    top: -3px;
}

.coming-text {
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
}

.speakers-content{
    margin-top: 20px;
}

.speakers-content > p{
    margin-bottom: 0;
    color: #000;
    text-align: center;
}

.speakers-name{
    font-size: 24px;
    font-weight: 800;
    padding: 5px 0 0;
    font-family: var(--title-font-family);
}

.speakers-designation{
    margin-top: 0;
    line-height: 19px;
}

.speakers-company{
    margin-top: 5px;
    font-weight: bold;
}

@media screen and (max-width: 1600px) {
    .speakers-content-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .speakers-sub-text {
        grid-column: 1/5;
    }
}

@media screen and (max-width: 1300px) {
    .speakers-content-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .speakers-sub-text {
        grid-column: 1/4;
    }
}

@media screen and (max-width: 992px) {
    .speakers-content-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-sub-text {
        grid-column: 1/3;
    }
}

@media screen and (max-width: 768px) {
    .speakers-content-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .speakers-sub-text {
        grid-column: 1/2;
    }
    .speakers-content-container {
        width: 100%;
        padding: 0 20px;
        margin: 50px auto 0;
    }
}

/*@media screen and (max-width: 576px){*/
/*}*/

@media screen and (max-width: 340px) {
    .speakers-content-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .speakers-body {
        width: 250px;
    }
    .speaker-img {
        width: 250px;
    }   
}