body {
    background-color: white;
}

.logo {
    width: 30%;
    min-width: 150px;
    max-width: 200px;
}

.sub-logo {
    display: flex;
}

@media only screen and (max-width:500px) {
    .sub-logo {
        width: 100%;
        align-items: center;
        justify-content: space-between !important;
    }

    .sub-logo img {
        width: 10%;
        min-width: 40px;
    }
}

.banner {
    background-image: linear-gradient(218deg, #ffabab, #a6d9ff);
}

.banner ul {
    list-style: none;
}

.banner-img {
    position: relative;
}

.banner-img .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
}

.banner-img p {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #313030;
    font-size: 14px;
    font-weight: 600;
}

.tab-btn-container {
    display: flex;
    align-items: flex-start;
    justify-content: start;
}

.action-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 100px;
    margin: 0 10px;
}

.action-btn.active button {
    background-image: url('./assest/action-active.png');
}

.action-btn button {
    border: none;
    outline: none;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background-color: rgb(225, 224, 224);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.action-btn p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    text-align: center;
    color: rgb(19, 19, 19);
}

.action-btn.active p {
    font-weight: 600;
}

@media only screen and (max-width:620px) {
    .action-btn button {
        width: 40px;
        height: 40px;
        border: 1px solid #ccc;
    }

    /* .action-btn button img {
        width: 80%;
    } */

    .action-btn p {
        font-size: 12px;
    }
}

@media only screen and (max-width:420px) {
    .banner h2 {
        font-size: 18px;
    }

    .banner ul {
        padding: 0 !important;
    }

    .banner ul li {
        font-size: 14px;
    }

    .action-btn {
        margin: 0 3px;
    }

    /* .action-btn button {
        width: 30px;
        height: 30px;
        border: 1px solid #ccc;
    }

    .action-btn button img {
        width: 80%;
    } */

    .action-btn p {
        font-size: 10px;
    }
}

/* CONTENT SECTION */
.content-section {
    width: 90%;
    margin: 0 auto;
}

.content-header {}

.search-input {
    border: 1px solid #DDDDDD;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 6px;
    width: 100%;
}

.search-input.active {
    display: none;
}

.search-input input {
    border: none;
    outline: none;
    font-size: 13px;
    margin-right: 5px;
    width: 90%;
}

.search-input i {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #959595;
}

.filter-btn-wrapper.active {
    display: none;
}

.filter-btn-wrapper button {
    background-color: transparent;
    outline: none;
    border: 1px solid #DDDDDD;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-left: 10px;
    border-radius: 4px;
    color: #959595;
}

.section-title {
    font-weight: 500;
    font-size: 22px;
}

/* SECTION BODY */
.Content_body.years75 {
    width: 100%;
}

.content-body.diverse {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 2fr 2fr;
    grid-gap: 20px;
    width: 100%;
    padding: 20px 0;
}

