/* =============================== HM'S WORDS ============================== */
.error-txt {
    color: var(--color-red);
    background: var(--color-red-light);
    padding: 8px 10px;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
}

.success-txt {
    color: var(--color-green);
    background: var(--color-green-light);
    padding: 8px 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* =============================== NAVBAR ============================== */
nav {
    border: none;
    background: var(--color-white);
    box-shadow: 0 0 10px -5px var(--color-black);
}

nav ul li a {
    color: var(--color-primary);
}

/* =============================== LAND PAGE ============================== */
.land_other .carousel .w-100 {
    min-height: 70vh;
}

.land_other .landpagecol {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.land_other .landpagerow {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.land_other .landpagerow h4 {
    font-size: var(--font-60);
    color: var(--color-azure);
    padding-bottom: 15px;
    text-transform: capitalize;
}

.land_other .landpagerow h4 span {
    color: var(--color-bg);
}

.land_other .landpagerow p {
    font-size: var(--font-18);
    color: #ddd;
    padding: 0px 100px;
}

.land_other .landpagerow a {
    font-size: var(--font-16);
    padding: 10px 20px;
    color: var(--color-white);
    background: var(--color-primary);
    transition: 0.8s ease;
    border-radius: 50px;
}

.land_other .landpagerow .sep_links {
    display: flex;
    gap: 2rem;
}

.land_other .landpage .sch_title {
    position: absolute;
    bottom: -10%;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.land_other .sch_title h2 {
    font-size: var(--font-50);
    color: var(--color-bg);
    font-family: alum;
    background: var(--color-primary);
    text-transform: capitalize;
    padding: 20px;
    border-radius: 20px;
}

.land_other .sch_title h2 span {
    color: var(--color-white);
    padding-bottom: 15px;
    text-transform: uppercase;
}

/* =============================== ABOUT ============================== */
.about {
    align-items: center;
}

.about .aboutcol1 {
    width: 60%;
}

.about .aboutcol2 {
    width: 40%;
}

.about .aboutcol2 img {
    height: 60vh;
    border: 8px double var(--color-primary);
    padding: 4px;
    border-radius: 0 var(--border-rad-80px) 0 var(--border-rad-80px);
}

.about .social i {
    font-size: 20px;
    padding: 10px;
    transition: 0.8s ease;
    border-radius: 50%;
    margin-left: 10px;
    border: 2px solid var(--color-bg);
    color: var(--color-bg);
}

.about .social i:hover {
    border: 2px solid transparent;
    background: var(--color-white);
    color: var(--color-primary);
}

.about .popupview {
    z-index: 4;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.about .popupview.active {
    opacity: 1;
    visibility: visible;
}

.about .popupcard::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

.about .popupcard::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 0px transparent;
}

.about .popupcard::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-ccc);
}

.about .popupcard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 80vw;
    height: 80vh;
    margin: 20px;
    background: var(--color-white);
}

.about .popupcard a {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    padding: 2px 10px;
    border-radius: 50%;
    color: var(--color-azure);
    background: var(--color-black);
    border: none;
}

.about .popupcard a:hover {
    color: var(--color-azure);
}

.about .popupcard img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    height: 60vh;
    object-position: center;
    object-fit: cover;
}

.about .popupcard .post_info {
    text-align: center;
    margin: 10px 50px 20px;
}

.about .popupcard .post_info h1 {
    padding: 20px 0 10px;
}

.about .popupcard .post_info span {
    color: var(--color-bg);
    font-size: var(--font-22);
    text-transform: uppercase;
}

.about .popupcard .post_info p {
    font-size: var(--font-18);
    text-align: center;
    padding: 10px 10px;
}

.about .popupcard .post_info .highlight {
    background: #ddd;
    margin: 10px 40px;
    padding: 20px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .popupcard .post_info .highlight p {
    font-weight: 600;
}

.about .popupcard .post_info .highlight i {
    font-size: 30px;
    color: var(--color-bg);
    padding-left: 20px;
}

.about .popupcard .post_info .post_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
    width: 100%;
    padding: 10px 40px 40px;
}

