body {
    background: #282f31 !important;
}

.speakers-container{
    padding: 50px 0;
    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;
    min-height: 300px;
}

.speakers-heading{
    color: #D2D918;
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}

.speakers-sub-heading {
    grid-column: 1/5;
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    padding: 35px 0 25px;
    color: #EEF1F6;
    margin-bottom: 0;
    opacity: 0.9;
}

.event-speakers-subContainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
}

.speakers-body {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0px;
    align-items: center;
    text-align: center;
    color: #fff;
    height: 100%;
    width: 100%;
    min-height: 210px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: rgb(53,172,226);
    background: linear-gradient(180deg, rgba(53,172,226,1) 0%, rgba(27,59,104,1) 100%);
}

.speakers-body::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../assets/speakers/dot.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.speaker-image-container{
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.speaker-image-container::before{
    content: '';
    position: absolute;
    width: 185px;
    height: 185px;
    border-radius: 50%;
    bottom: -120px;
    left: -10px;
    z-index: 2;
    /*background: linear-gradient(145deg, #D2D918 50%, #70B635 100%);*/
    background-color: #1b3b68;
    box-shadow: inset 0px 15px 21px -9px rgba(0,0,0,0.1);
}

.speaker-image-container::after{
    content: '';
    position: absolute;
    width: 270px;
    height: 270px;
    border: transparent solid 4px;
    border-radius: 50%;
    bottom: -170px;
    left: -50px;
    /*background-color: #1f6e78;*/
    background: linear-gradient(145deg, #D2D918 50%, #70B635 100%);
    box-shadow: inset 0px 15px 21px -9px rgba(0,0,0,0.1);
}

.speakers-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
    position: relative;
    z-index: 4;
    /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .25), 0 3px 10px 5px rgba(0, 0, 0, 0.05) !important; */
}

.speakers-text-container {
    width: 100%;
    height: 100%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    /*background: rgba(255, 255, 255, 0);*/
    /*border-radius: 16px;*/
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    /*backdrop-filter: blur(2px);*/
    /*-webkit-backdrop-filter: blur(2px);*/
}

/*.speakers-text-container::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
    
/*}*/

/*.speakers-content::before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    border-radius: 50%;*/
/*    top: -55px;*/
/*    right: 36px;*/
/*    z-index: -1;*/
/*    box-shadow: inset 0px 15px 21px -9px rgba(0,0,0,0.1);*/
    /*background-color: #D2D918;*/
/*    background-color: #35ace2;*/
/*}*/

/*.speakers-content::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 100px;*/
/*    height: 100px;*/
/*    border: transparent solid 4px;*/
/*    border-radius: 50%;*/
/*    top: -70px;*/
/*    right: 20px;*/
/*    z-index: -2;*/
    /*background-color: #1f6e78;*/
/*    background-color: #D2D918;*/
/*    box-shadow: inset 0px 15px 21px -9px rgba(0,0,0,0.1);*/
/*}*/

.speaker-img {
    width: 200px;
    height: 200px;
    border-radius: 0%;
    position: relative;
    z-index: 4;
    /* 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); */
}

.speaker-head-container{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-start;
}

.speakers-text{
    text-align: right;
    margin-bottom: 0;
    font-size: 16px;
}

.speaker-text-2,
.speaker-head-text{
    font-weight: 700;
}

.speaker-text-1{
    font-size: 15px;
}

.speaker-coming{
    color: #fff;
    text-align: center;
    font-size: 28px;
}


@media screen and (max-device-width: 1500px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(3, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/4;
    }
}

@media screen and (max-device-width: 1200px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(2, 1fr);
    }
    .speakers-sub-heading {
        grid-column: 1/3;
    }
}

@media screen and (max-device-width: 768px){
    .event-speakers-subContainer {
        grid-template-columns: repeat(1, 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;
    }
    .speakers-body{
        flex-direction: column;
        width: 280px;
        margin: 0 auto;
    }
    .speakers-content{
        height: 100%;
        width: 100%;
        position: relative;
        /*top: -20px;*/
        padding: 0px 10px 0;
        align-items: center;
        justify-content: center;
        background: #fff;
        color: #000;
    }
    .speaker-head-container,
    .speakers-text-container{
        align-items: center;
    }
    .speakers-text{
        text-align: center;
    }
    .speaker-img{
        width: 100%;
        height: 100%;
    }
    .speaker-image-container::before{
        width: 185px;
        height: 185px;
        border-radius: 50%;
        left: unset;
        top: unset;
        bottom: 68px;
        right: -159px;
    }
    .speaker-image-container::after{
        width: 240px;
        height: 240px;
        border-radius: 50%;
        top: unset;
        left: unset;
        bottom: 42px;
        right: -185px;
    }
    .speakers-content::after,
    .speakers-content::before{
        content: unset;
    }
}