.content-body.diverse div {
    width: 100%;
    cursor: pointer;
    height: 300px;
    padding: 10px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(to right, #0000003f, #00000055), url('./assest/stories/Picture1.jpg');
    background-size: cover;
    background-position: center 40%;
    border-radius: 10px;
    box-shadow: 0 0 5px 1px rgb(199, 198, 198);
}

.content-body.diverse div h2 {
    color: white;
    font-size: 18px;
}

.content-body.diverse div p {
    font-size: 12px;
    font-weight: 500;
    color: white;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.content-body.diverse div:nth-child(1) {
    grid-column-start: 1;
    grid-column-end: 4;

}

.content-body.diverse div:nth-child(2) {
    grid-column-start: 4;
    grid-column-end: 6;
}

.content-body.diverse div:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 2;
}

.content-body.diverse div:nth-child(4) {
    grid-column-start: 2;
    grid-column-end: 3;
}

.content-body.diverse div:nth-child(5) {
    grid-column-start: 3;
    grid-column-end: 6;
}

.content-body.diverse div:nth-child(6) {
    grid-column-start: 1;
    grid-column-end: 4;
}

.content-body.diverse div:nth-child(7) {
    grid-column-start: 4;
    grid-column-end: 6;
}

@media only screen and (max-width:750px) {
    .content-body.diverse {
        display: flex;
        flex-wrap: wrap;
    }
}

.content-footer.active {
    display: none;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li {
    margin: 0 10px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C4C4C4;
    border-radius: 10px;
    font-weight: 500;
}

.pagination li.active {
    background-color: #dbdbdb;
    border: 1px solid transparent;

}

@media only screen and (max-width:450px) {
    .pagination li {
        margin: 0 2px;
    }
}

/* a-z-container */
.content-body.a-z,
.content-body.resource,
.content-body.independence {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 0;
}

.a-z-container {
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 0 0 10px;
    margin: 20px;
}

.a-z-container .split-img {
    display: flex;
    width: 100%;
}



.a-z-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.a-z-container .split-img a {
    margin: 0 5px;
    width: 50% !important;
}

.a-z-container .split-img img {
    object-fit: contain !important;
    object-position: center !important;
    width: 100% !important;
}

.a-z-content {
    display: flex;
    width: 90%;
    margin: 10px auto;
}

.a-z-content h3 {
    text-align: center;
    width: 15%;
    font-size: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: -webkit-linear-gradient(180deg, #448CDF, #D54C98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.a-z-text {
    width: 85%;
}

.a-z-text h4 {
    font-size: 16px;
    margin: 0;
}

.a-z-text p {
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.a-z-video {
    margin: 0 auto;
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #E9F3FF;
    padding: 10px;
    cursor: pointer;
}

.a-z-video-wrapper {
    /* background-image: linear-gradient(to right, #0000003f, #00000055), url('./assest/stories/Picture1.jpg'); */
    width: 70px;
    height: 40px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 7px;
    margin: 0;
    margin-right: 10px !important;
}

.a-z-video #popupvideotitle {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}


/* POPUP */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000087;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-container.active {
    display: flex;
}

.popup-content {
    width: 80%;
    background-color: white;
    padding: 10px;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.popup-header button {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 24px;
    cursor: pointer;
}

.popup-body img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.popup-content-header {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.popup-content-header h4 {
    background: -webkit-linear-gradient(180deg, #448CDF, #D54C98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    margin-right: 10px;
}

.popup-content-header p {
    font-weight: 600;
    margin: 5px 20px;
    font-size: 18px;
}

.popup-content-header button {
    margin-left: auto;
    background-color: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    padding: 6px 10px;
    color: #a1a1a1;
}

.popup-content-header button i {
    color: #a1a1a1;
    margin-left: 6px;
}



.popup-content-body {
    max-height: 270px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.popup-content-body::-webkit-scrollbar {
    width: 8px;
    background-color: #e4e4e4;
    border-radius: 10px;
}

.popup-content-body::-webkit-scrollbar-thumb {
    background-color: #b6b4b4;
    border-radius: 10px;
}

.popup-content-footer {
    width: 100%;
}

.popup-content-footer .a-z-video {
    width: 100%;
    background-color: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    padding: 0px 0;
}

.popup-content-footer .a-z-video .a-z-video-wrapper {
    text-decoration: none;
    height: 45px;
}

.popup-content-footer .a-z-video .a-z-video-wrapper i {
    width: 25px;
    height: 25px;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    text-decoration: none;
}

@media only screen and (max-width:1120px) {
    .popup-content-header button {
        margin-left: 5px;
    }

    .popup-content-header p {
        margin: 5px 0;
    }
}

@media only screen and (max-width:680px) {
    .popup-container {
        align-items: flex-start;

    }

    .popup-content {
        width: 90%;
        margin-top: 20px;
        max-height: 90%;
        overflow: auto;
    }
}

@media only screen and (max-width:380px) {
    .popup-content-header h4 {
        font-size: 20px;
    }

    .popup-content-header p {
        font-size: 14px;
    }

    .popup-content-header button {
        font-size: 13px;
        padding: 3px;

    }

    .popup-content-body {
        font-size: 12px;
    }
}


/* RESOURCES */
.resource-container {
    border: 1px solid #DDDDDD;
    border-radius: 3px;
    max-width: 370px;
    padding: 5px 10px;
    display: block;
    margin: 5px;
    text-decoration: none;
    color: black;
}

.resource-container .resourse-img {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 10px;
}

.resource-container .resourse-img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

.resource-header {
    display: flex;
    margin-bottom: 10px;
}

.resource-header p {
    font-weight: 500;
    margin: 0;
    color: #289BEE;
}

.resource-container .address {
    font-size: 12px;
    margin: 0;
}

.resource-container .mobile {
    margin: 10px 0;
}

.resource-container .mobile span {
    font-weight: 600;
}


/* 75 YEARS  */
.tags {
    background-color: #F0F0F0;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
}

/* INDEPENDCE */
.independence .a-z-container img {
    object-fit: contain;
    width: 300px;
}


/* FOOTER */
.footer {
    margin-top: 50px;
    background-color: #3c3c3c;
    padding: 20px 0;
}

.footer .links {
    border-bottom: 1px solid #6a6a6a;
}

.footer .links ul li {
    color: white;
    font-size: 12px;
}

.footer .links ul li a {
    color: white;
    text-decoration: none;
}

.footer .foo2 {
    color: white;
    font-size: 13px;
}

.footer .foo-text {
    text-align: center;
    color: white;
    font-size: 13px;
    margin: 5px 0;
}

.footer .foo-text a {
    color: yellow;
    text-decoration: underline;
}

.footer .visitor p {
    margin: 0;
}

.footer .visitor p:nth-child(2) {
    margin-top: 10px;
}

.footer .visitor p:nth-child(3) {
    margin-top: 5px;
}

.footer .visitor p:nth-child(3) a {
    background-color: white;
    color: black;
    font-weight: 600;
    font-size: 16px;
    padding: 3px;
    text-decoration: none;
}

@media only screen and (max-width:560px) {
    .foo2 {
        margin: 20px 0 !important;
        flex-direction: column;
    }

    .footer .foo-text {
        margin: 20px 0 !important;
    }
}



/* 75 YEARS */
.years75-container {
    width: 100%;
}

.years75-tab-switch {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.years75-tab-switch button {
    color: #00000099;
    font-size: 15px;
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 3px;
    border-top: 2px solid #289BEE;
    border-right: 2px solid #289BEE;
    border-bottom: 2px solid #CB2AA8CC;
    border-left: 2px solid #CB2AA8CC;
    background-color: white;
    margin: 5px;
    opacity: 0.5;
}

.years75-tab-switch button.active {
    opacity: 1;
}

.years75-content {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.years75-content .a-z-container {
    min-width: 350px;
}







/* VIDEO POPUP */
.video-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #00000088;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    width: 50%;
    max-width: 600px;
    min-width: 450px;
}

.video-popup-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 10px 0;

}

.video-popup-header button {
    background-color: transparent;
    color: white;
    outline: none;
    font-size: 20px;
    border: 1px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-popup-content iframe {
    width: 100%;
}

@media only screen and (max-width:600px) {
    .video-popup-content {
        width: 97%;
        min-width: 60%;
    }
}

.author-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.author-container div {
    margin: 5px;
    max-width: 400px;
}

.author-container div img {
    /* max-width: 300px; */
    width: 60%;
    aspect-ratio: 5/5;
    border-radius: 20px;
    margin: 5px auto;
    object-fit: cover;
    object-position: top;
}


.launch-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.788);
}

.launch-screen.active {
    display: none;
}

.launch-screen video {
    width: 70%;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

.launch-screen img {
    width: 70%;
    border-radius: 10px;
    aspect-ratio: 16/9;
}

@media only screen and (max-width:600px) {
    .launch-screen video {
        width: 90%;
    }

    .launch-screen img {
        width: 90%;
    }
}

.launch-screen button {
    padding: 3px 20px;
    background-color: #289BEE;
    color: white;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0;
}