.about .popupcard .post_info .post_imgs img {
    border-radius: 10px;
}

/* =============================== HM WORDS ============================== */
.hm_words {
    padding: 30px 80px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.hm_words .aboutcol3 img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    padding: 5px;
    border-radius: 0 var(--border-rad-80px) 0 var(--border-rad-80px);
    border: 4px solid var(--color-primary);
}


.hm_words .aboutcol h1 {
    font-size: var(--font-40);
    color: var(--color-primary);
    padding: 0 0 20px;
}

.hm_words .aboutcol h1 span {
    font-size: var(--font-18);
    color: var(--color-bg);
    text-transform: uppercase;
}

.hm_words .aboutcol p {
    font-size: var(--font-18);
}

.hm_words .popupview {
    z-index: 4;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.hm_words .popupview.active {
    opacity: 1;
    visibility: visible;
}

.hm_words .popupcard::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

.hm_words .popupcard::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 0px transparent;
}

.hm_words .popupcard::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-ccc);
}

.hm_words .popupcard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 80vw;
    height: 80vh;
    margin: 20px;
    background: var(--color-white);
}

.hm_words .popupcard a {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    padding: 2px 10px;
    border-radius: 50%;
    color: var(--color-azure);
    background: var(--color-black);
    border: none;
}

.hm_words .popupcard a:hover {
    color: var(--color-azure);
}

.hm_words .popupcard img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    height: 60vh;
    object-position: center;
    object-fit: cover;
}

.hm_words .popupcard .post_info {
    text-align: center;
    margin: 10px 50px 20px;
}

.hm_words .popupcard .post_info h1 {
    padding: 20px 0 10px;
}

.hm_words .popupcard .post_info span {
    color: var(--color-bg);
    font-size: var(--font-22);
    text-transform: uppercase;
}

.hm_words .popupcard .post_info p {
    font-size: var(--font-18);
    text-align: center;
    padding: 10px 10px;
}

.hm_words .popupcard .post_info .highlight {
    background: #ddd;
    margin: 10px 40px;
    padding: 20px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hm_words .popupcard .post_info .highlight p {
    font-weight: 600;
}

.hm_words .popupcard .post_info .highlight i {
    font-size: 30px;
    color: var(--color-bg);
    padding-left: 20px;
}

.hm_words .popupcard .post_info .post_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
    width: 100%;
    padding: 10px 40px 40px;
}

.hm_words .popupcard .post_info .post_imgs img {
    border-radius: 10px;
}

/* =============================== ANTHEM ============================== *
.anthem {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 0 30px;
    padding: 30px 120px;
    text-align: center;
    color: var(--color-azure);
}

.anthem h2 {
    font-size: var(--font-30);
    padding-bottom: 5px;
}

.anthem i {
    font-size: 50px;
    padding-bottom: 10px;
}

.anthemrow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.sub_col_div {
    flex-direction: column;
    gap: 1rem;
}

.sub_col_div h4 {
    font-size: var(--font-22);
}

.anthemrow p {
    font-size: var(--font-18);
    line-height: 30px;
    padding: 0 0 10px;
}

.anthemrow .sub_col {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: left;
    gap: 0.2rem;
}

.anthemrow .sub_col p {
    padding: 0;
    padding-left: 5px;
}

/* =============================== SPORTS ============================== */
.sports .benefitscol {
    gap: 3rem 2rem;
}

.sports .sports_info p {
    margin: 10px 200px 20px;
    font-size: var(--font-18);
}

.sports .benefitcont {
    position: relative;
    padding: 0;
}

