.conference-container{
    background-color: #000;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.conference-video{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    /* filter: invert(0%) sepia(3%) saturate(7488%) hue-rotate(293deg) brightness(94%) contrast(101%); */
}

.conference-heading{
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 44px;
}

.conference-content-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.conference-body{
    width: 100%;
    height: 100%;
    max-width: 240px;
    /* max-height: 400px; */
    aspect-ratio: 3/4;
    position: relative;
    border: #fff solid 1px;
    border-radius: 15px;
    padding: 10px;
}

.conference-body::after{
    content: unset;
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: 50%;
    z-index: 2;
    background-color: #00000077;
    border-radius: 5px;
    display: flex;
    font-family: 'FontAwesome';
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    transition: all linear 0.2s;
}

.conference-body:hover::after{
    content: '\f08e';
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.conference-image{
    width: 100%;
    height: 100%;
    max-width: 240px;
    /* max-height: 400px; */
    aspect-ratio: 3/4;
    border-radius: 5px;
}

.conference-date-container {
    background-color: #262626;
    width: 70%;
    margin: 0 auto;
    border-radius: 0 0 30px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 5px 10px;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 15%;
}

.conference-date-container p {
    margin-bottom: 0;
}
.conference-date {
    font-size: 36px;
    font-weight: 500;
}

.conference-month-th p {
    color: #C6D93B;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 16px;
    font-size: 12px;
}
.conference-date-container p {
    margin-bottom: 0;
}

@media screen and (max-width: 1439px){
    .conference-content-container{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 991px){
    .conference-content-container{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 767px){
    .conference-content-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 575px){
    .conference-content-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .conference-body{
        margin: 0 auto;
        max-width: 300px;
    }
    .conference-image{
        max-width: unset;
    }
}