.speakers-container{
    padding: 50px 0;
    /* background-color: #222222; */
    color: #fff;
    position: relative;
}

.speakers-bg{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -2;
    object-fit: cover;
    object-position: 0% 0%;
}

.speakers-heading{
    text-align: center;
    /* color: #16D2E1; */
    color: #FFF;
    margin-bottom: 60px;
}

.speaker-sub-heading{
    margin: 0 0 40px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.heading-icon{
    border-radius: 50%;
    padding: 4px;
    width: 35px;
    height: 35px;
    background-color: #FFF;
}

.speakers-content-container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.speakers-body{
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #000;
    margin: auto;
    /* padding: 0 0 20px; */
    /* background-color: #FFF; */
}

.speakers-img-container{
    background-color: transparent;
    width: 100%;
    padding: 20px 0 0 0;
    height: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    position: relative;
}

.speakers-img{
    width: 150px;
    border-radius: 50%;
    position: absolute;
    border-bottom: #16D2E1 solid 5px;
    border-left: #16D2E1 solid 5px;
    top: 0px;
    background-color: #ccc;
}

.speakers-text-container{
    padding: 90px 20px 0px;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 5px;
}

.speakers-text{
    margin-bottom: 0;
    text-align: center;
}

.speakers-name{
    margin-top: 20px;
    font-weight: 600;
}

.speakers-company{
    font-weight: 600;
    margin-top: 5px;
}

.speakers-sub-text{
    text-align: center;
    font-size: 25px;
}

@media (max-device-width: 1200px){
    .speakers-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-device-width: 1200px){
    .speakers-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-device-width: 576px){
    .speakers-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .speaker-sub-heading{
        justify-content: center;
    }
}