.speaker-container{
    padding: 50px 0;
    overflow: hidden;
    /* background-color: #e6e6e6; */
    color: #fff;
    position: relative;
    min-height: 400px;
}

.speaker-container::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('../assets/images/speakers-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
    background: radial-gradient(92.82% 30.9% at -2.2% 106.86%, rgb(28, 216, 210, 0.4) 0%, rgba(28, 216, 210, 0) 100%), radial-gradient(78.38% 42.35% at 104.98% 47.14%, rgb(28, 216, 210, 0.4) 0%, rgba(28, 216, 210, 0) 100%) black;
    z-index: -1;
    /* color: rgb(28, 216, 210); */
}

.speaker-container::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/speakers-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.4;
    filter: blur(3px) brightness(0.4);
}

/* .speaker-container::after{
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgb(34,133,152);
    background: linear-gradient(90deg, rgba(34,133,152,0.2) 0%, rgba(34,147,122,0.2) 100%);
   z-index: 1;
} */

.speaker-sub-container{
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.speaker-heading{
    text-align: center;
    padding: 0 1px 0;
    border-bottom: 2px solid #004063;
    border-bottom: 2px solid #fff;
    width: fit-content;
    margin: 0 auto 40px;
    font-weight: 700;
    color: #fff;
}

.speaker-text{
    font-size: 30px;
    text-align: center;
    margin-top: 50px;
    color: #fff;
}

.speakers-content-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: fit-content;
    margin: 0 auto;
    gap: 30px 60px;
    padding-top: 50px;
}

.speakers-sub-heading{
    grid-column: 1/6;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: capitalize;
}

.speakers-body{
    height: 100%;
    max-width: 200px;
    width: 200px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.speakers-image-body{
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* overflow: hidden; */
    border-radius: 20px;
    /* border: #ccc solid 1px; */
    background-color: #d7d8dc;
    z-index: 1;
}

.speakers-image-body::after{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: #00BB9D solid 2px;
    z-index: -4;
}

.speaker-img{
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background-color: #d7d8dc;
    /* clip-path: polygon(100% 0, 100% 88%, 82% 100%, 0 100%, 0 0); */
}

.speakers-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    /* height: 100%; */
    position: relative;
}

.speakers-designation,
.speakers-company,
.speakers-name{
    margin-bottom: 0;
    text-align: center;
}

.speakers-name{
    position: relative;
    padding-bottom: 15px;
}


.speakers-name::after{
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: #00BB9D;
}

.speakers-name,
.speakers-company{
    font-weight: 700;
}

@media (max-device-width: 1440px){
    .speakers-content-container{
        grid-template-columns: repeat(4, 1fr);
    }
    .speakers-sub-heading{
        grid-column: 1/5;
    }
}

@media (max-device-width: 1100px){
    .speakers-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
    .speakers-sub-heading{
        grid-column: 1/4;
    }
}

@media (max-device-width: 848px){
    .speakers-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-sub-heading{
        grid-column: 1/3;
    }
}

@media (max-device-width: 576px){
    .speakers-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .speakers-sub-heading{
        grid-column: 1/2;
        text-align: center;
    }
    /*.speakers-body{*/
    /*    height: unset;*/
    /*    max-width: unset;*/
    /*    width: unset;*/
    /*    padding: 0 20px;*/
    /*}*/
    /*.speakers-image-body{*/
    /*    width: unset;*/
    /*    max-height: unset;*/
    /*    aspect-ratio: 1/1;*/
    /*    height: unset;*/
    /*}*/
    /*.speaker-img{*/
    /*    aspect-ratio: 1/1;*/
    /*    width: unset;*/
    /*    height: unset;*/
    /*}*/
    /*.speakers-designation, .speakers-company, .speakers-name{*/
    /*    font-size: 18px;*/
    /*}*/
    /*.speakers-name{*/
    /*    font-size: 20px;*/
    /*}*/
}