/* .----------------------------------header-------------------------------- */
.header {
    position: relative;
    width: 100%;
    z-index: 1;
    background-color: #ffff;
    padding-bottom: 5px;
}

.header_content {
    align-items: center;
}

.container {
    padding: 0 44px;
    max-width: 100%;
    margin: 0 auto;
}

.header_content.flex1 {
    margin-bottom: 0;
}

.header_logo {
    max-width: 167px;
    flex: 167px;
    margin-right: 200px;
    cursor: pointer;
}

.header_menu-item {
    padding: 0 30px;
}

.header_menu-list {
    font-family: 'Poppins', sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
}

.header_menu-link {
    color: black;
    font-size: 22px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header_menu-link:hover {
    color: #469E47;
}

.center a {
    color: #fff;
}

button.RegButton {
    background: #649c52;
    border: none;
    width: 130%;
    height: 58px;
    font-size: 1.5em;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.RegButton:hover {
    background-color: green;
}

.M-RegButton {
    background: #649c52;
    border: none;
    width: 200px;
    height: 48px;
    font-size: 1.25em;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    transition: background-color 0.3s ease;
}

.M-RegButton:hover {
    background-color: green;
}

.icon-wrap {
    display: none;
}

.menu-icon {
    max-width: 30px;
    display: none;
    cursor: pointer;
}

.dropdown {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 400px;
    height: auto;
    max-height: 80vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.header.scrolled {
    top: 10px;
    padding: 8px 30px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header.scrolled .header_logo {
    max-width: 100px;
}

/*=================================== Multi-Dropdown menu ===============*/
.parent {
    display: block;
    position: relative;
}

.parent a {
    margin: 10px 9px 10px 16px;
    text-decoration: none;
}

.parent:hover>ul {
    display: block;
    position: absolute;
}

/*=================================== Mega Dropdown Menu ===============*/
.mega-dropdown {
    position: relative;
}

.mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 25px 35px;
    display: flex;
    gap: 45px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    min-width: max-content;
}

.mega-dropdown:hover .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-column {
    display: flex;
    flex-direction: column;
    min-width: 130px;
}

.mega-column h4 {
    color: #F89C1E;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
    text-align: left;
}

.mega-column a {
    color: #444;
    text-decoration: none;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: left;
    display: block;
}

.mega-column a:hover {
    color: #469E47;
    transform: translateX(5px);
}

/* Mobile Mega Menu Adjustments */
.MDropbox.mega-dropdown .mega-menu-panel {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0 0;
    display: none;
    flex-direction: column;
    gap: 20px;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
}

.MDropbox.mega-dropdown:hover .mega-menu-panel,
.MDropbox.mega-dropdown:focus-within .mega-menu-panel {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.MDropbox .mega-column {
    align-items: center;
}

.MDropbox .mega-column h4 {
    border-bottom: none;
    text-align: center;
    color: #6A0DAD;
    /* Brand Purple */
    font-size: 22px;
}

.MDropbox .mega-column a {
    text-align: center;
    font-size: 18px;
    padding: 6px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0px;
    min-width: 12em;
}

ul ul ul {
    left: 100%;
    top: 0;
    margin-left: 1px;
}

ul#align {
    left: 0;
    top: 27px;
}

li#align {
    width: 70%;
}

.header_menu-link:hover {
    color: #469E47;
}

.parent li:hover {
    background-color: #F0F0F0;
}

.expand {
    font-size: 12px;
    float: right;
    margin-right: 5px;
}

.header_menu-item span {
    cursor: pointer;
}

/*================================================== Menu Dropdown ==================================================*/
#MDropbtn {
    background-color: transparent;
    border: none;
    color: #333;
    padding: 0;
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s ease;
    width: 100%;
}

#MDropbtn:hover {
    color: #F89C1E;
}

.DMenu-item {
    text-align: center;
}

.MDropbox {
    text-align: center;
    background-color: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.MDropdown-content {
    display: none;
    position: absolute;
    background-color: #ecf4f5;
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.MDropdown-item {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-variant: small-caps;
    font-size: 100%;
}

.MDropdown-content a:hover {
    background-color: #e47f20;
}

.MDropbox:hover .MDropdown-content {
    display: block;
    background-color: #d30d77;
    opacity: 1;
}

.MDropdown:hover .MDropbtn {
    background-color: inherit;
}

.menu-link:hover,
#MDropbtn:hover {
    color: #469E47;
}

/*===================================================*/
/* Morphing Hamburger Menu Toggle */
.menu-toggle {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100000;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                background 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0),
                opacity 0.3s ease;
    transform-origin: 50% 50%;
}

