.speakers-container {
    padding: 50px 0;
    /* background: rgb(248,152,75); */
    /* background: linear-gradient(94deg, rgba(248,152,75,1) 1%, rgba(194,14,141,1) 32%, rgba(147,21,137,1) 64%, rgba(237,46,119,1) 100%); */
    background: #091B43;
    /* background: linear-gradient(85deg, rgba(160,21,137,1) 0%, rgba(248,155,73,1) 0%, rgba(235,28,128,1) 47%, rgba(248,155,73,1) 100%); */
    color: #fff;
    overflow: hidden;
    min-height: 300px;
    position: relative;
    z-index: 4;
}

.speakers-sub-head{
    text-align: left;
    margin: 35px 0;
    padding-left: 10px;
    border-left: 4px solid #fff;
}

.speakers-sub-container {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 120px;
    width: fit-content;
    margin: 50px auto 0;
}

.speakers-body {
    width: 250px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.top-border-container{
    height: 10px;
    width: 23%;
    background-color: #ED2734;
}

.speaker-text-vertical{
    transform: rotate(270deg);
    margin-bottom: 0px !important;
    color: #ccc;
    position: absolute;
    font-weight: 900;
    /*font-size: 350% !important;*/
    /*left: -161px;*/
    font-size: 55px !important;
    left: -156px;
    top: 92px;
}

.speaker-img-container{
    height: 250px;
    width: 250px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.speakers-img{
    width: 250px;
    height: 250px;
    background: #FFFBFC;
    /* border: #FFE5Ec solid 5px; */
    /* border-radius: 50%; */
}

.speakers-content{
    padding: 10px 0 0;
    width: 250px;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all ease 0.3s;
    text-align: left;
}

.speakers-content p{
    position: relative;
    z-index: 5;
}

.speakers-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
}

.speakers-specification {
    font-weight: 300;
    margin-bottom: 0;
}

.speakers-company {
    font-weight: 600;
    margin-bottom: 0;
}

.speakers-coming-text{
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    margin: 0 0 40px 0;
}

@media (max-device-width: 1400px) {
    .speakers-sub-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-device-width: 1200px) {
    .speakers-sub-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px 80px;
    }
}

@media (max-device-width: 992px) {
    .speakers-sub-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* @media (max-device-width: 768px) {
} */

@media (max-device-width: 556px) {
    .speakers-sub-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-left: 25px;
    }
    .speaker-text-vertical{
        left: -150px;
        font-size: 48px !important;
        top: 93px;
    }
}

/* @media (max-device-width: 330px){
} */