.sports .benefitcont .benefitcont_date {
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sports .benefitcont .benefitcont_date span {
    font-size: var(--font-18);
    color: var(--color-azure);
    background: var(--color-primary);
    padding: 5px 15px;
    border-radius: 5px;
}

/* =============================== PROJECTS ============================== */
.projects {
    padding: 0 50px;
}

.project_pt {
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 2px solid var(--color-gray-100);
    text-align: center;
}

.project_pt h1 {
    font-size: var(--font-40);
    color: var(--color-bg);
}

.project_pt .done_prjt {
    color: var(--color-green);
}

.project_pt p {
    width: 70%;
    margin: 0 auto;
    padding: 10px 0 0;
}

.projects_col {
    display: flex;
    flex-direction: column;
    padding: 40px 0;
}

.projects_col .project_unit {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.projects_col .project_unit:not(:nth-of-type(2n+1)) {
    flex-direction: row-reverse;
    padding: 50px 0;
}

.projects_col .project_unit .project_img {
    width: 50%;
}

.projects_col .project_unit .project_cont {
    width: 50%;
}

.projects_col .project_unit img {
    height: 60vh;
    width: 100%;
    border-radius: var(--border-rad-5px);
    object-fit: cover;
}

.projects_col .project_unit .project_cont h2 {
    font-size: var(--font-35);
    color: var(--color-primary);
    padding: 0 0 10px;
}

.projects_col .project_unit .project_cont span {
    font-size: var(--font-20);
    color: var(--color-bg);
    background: var(--color-primary);
    padding: 3px 10px;
    border-radius: var(--border-rad-2px);
}

.projects_col .project_unit .project_cont p {
    width: 100%;
}

.projects_col .project_unit .project_cont .btn_sp a {
    font-size: var(--font-16);
    padding: 5px 12px;
    color: var(--color-primary);
    background: var(--color-bg);
    transition: 0.8s ease;
    border-radius: var(--border-rad-2px);
    border: 1px solid var(--color-primary);
}

.projects_col .project_unit .project_cont .btn_sp a:hover {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.projects_col .popupview {
    z-index: 4;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.projects_col .popupview.active {
    opacity: 1;
    visibility: visible;
}

.projects_col .popupcard::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

.projects_col .popupcard::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 0px transparent;
}

.projects_col .popupcard::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-ccc);
}

.projects_col .popupcard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 80vw;
    height: 80vh;
    margin: 20px;
    background: var(--color-white);
}

.projects_col .popupcard a {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    padding: 2px 10px;
    border-radius: 50%;
    color: var(--color-azure);
    background: var(--color-black);
    border: none;
}

.projects_col .popupcard a:hover {
    color: var(--color-azure);
}

.projects_col .popupcard img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    height: 60vh;
    object-position: center;
    object-fit: cover;
}

.projects_col .popupcard .post_info {
    text-align: center;
    margin: 10px 50px 20px;
}

.projects_col .popupcard .post_info h1 {
    padding: 20px 0 10px;
    color: var(--color-black);
}

.projects_col .popupcard .post_info span {
    font-size: var(--font-20);
    color: var(--color-bg);
    background: var(--color-primary);
    padding: 3px 10px;
    border-radius: var(--border-rad-2px);
}

.projects_col .popupcard .post_info p {
    font-size: var(--font-18);
    text-align: center;
    padding: 10px 10px;
    width: 100%;
}

.projects_col .popupcard .post_info .post_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
    width: 100%;
    padding: 10px 40px 40px;
}

.projects_col .popupcard .post_info .post_imgs img {
    border-radius: 10px;
}

/* =============================== EVENT BAND ============================== */
.band {
    background: var(--color-primary);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--color-azure);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh;
    text-align: center;
}

.band h1 {
    font-size: var(--font-50);
}

/* =============================== CONTACT INFO ============================== */
.find {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info {
    overflow: hidden;
    width: 50%;
    padding: 0 20px;
}

.info_map {
    width: 100%;
}

.info_map iframe {
    width: 100%;
    height: 80vh;
}

.infoimg {
    padding: 0;
}

.infoimg img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.info h1 {
    text-align: center;
    font-size: var(--font-45);
    color: var(--color-primary);
    margin: 0 0 20px;
}

.info h1 span {
    color: var(--color-bg);
    font-size: var(--font-16);
    text-transform: uppercase;
}

.info_cntct {
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    place-items: center;
    text-align: center;
    align-items: start;
}

.findinf {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    box-shadow: 0 1px 2px var(--color-black);
    border-radius: 10px;
    padding: 10px;
}

.findinf i {
    padding: 6px 20px;
    color: var(--color-primary);
    font-size: var(--font-40);
}

.findchk h4 {
    color: var(--color-bg);
    padding: 10px 0;
    font-size: 25px;
}

.findchk p {
    font-size: var(--font-18);
}

.findchk a {
    transition: 0.4s ease;
}

.findchk a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}