/* Symmetrical morphing to X in the exact center of the hamburger toggle, with zero horizontal shift! */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.menu-item {
    list-style: none;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.dropdown.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Entry Animation */
.dropdown.active .menu-item:nth-child(1) {
    transition-delay: 0.1s;
}

.dropdown.active .menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.dropdown.active .menu-item:nth-child(3) {
    transition-delay: 0.3s;
}

.dropdown.active .menu-item:nth-child(4) {
    transition-delay: 0.4s;
}

.dropdown.active .menu-item:nth-child(5) {
    transition-delay: 0.5s;
}

.dropdown.active .menu-item:nth-child(6) {
    transition-delay: 0.6s;
}

.dropdown.active .menu-item:nth-child(7) {
    transition-delay: 0.7s;
}

.menu-link {
    text-decoration: none;
    color: #333;
    font-size: 28px;
    font-weight: 700;
    display: block;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #F89C1E, #469E47);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover {
    color: #F89C1E;
}

.menu-link:hover::after {
    width: 40px;
}

/* ----------------------------media-quary---------------------------- */
@media screen and (max-width:767px) {
    .dropdown {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    .menu-icon {
        max-width: 30px;
        display: block;
        min-width: 25px;
        fill: #000;
    }
}

/* .----------------------------------hero-bennar-------------------------------- */
.hero-bennar {
    position: relative;
}

.bacground-image {
    min-height: 550px;
    height: 80vh;
}

.bacground-image img {
    object-position: center;
}

.hero-bennar__content {
    padding-top: 17px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1045px;
}

.banner-text {
    font-family: 'Poppins', serif;
    font-weight: 600;
    color: #FFF;
    background-color: #ffffff98;
    font-size: 60px;
    padding-bottom: 30px;
    padding-top: 30px;
    border-radius: 10px;
}

@media(max-width:800px) {
    .banner-text {
        font-size: 50px;
    }
}

.herp-bennar__paragrapg {
    font-family: 'Inter';
    color: #FFF;
    text-align: center;
    font-size: 96px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 20px;
}

.hero-bennar_btn {
    color: #FFF;
    text-align: center;
    font-size: 23px;
    font-weight: 500;
    background-color: #469E47;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}

.hero-bennar_btn:hover {
    background-color: green;
}

/* countdown */
.banner {
    background-color: #81277A;
    color: #fff;
    padding: 20px;
    font-family: 'Poppins', serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-left: auto;
}

.left_section {
    font-size: 32px;
    font-weight: 700;
}

.event-venue {
    font-weight: 500;
}

.mobile-text {
    display: none;
}

.date-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    font-size: 18px;
}

.time_block {
    color: #e3a042;
    display: flex;
    flex-direction: column;
    background: #562358;
    margin: 0 10px 0 0;
}

.countdown span {
    font-weight: 800;
    font-size: 2rem;
}

.countdown span,
.countdown p {
    width: 60px;
    font-weight: bold;
    margin: 0 5px;
}

.countdown .units {
    background-color: transparent;
    color: #fff;
    font-weight: normal;
}

.sign-up {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.email-input {
    display: flex;
    align-items: center;
}

.email-input input {
    background-color: #4d2755;
    color: white;
    font-family: 'Poppins', serif;
    text-align: center;
    font-weight: 500;
    padding: 12px;
    border: none;
    margin-right: 5px;
    border-radius: 0;
    width: 300px;
}

.email-input input::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.ok-btn {
    font-weight: 700;
    font-size: 20px;
    background-color: #f89c1e;
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.ok-btn:hover {
    color: green;
}

/* email response */
#response-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

#response-message.success {
    color: green;
    background-color: #e6ffe6;
    /* Light green background */
}

#response-message.error {
    color: red;
    background-color: #ffe6e6;
    /* Light red background */
}

/* Media query */
/* For tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    .banner {
        flex-direction: column;
        gap: 15px;
    }

    .banner h1 {
        font-size: 2em;
    }

    .countdown span {
        font-size: 1.75rem;
    }

    .countdown span,
    .countdown p {
        width: 50px;
    }

    .email-input input {
        width: 250px;
    }
}

/* For tablets in portrait and large phones */
@media screen and (max-width: 768px) {
    .banner {
        flex-direction: row;
        padding: 20px;
        gap: 25px;
    }

    .banner h1 {
        display: none;
    }

    .left_section,
    .mobile-text {
        font-size: 25px;
    }

    .mobile-text {
        display: block;
        font-weight: 600;
        width: 450px;
    }

    .countdown {
        margin: 15px 0;
    }

    .countdown span {
        font-size: 2.5rem;
    }

    .countdown span,
    .countdown p {
        width: 65px;
        margin: 0 3px;
    }

    .email-input {
        width: 500px;
        justify-content: center;
    }

    .email-input input {
        width: 400px;
        font-size: 17px;
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    .banner {
        padding: 15px;
    }

    .banner h1 {
        font-size: 1.5em;
    }

    .left_section,
    .mobile-text {
        font-size: 20px;
    }

    .countdown {
        font-size: 14px;
    }

    .countdown span {
        font-size: 1.65rem;
    }

    .countdown span,
    .countdown p {
        width: 50px;
        margin: 0 2px;
    }

    .time_block {
        margin: 0 5px 0 0;
    }

    .email-input {
        width: 390px;
    }

    .email-input input {
        padding: 8px;
        width: 250px;
        font-size: 14px;
        margin-right: 0;
    }

    .email-input .ok-btn {
        padding: 9px;
        font-size: 1em;
    }


    .left-column h3 {
        font-size: 20px;
    }
}

/* ---------------------------------------------- */
.instagram-section {
    padding: 0 20px 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', serif;
    font-weight: 500;
}

.instagram-section>a {
    display: flex;
    justify-content: center;
    padding-bottom: 35px;
}

.instagram-section>a>img {
    width: 30%;
    aspect-ratio: 25 / 9;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .instagram-section h2 {
        font-size: 24px;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* .----------------------------------.main-component-------------------------------- */
.home_details {
    font-family: 'Poppins', serif;
    display: flex;
    font-family: Arial, sans-serif;
    min-height: 80vh;
    height: auto;
}

.left-column {
    flex: 1;
    padding: 20px;
    background-color: #469E47;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: 2em;
    justify-content: center;
    align-items: center;
}

.left-column button {
    margin-bottom: 20px;
    border: none;
    background: inherit;
    color: inherit;
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}

.left-column button:hover {
    color: #edeeef;
}

.left-column h3 {
    font-weight: 700;
    font-family: 'Poppins';
    font-style: normal;
    width: 400px;
}

.right-column {
    flex: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right-column section {
    width: 70%;
}

.right-column h1 {
    font-size: 20px;
    margin-left: -57px;
}

.right-column h2 {
    font-weight: 900;
    font-size: 48px;
    margin: 40px 0;
}

.video-container {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.video-container video {
    width: 100%;
    height: auto;
}

.video-container p {
    text-align: center;
    margin-top: 10px;
}

.video-container iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: 6px solid #81277A;
    border-radius: 21px;
}

.about,
.index_events,
.event_info {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Poppins', serif;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    text-transform: uppercase;
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.about-section h1,
.event-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
}

.content-wrapper,
.event_description,
.pho3nix_kids_purpose {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.image-wrapper,
.image_left {
    flex: 1;
    max-width: 500px;
}

.image-wrapper img,
.image_left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.text-content,
.about_pho3nix_kids {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.text-content p:nth-child(3) {
    max-width: 455px;
}

.text-content p,
.about_pho3nix_kids p {
    font-size: 20px;
    color: #333;
    font-weight: 400;
}

.more-info-btn {
    display: inline-block;
    background-color: #469E47;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-top: 20px;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.more-info-btn:hover {
    background-color: green;
}

/*////////////////////////////// Media query //////////////////////////////////////////*/
/* Tablets */
@media screen and (max-width: 768px) {
    .video-container iframe {
        width: 100%;
        height: 400px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .video-container iframe {
        height: 300px;
    }
}

/* Small Mobile */
@media screen and (max-width: 320px) {
    .video-container iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {

    .content-wrapper,
    .event_description,
    .pho3nix_kids_purpose {
        flex-direction: column;
    }

    .image-wrapper,
    .image_left {
        max-width: 100%;
    }

    .about-section h1,
    .event-title {
        font-size: 36px;
    }
}

/* For larger tablets and smaller desktops */
@media screen and (max-width: 1200px) {
    .home_details {
        height: auto;
        min-height: 90vh;
    }

    .left-column {
        font-size: 1.5em;
    }

    .right-column h2 {
        font-size: 48px;
    }

    .right-column section {
        width: 80%;
    }

    .content-wrapper,
    .event_description,
    .pho3nix_kids_purpose {
        gap: 30px;
    }

    .about,
    .index_events,
    .event_info {
        padding: 30px 20px;
    }

    .about-section h1,
    .event-title {
        font-size: 40px;
    }
}

/* For tablets and landscape phones */
@media screen and (max-width: 768px) {
    .home_details {
        flex-direction: column;
    }

    .left-column {
        padding: 50px 30px;
        font-size: 1.7em;
        align-items: normal;
    }

    .left-column button {
        text-align: left;
    }

    .left-column h3 {
        width: 100%;
    }

    .right-column {
        flex: 1;
    }

    .right-column section {
        width: 90%;
    }

    .right-column h2 {
        font-size: 36px;
    }

    .right-column h1 {
        margin-left: -33px;
    }

    .content-wrapper,
    .event_description,
    .pho3nix_kids_purpose {
        flex-direction: column;
        align-items: center;
    }

    .image-wrapper,
    .image_left {
        max-width: 100%;
    }

    .text-content {
        max-width: 100%;
    }

    .about-section h2 {
        font-size: 18px;
    }

    .text-content p,
    .about_pho3nix_kids p {
        max-width: none;
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    .left-column {
        padding: 40px 20px;
        font-size: 20px;
    }

    .left-column button {
        font-size: 0.7em;
        margin-bottom: 15px;
    }

    .right-column {
        padding: 15px;
    }

    .right-column h1 {
        font-size: 15px;
        margin-left: 0;
    }

    .right-column h2 {
        font-size: 28px;
        margin: 10px 0;
    }

    .right-column section {
        width: 100%;
    }

    .about-section h2 {
        font-size: 15px;
    }

    .about-section h1,
    .event-title {
        font-size: 25px;
    }

    .about,
    .index_events,
    .event_info {
        padding: 20px 15px;
    }

    .content-wrapper,
    .event_description,
    .pho3nix_kids_purpose {
        gap: 20px;
    }

    .text-content {
        gap: 15px;
    }

    .text-content p,
    .about_pho3nix_kids p {
        font-size: 15px;
    }

    .more-info-btn {
        text-align: center;
        padding: 0.75rem;
    }

    .instagram-grid {
        display: none;
    }

    .instagram-section>a {
        padding-bottom: 0;
    }

    .instagram-section>a>img {
        width: 60%;
    }
}

/* For very small devices */
@media screen and (max-width: 320px) {
    .right-column h2 {
        font-size: 24px;
    }

    .about-section h1,
    .event-title {
        font-size: 28px;
    }

    .left-column {
        font-size: 0.9em;
    }
}

/* ---------------------------- */

.index_events {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.index_events h2 {
    font-size: 74px;
    margin-bottom: 0;
    font-weight: 800;
}

.index_events h3 {
    margin-top: 0;
    margin-bottom: 60px;
    font-size: 30px;
    color: #F89C1E;
}

.event {
    display: flex;
    align-items: center;
    border-top: 4px solid #eee;
    padding-top: 50px;
    padding-bottom: 20px;
}

/*------------------Past Event ---------------------------*/
.event.past {
    border-top: 4px solid gray;
}

.event.past>div>div {
    color: gray;
}

.event.past button {
    background-color: gray;
}

.event.past:last-child {
    border-bottom: 4px solid gray;
}

.date {
    text-align: center;
}

.day {
    font-size: 60px;
    font-weight: bold;
    color: #F89C1E;
}

.subDetail {
    font-size: 19px;
    color: #888;
}

.details {
    flex-grow: 1;
}

.title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 5px;
}

.detButton {
    font-size: 25px;
    font-weight: 700;
    margin: 0 40px 24px 0;
    background-color: #469E47;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    cursor: pointer;
}

.detButton:hover {
    background-color: #469E47;
}

/* Media query */
/* For larger tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    .index_events h2 {
        font-size: 60px;
    }

    .index_events h3 {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .event {
        padding: 40px 20px;
    }

    .day {
        font-size: 50px;
    }

    .title {
        font-size: 34px;
    }

    .detButton {
        font-size: 22px;
        padding: 8px 20px;
        margin-right: 30px;
    }
}

/* For tablets and landscape phones */
@media screen and (max-width: 768px) {
    .index_events h2 {
        font-size: 48px;
    }

    .index_events h3 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .event {
        padding: 30px 15px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .date {
        flex: 0 0 auto;
    }

    .day {
        font-size: 40px;
    }

    .details {
        flex: 1;
        min-width: 200px;
    }

    .title {
        font-size: 28px;
    }

    .detButton {
        font-size: 20px;
        margin: 0;
        order: 3;
    }

    .subDetail {
        font-size: 16px;
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    .banner {
        gap: 15px;
    }

    .index_events {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .index_events h2 {
        font-size: 36px;
    }

    .index_events h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .event {
        padding: 25px 10px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .day {
        font-size: 36px;
    }

    .title {
        font-size: 24px;
    }

    .details {
        width: 100%;
    }

    .detButton {
        font-size: 18px;
        padding: 8px 16px;
        margin: 10px auto 0;
    }

    .subDetail {
        font-size: 14px;
    }
}

@media screen and (max-width: 440px) {
    .text-content p:nth-child(3) {
        width: 380px;
    }

    .home_details {
        min-height: 80vh;
    }
}

/* For very small devices */
@media screen and (max-width: 395px) {
    .index_events h2 {
        font-size: 32px;
    }

    .index_events h3 {
        font-size: 18px;
    }

    .day {
        font-size: 32px;
    }

    .title {
        font-size: 22px;
    }

    .detButton {
        width: 100%;
        font-size: 16px;
    }

    /* ribbon */
    .email-input input {
        width: 200px;
        padding: 7px;
    }

    .text-content p:nth-child(3) {
        width: 350px;
    }

    .detButton {
        width: 35%;
    }
}

/*::::::::::::::::::::::::::: About Page :::::::::::::::::::::::::::::::::::::::*/
.A_hero-section,
.C_hero-section {
    position: relative;
    height: 53vh;
    font-family: 'Poppins', serif;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../image/about_hero.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
    animation: fadeIn 1.5s ease-out;
}

.A_hero-title,
.C_hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #F89C1E;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

.count {
    display: flex;
    gap: 20px;
    text-align: center;
    margin-top: auto;
    animation: fadeIn 1s ease-out;
}

#abt_countdown .time_block,
#cnt_countdown .time_block {
    background-color: rgba(3, 3, 3, 0.5);
    transition: transform 0.3s ease;
    animation: pulseGlow 2s infinite;
}

#abt_countdown .time_block:hover,
#cnt_countdown .time_block:hover {
    transform: translateY(-5px);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.5s ease-out;
}

.countdown-number {
    font-size: 48px;
    font-weight: bold;
    color: #F89C1E;
    /*  */
    position: relative;
    overflow: hidden;
}

.countdown-label {
    font-size: 14px;
    text-transform: lowercase;
}

/* Keyframes for various animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes numberFlip {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(248, 156, 30, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(248, 156, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(248, 156, 30, 0);
    }
}

/* Animation for number changes */
.countdown-number.changed {
    animation: numberFlip 0.3s ease-out;
}

.countdown-label {
    font-size: 14px;
    text-transform: lowercase;
    animation: fadeIn 1s ease-out 1s both;
}

/* Add this to your JavaScript to trigger number change animation */
.time_block span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.time_block span.animate {
    animation: numberFlip 0.3s ease-out;
}

/* Optional: Add hover effects for interactive elements */
#abt_countdown .time_block,
#cnt_countdown .time_block {
    cursor: pointer;
    transition: all 0.3s ease;
}

#abt_countdown .time_block:hover,
#cnt_countdown .time_block:hover {
    background-color: rgba(3, 3, 3, 0.7);
    transform: translateY(-5px);
}

/* Add animation delays for cascade effect */
#abt_countdown .time_block:nth-child(1) {
    animation-delay: 0.2s;
}

#abt_countdown .time_block:nth-child(2) {
    animation-delay: 0.4s;
}

#abt_countdown .time_block:nth-child(3) {
    animation-delay: 0.6s;
}

#abt_countdown .time_block:nth-child(4) {
    animation-delay: 0.8s;
}

/* Large screens (1200px and down) */
@media screen and (max-width: 1200px) {

    .A_hero-section,
    .C_hero-section {
        height: 50vh;
        padding: 30px;
    }

    .A_hero-title,
    .C_hero-title {
        font-size: 56px;
    }

    .count {
        gap: 15px;
    }

    #abt_countdown .time_block,
    #cnt_countdown .time_block {
        padding: 15px;
    }
}

/* Medium screens (992px and down) */
@media screen and (max-width: 992px) {

    .A_hero-section,
    .C_hero-section {
        height: 45vh;
        padding: 25px;
    }

    .A_hero-title,
    .C_hero-title {
        font-size: 48px;
    }

    .count {
        gap: 12px;
    }

    .count .date {
        font-size: 1.8rem;
    }

    #abt_countdown,
    #cnt_countdown {
        display: flex;
        gap: 10px;
    }

    #abt_countdown .time_block,
    #cnt_countdown .time_block {
        padding: 12px;
        min-width: 80px;
    }

    #abt_countdown .time_block span,
    #cnt_countdown .time_block span {
        font-size: 1.8rem;
    }

    #abt_countdown .units,
    #cnt_countdown .units {
        font-size: 0.9rem;
    }
}

/* Tablets (768px and down) */
@media screen and (max-width: 768px) {

    .A_hero-section,
    .C_hero-section {
        height: 40vh;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .A_hero-title,
    .C_hero-title {
        font-size: 40px;
        margin-bottom: 5px;
    }

    .count {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .count .date {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    #abt_countdown,
    #cnt_countdown {
        gap: 8px;
    }

    #abt_countdown .time_block,
    #cnt_countdown .time_block {
        padding: 10px;
        min-width: 70px;
    }

    #abt_countdown .time_block span,
    #cnt_countdown .time_block span {
        font-size: 1.6rem;
    }

    #abt_countdown .units,
    #cnt_countdown .units {
        font-size: 0.8rem;
        margin: 5px 0 0;
    }
}

/* Mobile phones (576px and down) */
@media screen and (max-width: 576px) {
    .A_hero-section {
        height: 35vh;
        padding: 15px;
    }

    .A_hero-title {
        font-size: 32px;
    }

    .count .date {
        font-size: 1.4rem;
    }

    #abt_countdown {
        gap: 5px;
    }

    #abt_countdown .time_block {
        padding: 8px;
        min-width: 60px;
    }

    #abt_countdown .time_block span {
        font-size: 1.4rem;
    }

    #abt_countdown .units {
        font-size: 0.7rem;
    }
}

