.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;
    z-index: 1;
}

/* .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(6, 1fr);
    width: fit-content;
    margin: 0 auto;
    gap: 30px 60px;
}

.speakers-body{
    height: 100%;
    max-width: 200px;
    width: 200px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 300px auto;
    gap: 20px;
}

.image-body{
    width: 200px;
    height: 300px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    /* border: #ccc solid 1px; */
}

.speaker-img{
    width: 100%;
    height: auto;
    clip-path: polygon(100% 0, 100% 88%, 82% 100%, 0 100%, 0 0);
}

.backbody-1{
    position: absolute;
    top: 50px;
    left: -8px;
    width: 60px;
    height: 5px;
    background-color: #fff;
    transform: rotate(-45deg);
}

.backbody-2{
    background-color: #fff;
    position: absolute;
    z-index: 2;
    height: 228px;
    left: -1px;
    top: 72px;
    width: 5px;
    transform: rotate(180deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.backbody-3{
    background-color: #fff;
    position: absolute;
    z-index: 1;
    width: 158px;
    height: 5px;
    left: 42px;
    top: 29px;
    transform: rotate(0deg);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.backbody-4{
    position: absolute;
    top: 277px;
    right: -11px;
    width: 60px;
    height: 5px;
    background-color: #fff;
    transform: rotate(-45deg);
    z-index: 2;
}

.backbody-5{
    background-color: #fff;
    position: absolute;
    z-index: 2;
    height: 228px;
    right: -4px;
    top: 31px;
    width: 5px;
    transform: rotate(0deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.backbody-6{
    background-color: #fff;
    position: absolute;
    z-index: 2;
    width: 160px;
    height: 5px;
    left: 2px;
    top: 298px;
    transform: rotate(180deg);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.speakers-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: #dbbe3e solid 2px;
    border-right: #dbbe3e solid 2px;
    padding: 10px 5px;
    height: 100%;
    position: relative;
}

.speakers-content::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 40px;
    background-color: #dbbe3e;
}

.speakers-content::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 40px;
    background-color: #dbbe3e;
}

.speakers-body::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 2px;
    width: 40px;
    background-color: #dbbe3e;
}

.speakers-body::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 40px;
    background-color: #dbbe3e;
}

.speakers-designation,
.speakers-company,
.speakers-name{
    margin-bottom: 0;
    text-align: center;
}

.speakers-name,
.speakers-company{
    font-weight: 700;
}


@media screen and (max-width: 1600px){
    .speakers-content-container{
        grid-template-columns: repeat(5, 1fr);
    }
}

@media screen and (max-width: 1400px){
    .speakers-content-container{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 1100px){
    .speakers-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 848px){
    .speakers-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px){
    .speakers-content-container{
        grid-template-columns: repeat(1, 1fr);
    }   
}