.info .social {
    padding-top: 0px 20px;
    text-align: center;
}

.info .social i {
    font-size: 22px;
    padding: 10px;
    transition: 0.8s ease;
    margin-right: 5px;
    border-radius: 50%;
    color: var(--color-white);
    background: var(--color-primary);
}

.info .social i:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

/* =============================== GALLERY ============================== */
.gallery_col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 1rem;
    padding: 0 50px 50px;
}

.gallery {
    width: 100%;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery_unit img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
}

.gallery .popupview {
    z-index: 4;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.gallery .popupview.active {
    opacity: 1;
    visibility: visible;
}

.gallery .popupcard {
    position: relative;
    display: flex;
    width: 80vw;
    height: 80vh;
    margin: 20px;
}

.gallery .popupcard a {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 25px;
    color: var(--color-azure);
}

.gallery .popupcard a:hover {
    color: var(--color-bg);
}

.gallery .popupcard img {
    position: relative;
}

.gallery .popupcard .img_info {
    z-index: 1;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    bottom: 0;
    transition: 0.8s ease-in-out;
    background: rgba(0, 0, 0, 0.9);
    height: fit-content;
    text-align: center;
    opacity: 1;
    color: var(--color-azure);
    padding: 20px 20px 30px;
    width: 100%;
    text-transform: capitalize;
}

.gallery .popupcard .img_info h1 {
    font-size: var(--font-40);
}

.gallery .popupcard:hover>.img_info {
    opacity: 0.2;
}

.vid_slide {
    margin: 0 50px;
}

.vid_slide .vid_col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vid_slide h2 {
    font-size: var(--font-50);
    text-align: center;
}

.vid_slide h2 span {
    color: var(--color-bg);
}

.vid_slide .vid_sd {
    width: 100%;
    height: 60vh;
    position: relative;
}

.vid_sd .vid_name {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.8s ease;
}

.vid_sd .vid_name span {
    font-size: var(--font-18);
    color: var(--color-azure);
    background: var(--color-primary);
    padding: 5px 15px;
    border-radius: 5px;
}

/* =============================== SEARCH BAR ============================== */
.search_bar-container {
    position: relative;
    width: 30rem;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    color: var(--color-azure);
}

.search_bar-container>div {
    width: 100%;
    display: flex;
    align-items: center;
}

.search_bar input {
    background: transparent;
    margin-left: 0.7rem;
    padding: 0.5rem 0;
    width: 100%;
    font-size: 1.1rem;
    outline: none;
    border: none;
    color: var(--color-azure);
}

.search_bar input::placeholder {
    color: var(--color-azure);
    font-size: 1rem;
}

.button {
    display: inline-block;
    width: fit-content;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-bg);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.4s ease;
    color: var(--color-white);
    font-family: allan;
    border: none;
}

.button:hover {
    background: var(--color-gray-900);
}

/* =============================== SORT BY ============================== */
.sort_by {
    margin: 0 50px 20px;
}

.posts_col {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post_unit {
    display: flex;
    gap: 1rem;
}

.post_unit .done_prjt {
    color: var(--color-green);
}

.post_unit h2 i {
    color: var(--color-bg);
}

.post_unit h2 {
    font-size: var(--font-22);
    color: var(--color-primary);
    font-family: meri;
}

.post_filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.post_filter i {
    font-size: 25px;
    color: var(--color-primary);
}

.post_filter select {
    padding: 0 10px;
    height: 35px;
    width: 100%;
    background: none;
    border-radius: var(--card-border-radius-2);
    resize: none;
    color: var(--color-primary);
    font-size: var(--font-16);
    border: 2px solid var(--color-primary);
    outline: none;
    border-radius: 3px;
}

/* =============================== BLOG ============================== */
.blog {
    margin: 30px 50px 50px;
}

.blog_col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 20px 0 0;
}