/* Extra small devices (375px and down) */
@media screen and (max-width: 375px) {
    .A_hero-section {
        height: 30vh;
        padding: 10px;
    }

    .A_hero-title {
        font-size: 28px;
    }

    .count .date {
        font-size: 0.9rem;
    }

    #abt_countdown .time_block {
        padding: 5px;
        min-width: 50px;
    }

    #abt_countdown .time_block span {
        font-size: 1.2rem;
    }

    #abt_countdown .units {
        font-size: 0.6rem;
    }
}

/* Landscape orientation adjustments */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .A_hero-section {
        height: 100vh;
        padding: 15px;
    }

    .count {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    #abt_countdown {
        gap: 10px;
    }
}

/* /////////////////////////// Event Section ////////////////////////////////// */
.event_info {
    max-width: -webkit-fill-available;
    margin: 0 30px;
}

.event_title {
    letter-spacing: 1.2px;
}

.event_description {
    align-items: center;
}

.about_pho3nix_kids,
.image_left {
    flex-basis: 0;
    max-width: -webkit-fill-available;
}

.image_left {
    flex-grow: 1;
}

.about_pho3nix_kids {
    flex-grow: 1.3;
    row-gap: 50px;
}

.pho3nix_kids_purpose {
    /* flex-flow: wrap; */
    gap: 15px;
}

