@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


*{
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

p{
    margin: 0;
}

.expmaincontainer{
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 114px;
    background-color: #F5F5F5;
}

.exptopsection{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.exptopsec{
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.exptitletext{
    font-size: 42px;
    font-weight: 700;
    line-height: 50px;
}

.expunderline{
    background-color: #B32B26;
    width: 96px;
    height: 4px;
    display: flex;
}

.exptagandfiltersec{
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #7B7B7B;
    height: 66px;
    align-items: center;
}

.exptagssec{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 600px;
}

.expindvtags{
    font-family: Roboto;
    font-size: 24px;
    font-weight: 700;
    color: #7C7C7C;
    cursor: pointer;
    transition: 0.3s ease;
}

.expindvtagsactive{
    color: #000000 !important;
    cursor: default;
}

.exptagul{
    height: 2px;
    background-color: #000000;
    width: 100%;
    display: flex;
    opacity: 0;
    transition: 0.3s ease;
}

.expindvtagsactive .exptagul{
    opacity: 1;
}

.expindvtags:hover{
    color: #B32B26;
}

.expindvtags:hover  .exptagul{
    background-color: #B32B26;
    opacity: 1;
}

.expindvtagsactive:hover .exptagul{
    background-color: #000000 !important;
}


.expfiltersec{
    display: flex;
}

.expmainfilbtn{
    background-color: #1B1B1B;
    height: 34px;
    border-radius: 4px;
    padding: 0px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    z-index: 9999;
}

.expshowactive{
    display: none;
}

.expfilteroptions{
    display: none;
    /* display: flex; */
    border-radius: 4px 0 0 4px;
    background-color: #1B1B1BED;
    position: absolute;
    right: 114px;
    max-height: 34px;
}

.expindvfiloption{
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    align-items: center;
    cursor: pointer;
}

.expfilinnersec{
    display: flex;
    gap: 4px;
    align-items: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 400;
}


.acdatearrow0,
.acdatearrow,
.acdatearrow2 {
    transition: transform 0.3s ease; /* smooth rotation */
}

.acdatearrow0.rotate {
    transform: rotate(180deg);
}

.acdatearrow.rotate {
    transform: rotate(180deg);
}

.acdatearrow2.rotate {
    transform: rotate(180deg);
}



.expfilteroptionsactive{
    animation: showfilter 0.8s ease forwards;
}

.expfilteroptionsinactive{
    animation: hidefilter 0.8s ease forwards;
}

@keyframes showfilter{
    0% {
        transform: translateX(0);
        display: flex;
        opacity: 0;
    }
    100% {
        transform: translateX(-94px);
        opacity: 1;
    }
}


@keyframes hidefilter{
    0% {
        transform: translateX(-94px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 0;
    }
}








/* card css */

.expallvideocards{
    display: flex;
    flex-wrap: wrap;
    row-gap: 85px;
    column-gap: 36px;
    justify-content: center;
}

.expindvvideocard{
    width: 384px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.expcardvideosec{
    height: auto;
    max-height: 216px;
    width: inherit;
    overflow: hidden;
    object-fit: cover;
    position: relative;
    display: flex;
    align-items: end;
}

.expcardvideosec img{
    height: inherit;
    width: inherit;
    object-fit: cover;
    transition: 0.3s ease;
}

.expcardarticlesec .expcardplayandtime{
    display: none;
}

.expcardtextsec{
    background-color: #E6E6E6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 24px;
    min-height: 248px;
    height: 100%;
}

.expcardcattext{
    color: #B32B26;
    font-size: 14px;
    font-weight: 700;
}

.expcardtitletext{
    color: #000000;
    font-size: 24px;
    font-weight: 700;
}

.expcarddesctext{
    color: #484848;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: Roboto;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.expcarddateandtimetext{
    color: #7C7C7C;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    font-family: Roboto;
    gap: 8px;
    transition: 0.3s ease;
}

.expcardtimetext{
    display: flex;
    gap: 8px;
    align-items: center;
}

.expcardplayandtime{
    position: absolute;
    /* padding: 22px 18px; */
    display: flex;
    justify-content: space-between;
    align-items: end;
    /* width: calc(380px - 36px); */
    height: inherit;
    width: inherit;
    /* margin-top: -221px; */
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
}

.expcardplaybtn{
    height: 56px;
    width: 56px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.expcardplaybtn img{
    width: 19px;
    height: 22px;
}

.expindvvideocard:hover .expcardvideosecimg{
    transform: scale(1.1);
}

.expindvvideocard:hover .expcardplaybtn{
    transform: scale(1.1);
}

.expindvvideocard:hover .expcarddateandtimetext{
    color: #B32B26;
}

.expcardtimetext svg{
    transition: 0.3s ease;
}

.expindvvideocard:hover .expcardtimetext svg{
    fill: #B32B26;
}




/* popup filter */

.expdatefilterpopup{
    background-color: #FFFFFF;
    padding: 22px 23px 35px;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    box-shadow: 4px 4px 20px 0px #00000040;


    position: absolute;
    top: 0;

    max-width: 457.65px;
    max-height: 255.2px;
}

.expdftopyearsec{
    display: flex;
    gap: 70px;
    align-items: center;
    justify-content: center;
}

.expdftopyearsec span{
    padding: 8px;
    cursor: pointer;
}

.expdftopyearsec p{
    color: #484848;
    font-size: 16px;
    font-weight: 600;
    font-family: Roboto;
    letter-spacing: 1px;
}

.expdftopyearsec span svg{
    transition: 0.3s ease;
}

.expdftopyearsec span:hover svg{
    stroke-opacity: 0.8;
}

.expdfmonthsec{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 8px;
}

.expdfmonthsec span{
    padding: 10px;
    cursor: pointer;
    color: #262626;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: Roboto;
    border-radius: 2px;
    transition: 0.3s ease;
}

.expdfmonthsec span:hover{
    color: #B32B26;
    font-size: 18px;
}

.expdfactivemonth{
    background-color: #B32B26;
    color: #FFFFFF !important;
    font-size: 14px !important;
}









.FS-Dropdown {
    position: absolute;
    width: 404px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 1000;
    height: 313px;
    padding: 0px 4px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
    align-self: stretch;
}

.FS-Dropdown.active {
    display: flex;
    /* Show the dropdown when active */
}

.FS-Dropdown-Item {
    display: flex;
    width: 400px;
    padding: 10px 16px;
    align-items: center;
    gap: 8px;

}

.FS-Dropdown-Item label {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.42px;
    text-transform: capitalize;
}

.FS-Dropdown-Item label:hover {
    color: #B32B26;
}

/* .FS-Dropdown-Item input[type="checkbox"] {
    margin-right: 10px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -o-appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    width: 14px;
    height: 14px;
}

.FS-Dropdown-Item input[type="checkbox"]:checked+label {
    color: #B32B26;
} */

.FS-Dropdown-Item input[type="checkbox"] {
    margin-right: 10px;
    appearance: none;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    width: 14px;
    height: 14px;
    position: relative;
}

.FS-Dropdown-Item input[type="checkbox"]:checked {
    background-color: #FFFFFF;
    border-color: #000000;
}

.FS-Dropdown-Item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 3px;
    width: 5px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.FS-Dropdown-Item input[type="checkbox"]:checked+label {
    color: #B32B26;
}

.slider-container {
    position: relative;
    width: 300px;
    margin: 20px;
    top: 30%;
}

#slider {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: transparent;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #B32B26;
    cursor: pointer;
    border-radius: 50%;
}

#slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #B32B26;
    cursor: pointer;
    border-radius: 50%;
}

.slider-track {
    position: relative;
    height: 14px;
    width: 300px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.slider-fill {
    position: absolute;
    height: 100%;
    background: #B32B26;
    width: 0;
    transition: width 0.2s;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #B32B26;
    border-radius: 50%;
    cursor: pointer;
}

.slider-value {
    position: absolute;
    top: -40px;
}

#sliderValue {
    color: #B32B26;
    display: flex;
    /* width: 35px; */
    padding: 8px;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 2px;
    margin-bottom: 8px;
    background: #EDEDED;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.48px;
}







.exploadmoresec{
    display: flex;
    width: 100%;
    justify-content: center;
}

.exploadmorebtn{
    background-color: #0F0F0F;
    padding: 16px 18px;
    border-radius: 2px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    font-family: Roboto;
    cursor: pointer;
    transition: 0.3s ease;
}

.exploadmorebtn:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(15, 15, 15, 0.3) 70.83%), #0F0F0F;
}

.expthisyear{
    display: flex;
    gap: 12px;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    justify-content: center;
    font-family: Open Sans;
}

.expyears{
    cursor: pointer;
}

.expyearsactive{
    color: #C62828;
    font-size: 16px;
    font-weight: 700;
    font-family: Montserrat;
    cursor: default;
}



@media (max-width: 1460px){
    .expindvvideocard{
        width: 350px;
    }
}

@media (max-width: 1360px){
    .expindvvideocard{
        width: 298px;
    }
}

@media (max-width: 950px){
    .expmaincontainer{
        padding: 32px;
    }

    @keyframes showfilter{
        0% {
            transform: translateX(97px);
            display: flex;
            opacity: 0;
        }
        100% {
            transform: translateX(-15px);
            opacity: 1;
        }
    }


    @keyframes hidefilter{
        0% {
            transform: translateX(-15px);
            opacity: 1;
        }
        100% {
            transform: translateX(97px);
            opacity: 0;
        }
    }
}

@media (max-width: 700px){
    .expindvvideocard{
        width: 100%;
    }

    .expallvideocards{
        gap: 36px;
    }

    .expcardplayandtime{
        width: calc(100% - 64px);
    }

    .expcardtextsec{
        min-height: auto;
    }
}

@media (max-width: 500px){
    .expmaincontainer{
        padding: 32px 16px;
    }

    .exptitletext{
        font-size: 20px;
        line-height: 28px;
        font-weight: 500;
    }

    .expmaincontainer,
    .exptopsec{
        gap: 24px;
    }

    .expunderline,
    .expfiltersec{
        display: none;
    }

    .exptagandfiltersec{
        height: 40px;
        border-bottom: 2px solid #7b7b7b42;
    }

    .exptagssec{
        width: 100%;
        justify-content: space-between;
    }

    .expindvtags {
        font-family: "IBM Plex Sans", sans-serif;
        max-width: 119px;
        width: 100%;
        text-align: center;
        height: 40px;
        font-weight: 400;
        font-size: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin-top: 10px;
    }

    .exptagssec{
        gap: 0;
        flex-wrap: nowrap;
    }

    .expallvideocards{
        gap: 12px;
    }

    .expallvideocards a{
        width: 100%;
    }

    .expindvvideocard{
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: #E6E6E6;
        padding: 12px;
        gap: 10px;
    }

    .expcardtextsec{
        padding: 0;
        gap: 4px;
    }

    .expcarddesctext{
        display: none;
    }

    .expcardvideosec{
        width: 147px;
        min-width: 147px;
        height: 82px;
    }

    .expcardplayandtime{
        width: inherit;
    }

    .expcardplaybtn{
        height: 33px;
        width: 33px;
    }

    .expcardplayandtime{
        margin-top: -89px;
    }

    .expcardplaybtn img{
        width: 13px;
        height: 11px;
    }

    .expcardcattext{
        font-size: 12px;
        font-weight: 500;
    }

    .expcardtitletext{
        font-size: 14px;
        font-weight: 400;
    }

    .expcarddateandtimetext{
        font-size: 10px;
    }

    .expcarddateandtimetext span{
        transform: scale(0.8);
    }

    .expthisyear{
        font-size: 12px;
    }

    .expyearsactive{
        font-size: 14px;
    }

    .expcardtimetext{
        gap: 2px;
    }

    .expcardtimetext svg{
        height: 9.21px;
        width: 9.21px;
    }
}



@media (max-width: 760px){
    .expdatefilterpopup,
    .FS-Dropdown{
        right: 32px !important;
    }
}