.blog_unit {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    border-left: 1px solid var(--color-gray-100);
    border-right: 1px solid var(--color-gray-100);
    border-bottom: 1px solid var(--color-gray-100);
}

.blog_unit .blog_cont {
    text-align: center;
    padding: 0 0 30px;
}

.blog_unit .blog_cont .blog_info {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}

.blog_unit .blog_cont .blog_info span {
    font-size: var(--font-14);
    color: var(--color-primary);
    padding: 5px 5px 0;
    border-radius: 5px;
}

.blog_unit .blog_cont .blog_info span i {
    padding-right: 5px;
    color: var(--color-bg);
    font-size: var(--font-18);
}

.blog_unit .blog_unit_img {
    overflow: hidden;
    width: 100%;
}

.blog_unit .blog_unit_img img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
    transition: 0.6s ease-in-out;
}

.blog_unit:hover {
    box-shadow: 0 0 20px -12px var(--color-gray-300);
}

.blog_unit:hover>.blog_unit_img img {
    transform: scale(1.1);
}

.blog_unit h1 {
    font-size: var(--font-35);
    margin: 0 20px 0;
    padding: 10px 0;
    text-align: center;
    text-transform: capitalize;
    border-top: 1px solid var(--color-gray-100);
}

.blog_unit p {
    font-size: var(--font-16);
    text-align: center;
    padding: 0 20px 20px;
}

.blog_unit a {
    font-size: var(--font-16);
    padding: 5px 12px;
    color: var(--color-white);
    background: var(--color-primary);
    transition: 0.8s ease;
    border-radius: var(--border-rad-5px);
    border: 2px solid var(--color-primary);
}

.blog_unit a:hover {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.blog_col .blog_unit .popupview {
    z-index: 4;
    position: fixed;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
}

.blog_col .blog_unit .popupview.active {
    opacity: 1;
    visibility: visible;
}

.blog_col .blog_unit .popupcard::-webkit-scrollbar {
    width: 5px;
    background: #eee;
}

.blog_col .blog_unit .popupcard::-webkit-scrollbar-track {
    border-radius: 5px;
    box-shadow: inset 0 0 0px transparent;
}

.blog_col .blog_unit .popupcard::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--color-gray-ccc);
}

.blog_col .blog_unit .popupcard {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 90vw;
    height: 90vh;
    margin: 20px;
    background: var(--color-white);
}

.blog_col .popupcard a {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 20px;
    padding: 2px 10px;
    border-radius: var(--border-rad-50pc);
    color: var(--color-azure);
    background: var(--color-primary);
    border: none;
}

.blog_col .popupcard a:hover {
    color: var(--color-azure);
}

.blog_col .blog_unit .popupcard img {
    width: 100%;
    height: 60vh;
    object-position: center;
    object-fit: cover;
}

.blog_col .popupcard .post_info {
    text-align: center;
    margin: 10px 0 0;
}

.blog_col .popupcard .post_info .blog_info {
    display: flex;
    justify-content: space-evenly;
    padding: 10px 30px;
}

.blog_col .popupcard .post_info .blog_info span {
    font-size: var(--font-16);
    color: var(--color-primary);
    padding: 5px 5px 0;
    border-radius: 5px;
}

.blog_col .popupcard .post_info .blog_info span i {
    padding-right: 5px;
    color: var(--color-bg);
    font-size: var(--font-20);
}

.blog_col .popupcard .post_info h1 {
    padding: 10px 10px 0;
    margin: 10px 20px 0;
}

.blog_col .popupcard .post_info p {
    font-size: var(--font-16);
    text-align: center;
    padding: 10px 30px 20px;
    font-size: var(--font-18);
}

.blog_col .popupcard .post_info .highlight {
    background: #ddd;
    margin: 10px 40px;
    padding: 20px 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog_col .popupcard .post_info .highlight p {
    font-weight: var(--font-weight-600);
    padding: 0;
    font-size: var(--font-18);
}

.blog_col .popupcard .post_info .highlight i {
    font-size: 30px;
    color: var(--color-primary);
    padding-right: 10px;
}

.blog_col .popupcard .post_info .post_imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    gap: 2rem;
    width: 100%;
    padding: 10px 40px 40px;
}