.vission h2,
.mission h2 {
    text-align: center;
}

.vission p,
.mission p {
    flex-grow: 1;
    flex-basis: 0;
    max-width: -webkit-fill-available;
}

/* Statistics section */
.impact_section {
    font-family: 'Poppins', serif;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 110px;
}

.impact_background {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.stats_overlay {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 800px;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    text-align: center;
}

.stat_item {
    flex: 1;
    padding: 10px;
}

.stat_number {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
    display: block;
}

.stat_label {
    font-size: 1.2rem;
    color: #F0A04B;
    font-weight: 500;
    display: block;
}

/* Media queries */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .stats_overlay {
        width: 80%;
        padding: 15px 0;
    }

    .stat_number {
        font-size: 3.5rem;
    }

    .stat_label {
        font-size: 1.1rem;
    }
}

/* Tablets and iPad */
@media (max-width: 768px) {
    .impact_section {
        padding-bottom: 90px;
    }

    .stats_overlay {
        width: 70%;
        bottom: 5%;
    }

    .stat_number {
        font-size: 2.5rem;
    }

    .stat_label {
        font-size: 1rem;
    }
}

/* Large mobile devices */
@media (max-width: 576px) {
    .impact_section {
        padding-bottom: 70px;
    }

    .stats_overlay {
        width: 90%;
        padding: 15px;
    }

    .stat_item {
        padding: 8px 0;
    }

    .stat_number {
        font-size: 2.2rem;
        margin-bottom: 5px;
    }
}

/* Medium mobile devices (500px) */
@media (max-width: 500px) {
    .impact_background {
        max-height: 400px;
    }

    .stats_overlay {
        bottom: 4%;
        padding: 12px;
    }

    .stat_number {
        font-size: 2rem;
    }

    .stat_label {
        font-size: 0.7rem;
    }
}

/* iPhone 8, SE, etc. (440px) */
@media (max-width: 440px) {
    .impact_section {
        padding-bottom: 60px;
    }

    .impact_background {
        max-height: 350px;
    }

    .stats_overlay {
        width: 70%;
        padding: 10px;
    }

    .stat_item {
        padding: 6px 0;
    }

    .stat_number {
        font-size: 1.7rem;
    }
}

/* iPhone X, 11, 12, 13 Mini (395px) */
@media (max-width: 395px) {
    .impact_section {
        padding-bottom: 50px;
    }

    .stats_overlay {
        width: 75%;
        bottom: 3%;
    }

    .stat_number {
        font-size: 1.6rem;
    }

    .stat_label {
        font-size: 0.7rem;
    }
}

/* Small mobile devices (375px) */
@media (max-width: 375px) {
    .impact_background {
        max-height: 300px;
    }

    .stats_overlay {
        padding: 8px;
    }

    .stat_item {
        padding: 5px 0;
    }

    .stat_number {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }

    .stat_label {
        font-size: 0.7rem;
    }
}

/* Very small mobile devices */
@media (max-width: 320px) {
    .impact_section {
        padding-bottom: 40px;
    }

    .impact_background {
        max-height: 250px;
    }

    .stat_number {
        font-size: 1.4rem;
    }

    .stat_label {
        font-size: 0.7rem;
    }
}



/* Event objectives */
.event_section {
    margin: 0 30px;
    font-family: 'Poppins', serif;
    padding: 30px 20px;
}

.event_container>div>div,
.event_container>div>p {
    font-size: 20px;
}

@media (max-width: 768px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 16px;
    }
}

@media (max-width: 500px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 15px;
    }
}

@media (max-width: 440px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 14px;
    }
}

@media (max-width: 395px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 13px;
    }
}

@media (max-width: 375px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 12px;
    }
}

@media (max-width: 320px) {

    .event_container>div>div,
    .event_container>div>p {
        font-size: 11px;
    }
}

.event_container {
    display: flex;
    flex-wrap: wrap;
    background-color: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    justify-content: center;
}

.event_objectives,
.event_experience {
    flex: 1;
    padding: 30px;
    min-width: 600px;
}

.event_format {
    width: 45%;
    padding: 30px;
    text-align: center;
}