.blog_col .popupcard .post_info .post_imgs img {
    border-radius: 10px;
}

/* =============================== FAQS ============================== */
.faqs_area {
    margin: 80px 0;
}

.faqs {
    background: var(--color-primary-d);
    background-repeat: no-repeat;
    background-position: right;
    background-size: 1800px;
    padding: 20px 50px 30px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
}

.faqs .faqimg img {
    width: 320px;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px 0 100px 100px;
}

.faqs section {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-azure);
    padding: 30px 0 0;
}

.faqs section h2 {
    color: var(--color-bg);
    font-size: 700;
}

.faqs section a {
    margin: 20px 0px 0px;
    font-size: var(--font-18);
    padding: 10px 20px;
    background: var(--color-bg);
    color: var(--color-primary);
    border-radius: var(--border-rad-2px);
    transition: 0.8s ease;
    cursor: pointer;
}

.faqs section a:hover {
    background: var(--color-primary);
    color: var(--color-azure);
}

.faqs .faq_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqs .faq_row .post_filter select {
    color: var(--color-white);
    font-size: 18px;
    border: 2px solid var(--color-white);
}

.faqs .faq_row .post_filter option {
    color: var(--color-primary);
}

.faqs .title {
    font-size: var(--font-40);
    margin: 10px 0px;
}

.faqs .faq {
    width: 100%;
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}

.faqs .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faqs .question h3 {
    font-size: var(--font-22);
}

.faqs .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}

.faqs .answer p {
    padding-top: 1rem;
    line-height: 1.6;
    font-size: var(--font-18);
}

.faqs .faq.active .answer {
    max-height: 300px;
    animation: fade 1s ease-in-out;
}

.faqs .faq.active i {
    transform: rotate(180deg);
}

.faqs .faq i {
    transition: transform 0.5s ease-in;
}

/* =============================== APPLY NOW ============================== */
.apply {
    margin: 50px 150px;
}

.apply h1 {
    font-size: 35px;
    text-align: center;
}

.form_header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    text-align: center;
}

.form_header img {
    width: 140px;
    height: 140px;
    object-position: center;
}

.form_header .detail h1 {
    font-weight: 600;
    font-size: 25px;
}

.form_header .detail h3 {
    font-weight: 600;
    font-size: 20px;
}

/* =============================== APPLY FORM ============================== */
.apply .apply_form form {
    display: flex;
    flex-direction: column;
}

.apply_form form label {
    display: flex;
    flex-direction: column;
    font-size: 20px;
    color: var(--color-black);
}

.apply_form form label input,
select {
    width: 100%;
    outline: none;
    border-bottom: 1px solid var(--color-gray-300);
    padding: 2px 10px;
    /* border-radius: 4px; */
    color: var(--color-gray-900);
    background: none;
}