.section_title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.objective_item {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.objective_item::before {
    content: "- ";
    margin-right: 5px;
}

.experience_item {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.experience_item::before {
    content: "- ";
    margin-right: 5px;
}

.age_groups {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}

.age_group {
    flex-basis: calc(50% - 100px);
    margin: 0 10px;
}

/*... Media queries for the Event objectives section ...*/
/* Large screens - 1024px */
@media (max-width: 1024px) {
    .event_section {
        margin: 0 20px;
        padding: 25px 15px;
    }

    .event_objectives,
    .event_experience {
        min-width: 450px;
        padding: 25px;
    }

    .event_format {
        width: 100%;
        padding: 25px;
    }
}

/* Medium screens - 768px */
@media (max-width: 768px) {
    .event_container {
        flex-direction: column;
    }

    .event_objectives,
    .event_experience {
        min-width: auto;
        width: 100%;
        padding: 20px;
    }

    .section_title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .age_groups {
        gap: 10px;
    }

    .age_group {
        flex-basis: calc(50% - 20px);
    }
}

/* Small screens - 480px */
@media (max-width: 480px) {
    .event_section {
        margin: 0 10px;
        padding: 20px 10px;
    }

    .event_objectives,
    .event_experience,
    .event_format {
        padding: 15px;
    }

    .section_title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .age_group {
        margin: 5px 0;
    }
}

/* Extra small screens - 375px */
@media (max-width: 375px) {
    .event_section {
        margin: 0 5px;
        padding: 15px 5px;
    }

    .event_container {
        border-radius: 8px;
    }

    .event_objectives,
    .event_experience,
    .event_format {
        padding: 12px;
    }

    .section_title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .objective_item,
    .experience_item {
        margin-bottom: 10px;
    }
}


/*--- Experience Section ---*/
.experience_section {
    max-width: 1050px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.experience_title {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.experience_image_container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e74c3c;
    margin-bottom: 20px;
}

.experience_image {
    width: 100%;
    height: auto;
    display: block;
}

/* Additional video styles */
.video_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.more_videos_link {
    text-decoration: none;
}

.more_videos_button {
    background-color: #469E47;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    float: right;
    transition: background-color 0.3s;
}

.more_videos_button:hover {
    background-color: #b3211f;
}

.button_container {
    overflow: hidden;
    padding: 10px 0;
}

/* Media quaries for the experience section */
/* Large screens - 1024px */
@media (max-width: 1024px) {
    .experience_section {
        max-width: 700px;
        padding: 18px;
    }

    .experience_title {
        font-size: 32px;
        margin-bottom: 18px;
    }
}

/* Medium screens - 768px */
@media (max-width: 768px) {
    .experience_section {
        max-width: 600px;
        padding: 15px;
    }

    .experience_title {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

/* Small screens - 480px */
@media (max-width: 480px) {
    .experience_section {
        padding: 12px;
    }

    .experience_title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .more_videos_button {
        padding: 10px 10px;
    }
}

/* Extra small screens - 375px */
@media (max-width: 375px) {
    .experience_section {
        padding: 10px;
    }

    .experience_title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}



/*////////////////////////////////////////////////// Contact Page ////////////////////////////////////////////////*/
.A_hero-section.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/contact-hero.png') center/cover no-repeat;
}

.A_hero-title.contact {
    color: #81277a;
}

.time_block.contact {
    color: #81277a;
}

/* main content */
.contact-section {
    display: flex;
    min-height: 500px;
    font-family: 'Poppins', serif;
    margin: 90px 40px 20px 29px;
}

.contact-section__info {
    background-color: white;
    padding: 0 40px;
    flex: 1;
}

.contact-section__label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 3px;
    background: #81277a;
}

.contact-section__form {
    background-color: #81277a;
    padding: 40px;
    flex: 2;
    color: white;
}

.contact-section__heading {
    color: #81277a;
    font-size: 80px;
    margin-bottom: 40px;
    font-weight: 900;
    font-family: 'Poppins';
    font-style: normal;
}

.contact-section__form-heading {
    color: white;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.contact-section__label {
    position: relative;
    padding-bottom: 5px;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-section__detail {
    margin-bottom: 25px;
    font-size: 16px;
}

.form_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    row-gap: 40px;
}

.contact-section__input,
.contact-section__textarea {
    background: #fffffa;
    border: none;
    padding: 15px;
    width: 100%;
}

.contact-section__form-group.message {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
}

.contact-section__textarea {
    height: 100%;
    resize: none;
}

.contact-section__submit {
    background-color: #DFA028;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 40px;
    transition: background-color 0.3s;
}

.contact-section__submit:hover {
    background-color: #c78f24;
}

/* map */
.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 20px 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Media query for contact page */
/* For tablets and smaller desktops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .contact-section {
        margin: 60px 20px 20px 20px;
    }

    .contact-section__heading {
        font-size: 60px;
    }

    .contact-section__form {
        padding: 30px;
    }
}

/* For tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        margin: 40px 20px;
    }

    .contact-section__info {
        padding: 0 20px 40px 20px;
    }

    .contact-section__heading {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .contact-section__form-heading {
        font-size: 32px;
    }

    .map-container iframe {
        height: 350px;
    }
}

/* For mobile phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    .contact-section {
        margin: 30px 15px;
    }

    .contact-section__heading {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .contact-section__form-heading {
        font-size: 28px;
    }

    .form_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-section__form-group.message {
        grid-column: 1;
        grid-row: auto;
    }

    .contact-section__textarea {
        height: 200px;
    }

    .contact-section__submit {
        width: 100%;
        margin-top: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* For very small devices (max-width: 320px) */
@media screen and (max-width: 320px) {
    .contact-section__heading {
        font-size: 32px;
    }

    .contact-section__form-heading {
        font-size: 24px;
    }

    .contact-section__detail {
        font-size: 14px;
    }

    .map-container iframe {
        height: 250px;
    }
}





/* ================================ our_events section strat css ===================================== */
.our_events {
    margin-bottom: 98px;
}

.our-events_image-with-content.flex1 {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.our_events .our-events_title {
    color: #000;
    font-size: 64px;
    font-weight: 800;
    font-family: 'Proxima Nova';
    max-width: fit-content;
    letter-spacing: 1.5px;
    line-height: 1.22;
    text-transform: uppercase;
    margin-bottom: 72px;
}

.our_events .our-events_alpha_image {
    max-width: 394px;
    flex: 394px;
}

.our_events .our-events_beta.flex_between {
    flex: 1;
    padding: 0 68px 0 62px;
}

.our_events .beta_pre-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Proxima Nova';
    letter-spacing: 0.03px;
    line-height: 1.23;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    max-width: 400px;
}

.our_events .beta_title {
    color: #000;
    font-size: 64px;
    font-family: 'Proxima Nova';
    font-weight: 800;
    line-height: 1.07;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 8px;
}

.our_events .beta_icon {
    max-width: 24px;
    flex: 24px;
    margin-right: 10px;
    cursor: pointer;
}

.our_events .beta_icon.item2 {
    max-width: 19px;
    flex: 19px;
}

.our_events span.beta_text {
    color: #FFF;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Proxima Nova';
    text-transform: uppercase;
    line-height: 1.23;
    letter-spacing: 0.87px;
}

.our_events .beta_icon_text_block.flex1 {
    padding-left: 35px;
}

.our_events .beta_icon_text:first-child {
    padding-right: 55px;
}

.our_events .beta_center_title {
    color: #469E47;
    text-align: center;
    font-size: 64px;
    font-family: 'Proxima Nova';
    font-weight: 800;
    max-width: 119px;
    text-transform: uppercase;
}

.beta_center_title sub {
    font-size: 16px;
}

.our_events .beta_btn {
    color: #FFF;
    text-align: center;
    font-size: 36px;
    font-family: 'Proxima Nova';
    font-weight: 700;
    line-height: 1.23;
    display: block;
    text-transform: uppercase;
    background: var(--BRAND-GREEN, #469E47);
    padding: 9px 16px;
    letter-spacing: 0.1px;
}

.our_events .our-events_wrapper {
    width: 100%;
}

/*############################ Leaderboard ################################*/
.leaderboard-container {
    background-color: #81277a;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 50px auto;
}

.space {
    margin-top: 20px;
}

.leaderboard-container h2 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0;
    background-color: #469E47;
    font-family: 'Proxima Nova';
}

.leaderboard {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-family: 'Proxima Nova';
}

.leaderboard h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.leaderboard h4 {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.leaderboard :is(h4, th) {
    font-family: 'MarkerFelt';
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(4) {
    border-bottom: 3px solid #666;
}

th {
    font-weight: bold;
    letter-spacing: 2px;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e9e9e9;
}

@media (max-width: 768px) {
    .leaderboard-container {
        padding: 10px;
    }

    .leaderboard {
        padding: 10px;
    }

    th,
    td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    table {
        font-size: 14px;
    }

    th,
    td {
        padding: 6px;
    }

    .leaderboard h3 {
        font-size: 16px;
    }

    .leaderboard h4 {
        font-size: 14px;
    }
}

/*################################################current EVENT section#################################### */
.Count_Down {
    position: relative;
    background-color: #469E47;
    width: 100%;
    font-family: 'Proxima Nova';
    margin-bottom: 40px;
}

.Count_Down-content {
    color: #ffffff;
    font-size: 53px;
    font-weight: bold;
    text-align: center;
}

.Count_Down-text {
    position: relative;
    display: inline-block;
}

.Count_Down-day {
    display: inline-block;
    word-spacing: -8px;
}

.Days {
    font-size: 73px;
}

@media (max-width: 800px) {
    .Count_Down-content {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .Count_Down-content {
        font-size: 28px;
    }

    .Days {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .Count_Down-content {
        font-size: 20px;
    }

    .Days {
        font-size: 30px;
    }
}

@media (width: 412px) {
    .Count_Down-content {
        font-size: 21px;
        /* phones like s2o Ultra*/
    }
}

/*-----------------------------introduction----------------------------*/
.introduction,
.abtTheRaceContent {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    gap: 20px;
    padding: 2rem;
}

.rightSide {
    width: 50%;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
    word-wrap: break-word;
    display: flex;
}

.leftSide {
    width: 50%;
}

@media (max-width: 480px) {

    .leftSide,
    .rightSide {
        width: 100%;
    }
}

@media (max-width: 800px) {

    .introduction,
    .abtTheRaceContent {
        flex-direction: column-reverse;
    }
}

.leftSide img {
    height: auto;
}

/*-----------------------------About the race-----------------------*/
.abtTheRace {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Proxima Nova';
}

.abtTheRaceTitle {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    background-color: #F89C1E;
    color: #fff;
    font-size: 1.5rem;
    padding: 18px 0;
}

.AbtFlex {
    display: flex;
    flex-direction: column;
}

.readMore {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.readMore svg {
    width: 24px;
}

@media (max-width: 768px) {
    .rightSide {
        font-size: 28px;
        line-height: 34px;
    }
}

@media (max-width: 480px) {

    .introduction,
    .abtTheRaceContent {
        padding: 1rem;
    }

    .rightSide {
        font-size: 16px;
        line-height: normal;
    }

    .readMore {
        font-size: 13px;
    }

    .readMore p {
        width: initial;
        font-size: 16px;
    }

    .abtTheRaceTitle {
        font-size: 1rem;
    }
}

/*-------------------* Event info *----------------------*/
.Property1Variant2 {
    position: relative;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
    margin-bottom: 80px;
    row-gap: 40px;
}

.border-circle {
    width: 200px;
    position: relative;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: linear-gradient(#160D26, #12365B, #7B358B, #CD2032, #E9224B, #F15927, #F9A61D);
}

.event-span,
.PLink {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Proxima Nova';
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    z-index: 1;
    color: #000;
}

.circle-label {
    font-size: 25px;
    font-family: 'Proxima Nova';
    text-align: center;
}

.border-circle::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #FFF;
    border-radius: 50%;
}

.dateText {
    position: relative;
    top: 8px;
    right: 3px;
}

.circle-label.date {
    position: relative;
    bottom: -35%;
}

.routeText {
    width: 120px;
    position: relative;
    left: 40px;
    top: 17px;
}

.timeText,
.regText,
.venuText {
    position: relative;
    top: 12px;
}

.circle-label {
    position: relative;
    bottom: -43%;
}

.venuText {
    width: 110px;
    left: 44px
}

.time {
    position: relative;
    bottom: -51%;
}

/*-------------------code unidentified----------*/
.information {
    padding-top: 50px;
}

.info {
    font-size: 20px;
    font-weight: 600;
    color: #79db7a;
    text-align: center;
    font-family: 'Proxima Nova', 'Courier New', monospace;
    padding-bottom: 20px;
}

.information h2 {
    color: black;
    font-size: 30px;
    text-align: center;
    font-family: 'Proxima Nova', 'Courier New', monospace;
    padding-bottom: 15px;
}

.info-background {
    background-color: #FFF;
}

.text-p {
    color: black;
    font-size: 20px;
    text-align: center;
    font-family: 'Proxima Nova', 'Courier New', monospace;
    font-weight: 600;
    padding-bottom: 60px;
}

.details-container {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
}

.details-for-text {
    width: 50%;
    text-align: center;
}

.text-details-h3 {
    text-align: left;
    font-family: 'Proxima Nova', 'Courier New', monospace;
    font-size: 30px;
}

.details-for-text p {
    text-align: left;
}

.details-for-image {
    width: 510px;
    height: 382px;
}

@media(max-width:800px) {
    .text-p {
        font-size: 1rem
    }

    .details {
        display: block;
        width: 100%;
    }

    .details-for-text {
        width: 100%;
        padding-left: 20px;
    }

    .details-for-image {
        width: 100%;
        padding: 20px 20px;
    }
}

/*------------------- Code of ethics ----------------*/
.code-background {
    width: 100%;
    height: 470px;
    background-image: url('../image/text-image.jpg');
    background-color: #469E47;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    margin-top: 50px;
    padding-bottom: 30px;
}

@media(max-width:800px) {
    .code-background {
        height: auto;
    }
}

.background-code-text {
    padding-top: 40px;
}

.code-title {
    font-size: 40px;
    font-family: 'Proxima Nova';
    font-weight: 600;
    text-align: center;
    padding-top: 90px;
    color: white;
}

@media (max-width: 480px) {
    .code-title {
        font-size: 34px;
    }
}

.text-code {
    text-align: center;
    color: white;
    padding-top: 40px;
    padding-right: 10vw;
    padding-left: 10vw;
    font-family: 'Proxima Nova';
    font-size: 20px;
}

/*-----------------------*/
.text-with-image__image {
    padding: 40px 130px;
}

.text-with-image__paragraph {
    padding: 0 144px;
    font-family: 'Proxima Nova';
}

/*------------------- Race Category --------------------*/
.race-category {
    width: 100%;
}

.race-cat-heading {
    text-align: center;
    background: linear-gradient(175.63deg, #160D26 3.55%, #12365B 19.43%, #7B358B 35.78%, #CD2032 51.66%, #E9224B 63.8%, #F15927 77.34%, #F9A61D 93.21%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 72px;
    font-weight: 639;
    font-family: 'Proxima Nova';
    padding: 80px 0;
}

@media (max-width: 1200px) {
    .race-cat-heading {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .race-cat-heading {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .race-cat-heading {
        font-size: 40px;
    }
}

.race-category_cards {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
    row-gap: 35px;
}

.tiny-toes-card {
    width: 591px;
    height: 378px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.onekRun {
    background: #469E47;
}

.twokRun {
    background: #D91F26;
}

.threekRun {
    background: #81267A;
}

.fivekRun {
    background: #F89C1E;
}

.sevenkRun {
    background: #B6B4B4;
}

.race_track {
    text-align: center;
    font-size: 72px;
    font-weight: 600;
    color: white;
    font-family: 'Proxima Nova';
    padding-top: 28px;
}

.tiny-text {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: white;
    font-family: 'Proxima Nova';
    padding-bottom: 40px;
}

.tiny-toes-price {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Proxima Nova';
    text-align: center;
}

.tiny-toes-price p {
    font-size: 25px;
    font-weight: 700;
    color: white;
    font-family: 'Proxima Nova';
}

.tiny-toes-price h2 {
    color: white;
    font-weight: 400;
}

.event-vol {
    padding-top: 50px;
}

@media (max-width: 480px) {
    .tiny-toes-card {
        width: 291px;
        height: 271px;
    }

    .race_track {
        font-size: 62px;
    }

    .tiny-text {
        font-size: 22px;
    }

    .tiny-toes-price h2 {
        font-size: 16px;
    }

    .tiny-toes-price p {
        font-size: 16px;
    }

    .our-events_alpha_image img {
        border-radius: 7px;
    }
}

/* ================================ Thank you page ===================================== */
.ThankU-content {
    padding: 48px 18px 5px 31px;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.first_grid {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.first_grid img {
    width: 95%;
    height: 47%;
    object-fit: cover;
}

.second_grid {
    grid-column: span 1;
    grid-row: span 2;
}

.fifth_grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fifth_grid a {
    border: none;
    cursor: pointer;
    height: auto;
    background: #469E47;
    font-family: 'Proxima Nova';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    padding: 0 10px;
}

.forth_grid {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 480px) {
    .ThankU-content {
        padding: 24px 12px 5px 15px;
    }

    .fifth_grid a {
        font-size: 16px;
    }
}

.fifth_grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================================ volunteer section start css   ===================================== */
.volunteer .volunteer_title {
    color: #FFF;
    font-size: 96px;
    font-weight: 900;
    font-family: 'Proxima Nova';
    text-transform: uppercase;
    letter-spacing: 3.34px;
    line-height: 1.22;
    padding-right: 10px;
    z-index: 1;
}

.volunteer .volunteer_main-wrap {
    background-image: url("../image/Rectangle\ 31.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 230px;
    position: relative;
}

.volunteer .volunteer_main-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(109deg, rgba(70, 158, 71, 0.98) 37.32%, rgba(98, 197, 84, 0.77) 73.51%);
}

.volunteer a.volunteer_btn {
    color: #FFF;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Proxima Nova';
    text-align: center;
    display: inline-block;
    letter-spacing: 1.02px;
    line-height: 1.21;
    background: var(--PURPLE, #81267A);
    padding: 9px 8px;
}

.volunteer {
    margin-bottom: 25px;
}

.volunteer .volunteer_content.flex1 {
    justify-content: space-between;
    width: 100%;
}

.volunteer .volunteer_button {
    z-index: 1;
}

.volunteer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* ================================ volunteer section End css ===================================== */
/* ================================ Gif section    ===================================== */
.qemetica-banner {
    text-align: center;
    margin: 50px 0 0 0;
}

.qemetica-banner img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* ================================ footer_copy-right section start    ===================================== */
.footer_copy-right {
    background-color: #732f76;
    padding: 20px 0;
}

.footer_copy-right_icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    margin-right: 8px;
}

.footer_copy-right_Text {
    color: #fff;
    font-size: 20px;
    font-optical-sizing: auto;
    font-family: "Inter", serif;
    font-weight: 400;
    letter-spacing: 0.01px;
}

.text-with-image__image iframe {
    height: 660px;
}

.WhatsApp_icon {
    position: fixed;
    z-index: 10;
    display: flex;
    bottom: 100px;
    right: 0;
}

/* ================================ footer_copy-right section End    ===================================== */
/* ================================ Madia Qurey  section start    ===================================== */
@media (max-width: 1040px) {
    .text-with-image__image {
        padding: 0px;
    }
}

@media (max-width: 650px) {
    .text-with-image__image iframe {
        height: 250px;
        padding: 10px;
    }
}

@media (max-width:480px) {
    .text-with-image__image iframe {
        height: 368px;
        padding: 10px;
    }

    .WhatsApp_icon {
        width: 50px;
    }
}

@media screen and (max-width:1660px) {
    .volunteer .volunteer_title {
        font-size: 80px;
    }

    .volunteer a.volunteer_btn {
        font-size: 45px;
    }
}

@media screen and (max-width:1540px) {
    .our_events .beta_title {
        font-size: 50px;
    }

    .our_events .our-events_beta.flex_between {
        flex: 1;
        padding: 0 40px 0 40px;
    }

    .volunteer .volunteer_title {
        font-size: 70px;
    }

    .volunteer a.volunteer_btn {
        font-size: 40px;
    }

    .footer .footer_beta_email {
        max-width: 560px;
        flex: 560px;
    }

    .footer .input {
        padding: 15px 20px;
    }

    .footer .footer_last_btn {
        font-size: 30px;
        padding: 11px 20px;
    }

    .footer .footer_alpha_title {
        font-size: 30px;
        padding: 11px 20px;
    }
}

@media screen and (max-width:1440px) {
    .our_events .our-events_title {
        font-size: 50px;
        margin-bottom: 50px;
    }

    .our_events .beta_title {
        font-size: 42px;
    }

    .our_events .beta_pre-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .our_events .beta_center_title {
        font-size: 45px;
    }

    .our_events .beta_btn {
        font-size: 20px;
    }

    .volunteer .volunteer_title {
        font-size: 55px;
    }

    .volunteer a.volunteer_btn {
        font-size: 32px;
    }

    .volunteer .volunteer_main-wrap {
        height: 233px;
    }

    .footer_last_block_para {
        font-size: 20px;
    }

    .footer .footer_last_btn {
        font-size: 25px;
        padding: 10px 15px;
        margin-bottom: 17px;
    }

    .footer .input {
        padding: 15px 20px;
        font-size: 19px;
    }

    .footer .footer_Email_text {
        font-size: 30px;
    }

    .footer .footer_alpha_icon_text {
        font-size: 28px;
    }

    .footer .footer_alpha_title {
        font-size: 26px;
    }

    .footer .footer_alpha_icon {
        max-width: 25px;
        flex: 25px;
    }
}

@media screen and (max-width:1279px) {
    .our_events .our-events_title {
        font-size: 45px;
        margin-bottom: 45px;
    }

    .our_events .our-events_title {
        font-size: 40px;
    }

    .our_events .our-events_title {
        font-size: 40px;
        margin-bottom: 35px;
    }

    .our_events .our-events_alpha_image {
        max-width: 300px;
        flex: 300px;
    }

    .our_events .our-events_beta.flex_between {
        flex: 1;
        padding: 0 30px 0 30px;
    }

    .our_events .beta_pre-title {
        margin-bottom: 16px;
    }

    .our_events span.beta_text {
        font-size: 16px;
    }

    .beta_title-icon-wrap {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 22px;
    }

    .our_events .beta_title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 18px;
    }

    .our_events .beta_icon_text_block.flex1 {
        padding-left: 0;
        justify-content: center;
    }

    .our_events .beta_center_title {
        font-size: 33px;
        max-width: 100px;
    }

    .our_events .our-events_beta {
        padding: 0 50px 0 50px;
        flex-wrap: wrap;
    }

    .volunteer .volunteer_title {
        font-size: 45px;
    }

    .volunteer a.volunteer_btn {
        font-size: 25px;
    }

    .our_events {
        margin-bottom: 65px;
    }

    .volunteer {
        margin-bottom: 65px;
    }

    .footer .input {
        padding: 10px 15px;
        font-size: 17px;
    }

    .footer .footer_Email_text {
        font-size: 24px;
    }

    .footer .footer_beta_email {
        max-width: 300px;
        flex: 300px;
    }

    .footer .footer_alpha_icon_text {
        font-size: 24px;
    }

    .footer .footer_alpha_icon {
        max-width: 20px;
        flex: 20px;
        margin-right: 10px;
    }

    .footer .footer_last_btn {
        font-size: 18px;
        padding: 10px 15px;
        margin-bottom: 10px;
    }

    .footer_last_block_para {
        font-size: 15px;
    }

    .footer .footer_alpha_title {
        font-size: 18px;
        padding: 10px 20px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width:990px) {
    .our_events .our-events_title {
        font-size: 33px;
        margin-bottom: 23px;
    }

    .our_events .our-events_alpha_image {
        max-width: 250px;
        flex: 250px;
    }

    .our_events .beta_pre-title {
        margin-bottom: 12px;
        font-size: 15px;
    }

    .our_events .beta_title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .our_events .beta_center_title {
        font-size: 25px;
    }

    .our_events .beta_btn {
        font-size: 16px;
        letter-spacing: 1.3px;
        padding: 8px 16px;
    }

    .volunteer .volunteer_title {
        font-size: 30px;
    }

    .volunteer a.volunteer_btn {
        font-size: 20px;
    }

    .volunteer .volunteer_main-wrap {
        height: 250px;
    }

    .our_events {
        margin-bottom: 40px;
    }

    .volunteer {
        margin-bottom: 40px;
    }

    .footer .footer_beta_email {
        max-width: 250px;
        flex: 250px;
    }

    .footer .footer_Email_text {
        font-size: 20px;
    }

    .footer .footer_last_btn {
        font-size: 16px;
    }

    .footer .footer_alpha_title {
        font-size: 16px;
    }

    .footer .footer_alpha_icon {
        max-width: 17px;
        flex: 17px;
    }

    .footer .footer_alpha_icon_text {
        font-size: 20px;
    }
}

@media screen and (max-width:767px) {
    .our_events .our-events_title {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .our_events .our-events_pre-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .our-events_image-with-content.flex1.float {
        flex-direction: column;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    }

    .our_events .our-events_alpha_image {
        /* max-width: 100%; */
        flex: 100%;
        margin-bottom: 25px;
    }

    .our_events .our-events_beta.flex_between {
        flex: 1;
        padding: 30px 30px;
        padding-top: 0;
    }

    .volunteer .volunteer_content.flex1 {
        flex-direction: column;
    }

    .volunteer .volunteer_title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }

    .volunteer a.volunteer_btn {
        font-size: 15px;
    }

    .our_events {
        margin-bottom: 20px;
    }

    .footer_main_wrap.flex_between {
        flex-direction: column;
    }

    .footer .footer_alpha {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 30px;
    }

    .footer_beta.flex1 {
        flex-direction: column;
    }

    .footer .footer_Email_text {
        font-size: 16px;
        margin: 0;
    }

    .footer .footer_beta_email {
        max-width: 90%;
        flex: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }

    .footer_last_block {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }

    .footer .footer_alpha_icon_text {
        font-size: 17px;
    }

    .footer .footer_beta.flex1 {
        width: 100%;
        align-items: center;
    }

    .volunteer .volunteer_main-wrap {
        height: 200px;
    }

    .volunteer {
        margin-bottom: 20px;
    }
}

/* ================================ Madia Qurey  section End    ===================================== */
/* .----------------------------------.media-quary-header-start-------------------------------- */
@media screen and (max-width:1280px) {
    .header_logo {
        max-width: 140px;
        flex: 140px;
        margin-right: 130px;
    }

    .header_menu-link {
        font-size: 22px;
    }

    /* .----------------------------------.media-quary-.herp-bennar-start-------------------------------- */
    .herp-bennar__paragrapg {
        font-size: 35px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    /* .----------------------------------.media-quary-.main-component-start-------------------------------- */
    .main-component__flex-wrap {
        margin: 0 -20px;
    }

    .main-component__main-item {
        padding-inline: 20px;
    }

    .main-component-nbr {
        font-size: 80px;
    }

    .main-component-pre-title {
        font-size: 22px;
    }

    .main-component__paragraph {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .main-component__btn {
        font-size: 16px;
        max-width: 138px;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    /* .----------------------------------.media-quary-text-with-image-start-------------------------------- */
    .text-with-image_pre-title {
        font-size: 50px;
        margin-bottom: 30px;
    }

    .text-with-image__paragraph {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width:990px) {

    /* .----------------------------------.media-quary-.announcement-ber-start-------------------------------- */
    .announcement-ber {
        padding-block: 10px;
    }

    .announcement-ber-text {
        color: #1D1D1D;
        font-size: 20px;
    }

    a.announcement-ber__social-icon {
        max-width: 20px;
        display: block;
    }

    /* .----------------------------------.media-quary-header-start-------------------------------- */
    .header_logo {
        max-width: 100px;
        flex: 100px;
        margin-right: 30px;
    }

    .header_menu-item {
        padding: 0 15px;
    }

    .header_menu-link {
        font-size: 16px;
    }

    /* .----------------------------------.media-quary-herp-bennar-start-------------------------------- */
    .herp-bennar__paragrapg {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .hero-bennar_btn {
        font-size: 20px;
        padding: 8px;
    }

    /* .----------------------------------.media-quary-.main-component-start-------------------------------- */
    .main-component__main-item {
        padding-inline: 20px;
        max-width: 50%;
        flex: 50%;
        margin-bottom: 50px;
    }

    /* .----------------------------------.text-with-image-------------------------------- */
    .text-with-image_pre-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .text-with-image__paragraph {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .text-with-image__btn {
        font-size: 20px;
    }
}

@media screen and (max-width:768px) {
    .announcement-ber__icon-wrap:last-child {
        padding-right: unset !important;
    }

    .announcement-ber-text {
        font-size: 16px;
    }

    .announcement-ber__icon-wrap {
        padding-inline: 5px;
    }

    /* .----------------------------------.media-quary-header-start-------------------------------- */
    .header_menu-item {
        display: none !important;
    }

    .dropdown {
        display: block;
        z-index: 1000;
    }

    .header_content {
        justify-content: space-between;
    }

    .icon-wrap {
        display: block;
        padding-left: 170px;
        position: relative;
        z-index: 1000000;
    }

    .menu-icon {
        max-width: 30px;
        display: block;
        min-width: 25px;
        fill: #000;
    }

    /* .----------------------------------.media-quary-herp-bennar-start-------------------------------- */
    .herp-bennar__paragrapg {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* .----------------------------------.media-quary-.main-component-start-------------------------------- */
    .main-component__main-item {
        padding-inline: 20px;
        max-width: 100%;
        flex: 100%;
        margin-bottom: 50px;
    }

    .main-component-nbr {
        font-size: 60px;
    }

    .main-component-pre-title {
        font-size: 18px;
    }

    /* .----------------------------------.text-with-image-------------------------------- */
    .text-with-image__title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .text-with-image_pre-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .text-with-image__paragraph {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 0 68px;
    }

    .text-with-image__btn {
        font-size: 20px;
    }

    /* ------------------main-component------------------------ */
    .main-component {
        padding: 40px 0;
    }

    .main-component__main-item {
        margin-bottom: 30px;
    }

    .main-component__paragraph {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    /*----------- Home page --------------*/
    .our-events_image-with-content.flex1 {
        flex-direction: column;
        padding-top: 23px;
        border-radius: 10px;
    }

    .our_events span.beta_text {
        font-size: 12px;
    }

    .our_events .beta_center_title {
        font-size: 20px;
    }

    .our_events .beta_btn {
        font-size: 14px;
        padding: 4px 8px;
    }

    .beta_center_title sub {
        font-size: 12px;
    }

    .footer_copy-right_Text {
        font-size: 15px;
    }

    .herp-bennar__paragrapg {
        font-size: 28px;
    }

    .bacground-image {
        min-height: 345px;
        height: 50vh;
    }

    /*----------- About page --------------*/
    .text-with-image_pre-title {
        font-size: 22px;
    }

    .text-with-image__paragraph {
        font-size: 17px;
        margin-bottom: 20px;
        padding: 0 28px;
    }
}