.apply_form form .apart {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.apply_form form .subject_combo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.apply_form form .apart label {
    width: 100%;
}

.apply_form form .form_apart {
    display: flex;
    justify-content: space-between;
}

.apply_form form .form_check {
    font-size: 20px;
}

.apply_form form button {
    width: 100%;
    outline: none;
    border: 1px solid var(--color-primary);
    padding: 10px 0;
    font-size: 20px;
    border-radius: 4px;
    background: var(--color-primary);
    color: var(--color-azure);
}

.apply_form .notice {
    text-align: center;
}

.apply_form .notice h2 {
    color: var(--color-bg);
    font-weight: 600;
}

.apply_form .notice p {
    margin: 0 150px;
    font-size: 18px;
}

.apply_form form .image_unit {
    display: flex;
    flex-direction: row;
    width: 40%;
    position: relative;
    margin: 0 auto 10px;
}

.apply_form form .image_unit img {
    border-radius: 20px;
    height: 200px;
    width: 100%;
    padding: 4px;
    margin: 10px 0 0;
    border: 5px solid var(--color-primary);
    object-fit: cover;
}

.apply_form form .image_unit .image_plus_icon .file {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: var(--color-gray-ccc);
    height: 50px;
    width: 50px;
    font-size: 22px;
    padding: 10px;
    border-radius: 50%;
    color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =============================== FEES ============================== */
.fees {
    margin: 50px 0;
}

.fees h1 {
    text-align: center;
    font-size: var(--font-25);
    padding-bottom: 10px;
    text-decoration: underline;
}

.fees_col {
    display: flex;
    justify-content: center;
}

.uniform .fees_col table {
    width: 60%;
}

.fees_col table {
    width: 50%;
    font-size: var(--font-16);
}

.fees_col table th {
    background: var(--color-gray-900);
    padding: 5px 10px;
    color: var(--color-azure);
    text-align: left;
}

.fees_col table .tbl_tl {
    background: var(--color-gray-100);
}

.fees_col table th:is(:last-child) {
    text-align: center;
}

.fees_col table th:not(:first-child) {
    border-left: 1px solid var(--color-gray-200);
}

.fees_col table td {
    text-align: left;
    padding: 5px 10px;
    border-bottom: 1px solid var(--color-gray-300);
}

.fees_col table td:is(:last-child) {
    text-align: center;
}

.fees_col table td:not(:first-child) {
    border-left: 1px solid var(--color-gray-200);
}

.fees_col table tr:hover td {
    background-color: var(--color-gray-100);
    cursor: default;
    transition: var(--transition);
}

/* =============================== PAYMENT ============================== */
.payment {
    padding: 0 200px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment h1 {
    text-align: center;
    font-size: var(--font-30);
}

.payment p {
    font-size: var(--font-18);
    padding-bottom: 10px;
}

.payment p span {
    background: var(--color-primary);
    color: var(--color-white);
}

.payment small {
    text-align: center;
    font-size: var(--font-16);
}

/* =============================== PDFS ============================== */
.pdfs .pdfs_col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    margin: 20px 0 20px;
    text-align: center;
}

.pdfs_col .pdf_div a {
    display: flex;
    flex-direction: column;
    font-size: var(--font-16);
    color: var(--color-bg);
}

.pdfs_col .pdf_div a i {
    font-size: 45px;
    color: var(--color-primary);
}

/* =============================== MEDIA QUERY FOR 1024px ============================== */
@media only screen and (max-width: 1024px) {

    /* =============================== NAV ============================== */
    .landpagerow {
        width: 100%;
        margin: 0;
    }

    .landpagecol {
        flex-direction: column;
    }

    .landcont {
        padding: 40px 0;
    }

    .about {
        padding: 50px 50px 40px;
        flex-direction: column-reverse;
    }

    .about .aboutcol1 {
        width: 100%;
    }

    .about .aboutcol2 {
        width: 100%;
    }

    .find {
        flex-direction: column;
    }

    .info {
        width: 100%;
    }

    .infoimg img {
        height: 60vh;
    }

    .sports .benefitscol {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery_col {
        grid-template-columns: repeat(3, 1fr);
    }

    .hm_words {
        flex-direction: column-reverse;
    }

    .hm_words .aboutcol {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .apply_form form .image_unit {
        width: 60%;
    }
}

/* =============================== MEDIA QUERY FOR 830px ============================== */
@media only screen and (max-width: 830px) {
    .landpage .carousel .w-100 {
        min-height: 88vh !important;
    }

    .about .aboutcol2 img {
        height: 50vh;
    }

    .about .popupcard {
        height: 90vh;
    }

    .about .popupcard .post_info {
        margin: 10px 20px 20px;
    }

    .hm_words {
        display: flex;
        flex-direction: column-reverse;
        gap: 1rem;
    }

    .hm_words .aboutcol3 {
        width: 80%;
    }

    .hm_words .popupcard img {
        width: 80%;
    }

    .hm_words .popupcard .post_info {
        margin: 10px 20px 20px;
    }

    .sports .benefitscol {
        padding: 0 30px;
    }

    .sports .sports_info p {
        margin: 10px 100px 20px;
    }

    .projects_col {
        padding: 40px 0 0;
    }

    .projects_col .project_unit {
        flex-direction: column;
    }

    .projects_col .project_unit .project_img {
        width: 100%;
    }

    .projects_col .project_unit .project_cont {
        width: 100%;
    }

    .projects_col .project_unit img {
        height: 40vh;
    }

    .projects_col .project_unit:not(:nth-of-type(2n+1)) {
        flex-direction: column;
    }

    .projects_col .popupcard {
        height: 100%;
    }

    .blog_col {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog_col .popupcard .post_info .post_imgs {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .blog_col .blog_unit .popupcard {
        height: 100%;
        margin: 50px;
    }

    .team {
        padding: 30px 0 10px;
    }

    .teamcol {
        padding: 0 30px 0;
    }

    .gallery_col {
        grid-template-columns: repeat(2, 1fr);
    }

    .vid_slide .vid_col {
        grid-template-columns: repeat(1, 1fr);
    }

    .faqs_area {
        margin: 50px 0;
    }

    .faqs .faqimg img {
        width: 100%;
        border-radius: 80px 0 80px 80px;
    }

    .faqs .faq {
        width: 100%;
    }

    .apply {
        margin: 50px;
    }

    .apply_form form .form_apart {
        flex-direction: column;
    }

    .apply_form .notice p {
        margin: 0;
    }

}

/* =============================== MEDIA QUERY FOR 430px ============================== */
@media only screen and (max-width: 430px) {

    /* =============================== NAV ============================== */
    .about {
        padding: 50px 0 40px;
    }

    .hm_words {
        padding: 30px 10px 40px;
    }

    .hm_words .aboutcol3 {
        width: 100%;
    }

    .hm_words .popupcard img {
        width: 100%;
    }

    .hm_words .popupcard {
        height: 90vh;
    }

    .sports .sports_info p {
        margin: 10px 20px 20px;
    }

    .sports .benefitscol {
        margin: 0 0 20px;
        padding: 40px 0 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .sports .benefitcube {
        border-radius: 0;
    }

    .post_unit {
        flex-direction: column;
    }

    .projects {
        padding: 0 10px;
    }

    .projects_col .popupcard .post_info {
        margin: 10px 10px 20px;
    }

    .blog {
        margin: 30px 0px 50px;
    }

    .posts_col {
        margin: 10px 20px 0;
        flex-direction: column;
        gap: 0.5rem;
    }

    .search_bar-container {
        width: 90%;
    }

    .payment {
        padding: 0 20px;
    }

    .blog_unit {
        border-radius: 0;
        border: none;
        box-shadow: 0 0 15px -5px var(--color-primary);
    }

    .blog_col .blog_unit .popupcard {
        margin: 20px;
    }

    .blog_col .popupcard .post_info .highlight {
        flex-direction: column;
        gap: 0.5rem;
        margin: 10px 20px;
    }

    .blog_col .popupcard .post_info .highlight p {
        padding: 0 0 10px;
    }

    .blog_col .popupcard .post_info .post_imgs {
        padding: 10px 20px 40px;
    }

    .sort_by {
        margin: 0 0px 20px;
    }

    .gallery_col {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 0px 50px;
    }

    .vid_slide {
        margin: 0 10px;
    }

    .vid_slide .vid_sd {
        height: 50vh;
    }

    .faqs {
        padding: 20px 20px 30px;
    }

    .info {
        padding: 0;
    }

    .info_cntct {
        padding: 0 20px 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .form_header {
        flex-direction: column;
        gap: 0;
    }

    .band {
        height: 15vh;
    }

    .band h1 {
        font-size: var(--font-40);
    }

    .blog_unit h1 {
        font-size: var(--font-30);
    }

    .gallery .popupcard .img_info h1 {
        font-size: var(--font-30);
    }
}

/* =============================== MEDIA QUERY FOR 375px ============================== */
@media only screen and (max-width: 375px) {

    .info_cntct {
        padding: 0 0 20px;
    }

}

/* =============================== MEDIA QUERY FOR 450px ============================== *
@media only screen and (max-width: 320px) {

}