/* Import Google Font */
/* @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@100;200;300;400;500;600;700;800&display=swap'); */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Regular.woff2') format('woff2'),
         url('../fonts/PlusJakartaSans/PlusJakartaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.woff2') format('woff2'),
         url('../fonts/PlusJakartaSans/PlusJakartaSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Bold.woff2') format('woff2'),
         url('../fonts/PlusJakartaSans/PlusJakartaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.woff2') format('woff2'),
         url('../fonts/PlusJakartaSans/PlusJakartaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/PlusJakartaSans/PlusJakartaSans-Italic.woff2') format('woff2'),
         url('../fonts/PlusJakartaSans/PlusJakartaSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}



/* Root Variables */
:root {
    --primary-color: #FF0000;
    --secondary-color: #f7bcbc;
    --text-color: #ffffff;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.pt64 {
    padding-top: 64px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.my_header {
    width: 100%;
    height: 120px !important;
    padding: 0 49px;
    background-color: var(--primary-color);
}

.nav_parent {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
}

.custom_nav {
    height: 120px;
}

.header_menu {
    /* height: 120px; */
    background-color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom_menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.menu_item {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-wrap-mode: nowrap;
}

.menu_item:hover {
    opacity: 1;
}

.menu_item.active {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 20px 0;
    }

    /* .menu {
        flex-direction: column;
        gap: 20px;
    } */
}

.user-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ddd;
}

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

/* Navbar Styling */
.custom-navbar {
    background-color: var(--primary-color) !important;
    padding: 20px 44px;
}

.custom-nav-logo {
    height: 28px;
}

.custom-menu .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color) !important;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.custom-menu .nav-link:hover,
.custom-menu .nav-link.active {
    opacity: 1;
}

.language_parent {
    position: relative;
    width: 158px;
}

.custom-language-selector {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    width: 100%;
    background-color: rgb(255 255 255 / 85%);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: border-radius 0.2s ease-in-out;
    position: relative;
}

/* Remove bottom radius when active */
.custom-language-selector.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Dropdown Menu */
.custom-dropdown-menu {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: rgb(255 255 255/ 85%);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    /* Initially hidden */
    overflow: hidden;
    z-index: 999;
}

/* Title Inside Dropdown */
.dropdown-title {
    font-family: Abel !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    letter-spacing: 0px !important;
    vertical-align: middle !important;
    color: #8080808C !important;
}

/* Dropdown Items */
.custom-dropdown-menu li {
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 0.5px solid #8080808C;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px 16px 0px 31px;
    /* gap: 138px; */
    width: 100%;
    height: 44px;
    /* flex: none; */
    /* order: 3; */
    align-self: stretch;
    /* flex-grow: 0; */
    /* z-index: 3; */
    font-family: A Arghavan;
    font-weight: 700;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: 0px;
    vertical-align: middle;

}

/* Last item should not have a border */
.custom-dropdown-menu li:last-child {
    border-bottom: none;
}

/* Hover Effect */
.custom-dropdown-menu li:hover {
    background: #f8f8f8;
}

.custom-dropdown-menu .dropdown-title:hover {
    background: transparent !important;
    cursor: default;
}

/* mobile nav  */

/* .mobile_nav {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    cursor: pointer;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  }

  .menu_icon {
    font-size: 24px;
  } */

/* 🔹 Sidebar menu */
.mobile_menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--primary-color);
    box-shadow: -2px 0px 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 120px 20px 20px;
    z-index: 999;

}

.mobile_menu.active {
    right: 0;
}

.active_nav {
    background: #f4f4f4;
    color: rgb(0, 0, 0) !important;
    border-radius: 25px;

}

.menu_close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    /* Adjusted for better fit */
    cursor: pointer;
    color: #fff;
    background-color: #000;
    padding: 10px;
    /* Balanced padding */
    border-radius: 50%;
    height: 40px;
    /* Increased size for better visibility */
    width: 40px;
    /* Match height for perfect circle */
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.menu_links a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.menu_links a:hover {
    background: #f4f4f4;
    color: rgb(0, 0, 0);
    border-radius: 25px;
}

/* mobile nav end */

/* Hero Section */
.custom-hero-section {
    position: relative;
    width: 100%;
    height: 801px;
    min-height: 100vh;
}

.custom-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 22, 23, 0) 42.55%, #640A0A 93.65%);
    top: 0;
    left: 0;

}

.hero_image {
    width: 100%;
    height: 100%;
    z-index: -1;
    position: relative;
    object-fit: cover;
}

.profile_dropdown {
    padding: 8px 12px;
    width: 200px;
    height: 56px;
}

.profile_dropdown:active {
    background-color: #f8f8f8;
    color: #000;

}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-navbar {
        padding: 15px;
    }

    .custom-menu {
        text-align: center;
    }

    .custom-language-selector {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .custom-navbar {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .custom-menu {
        flex-direction: column;
        gap: 10px;
    }
}

.mobile_nav {
    display: none;
}

.menu_icon {
    font-size: 30px;
    color: #fff;

}

.hero_text_wrapper {
    position: absolute;
    max-width: 1440px;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    margin: auto;
    transform: translate(-50%, -50%);
}

.custom-text {
    position: absolute;
    left: 120px;
    color: white;
    max-width: 729px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date_txt {
    left: 120px;
    /* top: 254px; */
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #FFFFFF;

}

.fav_title {
    font-weight: 700;
    /* font-size: 120px; */
    font-size: clamp(24px, 7vw, 120px);
}

.custom-text p {
    font-weight: 400;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.64);
    margin: 0;

}

.hero_image_action_container {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    padding: 0px;
    gap: 12px;

    margin-top: clamp(16px, 7vw, 64px);

}

.action_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    gap: 10px;
    width: 199px;
    height: 58px;
    background: linear-gradient(277.3deg, #D00000 6.75%, #FE0000 95.73%);
    color: #fff;
}

.icon24 {
    height: 24px !important;
    width: 24px !important;
}

.mt_130 {
    margin-top: 130px;
}

@media screen and (max-width:1200px) {
    .custom_menu {
        gap: 16px;
    }

    .my_header {
        padding: 0 20px;
    }

}



/* event section  */
.event_section {
    background: #A40000;
    width: 100%;
    position: relative;
}

.event_section_child {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.event_title_section {
    max-width: 1440px;
    padding-top: 42px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 63px;
}


section {
    /* padding-left: 35px;
    padding-right: 35px;
    padding: 42px 35px; */
}

.heading {
    /* height: 58px; */
    font-weight: 800;
    /* font-size: 48px; */
    font-size: clamp(24px, 4vw, 48px);
    line-height: 120%;
    /* identical to box height, or 58px */
    letter-spacing: 0.02em;
    color: #FFFFFF;
    width: max-content;
}

.section_link {
    line-height: 120%;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 0.02em;
    text-decoration-line: underline;
    color: #FFFFFF;
}

.pt-42 {
    padding-top: 42px;
}



.event_slider_container {
    width: 100%;
    position: relative;
    padding-bottom: 64px;
}

swiper-container {
    height: 100%;
    /* padding: 0 85px; */
    padding: 0 120px;
}

swiper-slide {
    text-align: start;
    font-size: 18px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* width: 400px !important; */
    height: 500px;
    /* margin-right: 0 !important; */
}

.event_cards {
    /* min-width: 400px; */
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.event_cards_img {
    width: 100%;
    height: 323px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.event_cards_txt {
    flex-grow: 1;
    padding: 35px 19px 0px 19px;
    font-size: 16px;
    color: #333;
}

.event_cards_txt h4 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

/* .event_cards_txt span
{


position: absolute;
width: 37px;
height: 24px;
left: 19px;
top: 396px;

font-family: 'Plus Jakarta Sans';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 150%;
display: flex;
align-items: center;
letter-spacing: 0.04em;

color: rgba(255, 255, 255, 0.64);


}
.event_cards_txt p 
{


position: absolute;
width: 135px;
height: 24px;
left: 19px;
top: 428px;

font-weight: 500;
font-size: 16px;
line-height: 150%;
display: flex;
align-items: center;
letter-spacing: 0.04em;

color: rgba(255, 255, 255, 0.64);


} */
.event_cards_txt span,
.event_cards_txt p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.64);
}

.event_cards_txt span {
    margin-top: 12px;
    /* Adjust spacing */
}

.event_cards_txt p {
    margin-top: 8px;
    /* Adjust spacing */
}

.custom-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


.custom_slider_button {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 17px;
    gap: 10px;
    width: 58px;
    height: 58px;
    border: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    /* transform: matrix(-1, 0, 0, 1, 0, 0); */
    z-index: 1;
}

#nextBtn {
    position: absolute;
    top: 50%;
    right: 48px;
}

#prevBtn {
    position: absolute;
    top: 50%;
    left: 48px;

}

.custom_slider_button.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* testimonial section */

.testimonial_container {
    width: 100%;
    position: relative;
    background: #2B0707 !important;
    padding-top: 100px;
    padding-bottom: 100px;
}

.testimonial_container_child {
    max-width: 1440px;
    width: 100%;
    margin: auto;
}

.testimony {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    /* 30px */
    letter-spacing: 0.04em;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;

    width: max-content;
    /* Adjust width based on content */
    margin: 0 auto;
}

.testimony_wrapper {
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* overflow: hidden; */
    max-width: 1440px;
    width: 100%;
    /* padding: 0 85px; */
    padding: 0 120px;
    min-height: 530px;
    margin: 0 auto;
    margin-top: 64px;
}


.testimony_expandable_container {
    /* max-width: 1200px; */

    width: 100%;
    display: flex;
    /* padding: 0 20px; */
    padding: 0 0px;
}

.px120 {
    padding-left: 120px;
    padding-right: 120px;
}

.slide {
    /* margin: 10px; */
    cursor: pointer;
    /* color: #fff; */
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: all 500ms ease-in-out;
    width: 150px;
    height: 530px;
    /* padding: 48px; */
    padding: clamp(24px, 4vw, 48px);
}


.slide.active {
    flex: 10;
    width: 750px;
    background: rgba(255, 255, 255, 0.1) !important;

    .testimony_desc {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}


.profile_info {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-grow: 2;
}

.user_info {
    flex-grow: 2;
    overflow: hidden;
}

.user_info h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #FFFFFF !important;

}

.user_info p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;

    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.64);


}

.testimonial_avatar {
    width: 140px;
    height: 140px;
}

.testimony_desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.64);
    display: none;
}

.mt_40 {
    margin-top: 40px;
}

.slide:not(.active) .profile_info {
    flex-direction: column;
    align-items: center;
    height: 100%;

}

.slide:not(.active) .testimonial_avatar {
    width: 64px;
    height: 64px;
}

.slide:not(.active) .user_info p {
    display: none;
}

.slide:not(.active) .testimony_more_section {
    display: none;
}

.slide:not(.active) .user_info {
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide:not(.active) .user_info h5 {

    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.64);
    transform: rotate(90deg);

}

.slide:not(.active) .testimony_desc {
    display: none;
}

/* about section */

.about_container {
    background-image: url("../assets/img/about-event.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 898px;
    position: relative;
    /* opacity: 0.4; */

}

.about_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.about_wrapper {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 42px 85px;
    z-index: 1;
    position: relative;
}

.about_logo {
    width: 522.87px;
    height: 53px;


}

.py_32 {
    padding-top: 32px;
    padding-bottom: 32px;
}

.about_heading {

    max-width: 844px;
    width: 100%;
    /* line-height: 58px;  */
    white-space: nowrap;
    word-spacing: -0.5px;
}

.about_text_container {
    margin-top: 70px;
}

.about_text_container p {
    max-width: 940px;
    width: 100%;
    font-family: 'Plus Jakarta Sans';
    font-style: italic;
    font-weight: 300;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.02em;
    word-spacing: -0.5px;
    color: #FFFFFF;

}

.pt_84 {
    padding-top: 84px;
}

.about_stores_container {
    /* padding-left: 361px; */
    display: flex;
    justify-content: space-evenly;
}

.map_container {
    min-height: 713px;
    background: #000000;
}

.map_wrapper {
    width: 100%;
    margin: auto;
    max-width: 1440px;
    width: 100%;
    /* padding: 0 85px; */
    padding: 100px 120px;

    z-index: 1;
    position: relative;
}

.map_iframe {
    background: rgba(41, 45, 46, 0.36);
    max-width: 1200px;
    width: 100%;
}

.map_iframe_parent {
    /* max-width: 1200px;
    width: 100%; */
    /* height: 407px; */

    position: relative;

}

.map_txt {
    position: absolute;
    width: 578px;
    /* height: 286px; */
    background: #111617;
    top: 80%;
    /* right: 64px;     */
    right: 8%;
    transform: translateY(-50%);
    letter-spacing: 0.04em;
    color: #FFFFFF;
    padding: 48px;
    word-spacing: -0.5px;
}

.map_txt p {

    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    word-spacing: -0.5px;

}

.map_txt h5 {
    color: #ffffff;
    text-align: left;
    font-family: "Plus Jakarta Sans";
    font-size: clamp(24px, 3vw, 40px);
    line-height: 120%;
    font-weight: 800;
    position: relative;
}

.company_info {
    display: flex;
    /* gap: 48px; */
    gap: 24px;
    align-items: center;
    padding-top: 40px;
    max-width: 505px;
    flex-wrap: wrap;
}

@media screen and (max-width:1429px) {
    .company_info {
        flex-direction: column;
        align-items: flex-start;
    }
}

.company_info p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.company_info span {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.64);
}

@media screen and (max-width:1200px) {

    .map_wrapper,
    .testimony_wrapper {
        padding-left: 60px;
        padding-right: 60px;
    }

    .testimony_wrapper {
        margin-right: 0px;
        margin-left: 0px;
    }

    .testimony_slider_container {
        /* padding: 0 120px; */
    }

    .custom-text {
        left: 60px;
    }
}

@media screen and (max-width:1150px) {
    .map_txt {
        position: static;
        width: 100%;
        transform: translate(0);
    }
}

/* footer */


.desktop-7 {
    background: #111617;
    min-height: 458px;
    position: relative;
    /* overflow: hidden; */
}

/* .main-event-for-professionals-in-the-world-of-design-and-architecture {
  color: rgba(255, 255, 255, 0.64);
  text-align: left;
  font-family: "PlusJakartaSans-Regular", sans-serif;
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
  position: absolute;
  left: 120px;
  top: -276px;
  width: 357px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
} */
.frame-1121 {
    display: flex;
    flex-direction: column;
    gap: clamp(30px ,5vw, 64px);
    align-items: center;
    justify-content: center;
    /* position: absolute; */
    /* left: 456px; */
    top: 40px;

    padding-top: 40px;
}

.group-24 {
    flex-shrink: 0;
    width: 275px;
    height: 28px;
    position: relative;
    overflow: visible;
}

.menu {
    display: flex;
    flex-direction: row;
    gap: clamp(16px, 2vw, 48px);
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.footer_menu {
    color: #929292;
    text-align: left;
    font-family: "PlusJakartaSans-SemiBold", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.frame-1118 {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 5vw, 40px);
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.footer_menu:hover{
    color: #fff;
}

.social-icon {
  padding: 12px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
    flex-shrink: 0;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}


.akar-icons-instagram-fill {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.group {
    width: 91.67%;
    height: 91.67%;
    position: absolute;
    right: 4.17%;
    left: 4.17%;
    bottom: 4.17%;
    top: 4.17%;
    overflow: visible;
}

.dashicons-facebook-alt {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: visible;
}

.frame-5 {
    background: rgba(255, 255, 255, 0.3);
    padding: 12px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.bx-bxl-linkedin {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: visible;
}

.feather-twitter {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: hidden;
}

.group2 {
    width: 91.67%;
    height: 74.77%;
    position: absolute;
    right: 4.17%;
    left: 4.17%;
    bottom: 12.78%;
    top: 12.46%;
    overflow: visible;
}

.ant-design-youtube-outlined {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    overflow: visible;
}

.revivalversion-2025-all-rights-reserved {
    text-align: center;
    font-family: "PlusJakartaSans-Regular", sans-serif;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
    position: relative;
}

.revivalversion-2025-all-rights-reserved-span {
    color: rgba(255, 255, 255, 0.64);
    font-family: "PlusJakartaSans-Regular", sans-serif;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}

.revivalversion-2025-all-rights-reserved-span2 {
    color: #ffffff;
    font-family: "PlusJakartaSans-Regular", sans-serif;
    font-size: 18px;
    line-height: 150%;
    font-weight: 400;
}


@media screen and (max-width: 768px) {
    .menu {
        flex-wrap: wrap;
        justify-content: center;
    }

}


/* media query */

@media screen and (max-width: 721px) {
    #languageSelector {
        display: none;
    }

    .custom-text {}

    /* .custom-text {
        left: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .hero_text_wrapper {
        padding: 0 20px;
    }

    .hero_image_action_container {
        flex-direction: column;
        align-items: center;
    }

    .action_container {
        width: 100%;
        justify-content: center;
    } */

}

/* landing page css */

.landing_container {
    background-image: url("../assets/img/landing_bg.png");
    position: relative;
    height: 481px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.landing_text_parent {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.landing_text {
    position: absolute;
    /* top: 50%; */
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    max-width: 800px;
    padding: 20px;
    border-radius: 10px;
    padding: 0 0 0 57px !important;
    max-width: 1440px !important;

}



.landing_text_right {
    /* font-family: 'Inter'; */
    /* font-style: normal;   */
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    /* identical to box height, or 138% */

    color: #FFFFFF;
}

/* .button-27,
.button-27 * {
  box-sizing: border-box;
} */
.button_ld_warp {
    background: #810000;
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    min-width: 159px;
    height: 46px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
    overflow: hidden;
}

.landing_btn {
    color: #ffffff;
    text-align: left;
    font-family: "Inter-Regular", sans-serif;
    font-size: 16px;
    line-height: 22px;
    padding: 12px 35px;
    font-weight: 400;
    /* position: absolute;
  left: calc(50% - 44.5px);
  top: 50%;
  translate: 0 -50%; */
}

.group-21 {
    position: relative;
    padding: 24px;
    background: rgba(2, 2, 2, 0.73);
    max-width: 544px;
    width: 100%;
    /* min-height: 113px; */
}

.rectangle-2999 {

    padding-bottom: 24px;
    /* Location Details */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
    color: #FFFFFF;
    text-align: start;

}

.mapPin_parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-left: 32px;
}

.new-york-near-route-30-west-hall {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    text-align: start;
}

.map-pin-1 {
    width: 46px;
    height: 46px;

}


@media screen and (max-width: 768px) {
    .landing_text {
        padding: 0 0 0 20px !important;
    }

    .rectangle-2999 {
        padding-bottom: 16px;
    }

    .mapPin_parent {
        padding-left: 16px;

    }

}

@media screen and (max-width: 576px) {
    .landing_text_parent {
        flex-direction: column;
    }

    .landing_text {
        padding-left: 10px;
    }

}

/* landing slider  */

.landing_slider_head {


    min-height: 48px;


    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 48px);
    line-height: 100%;

    color: #FFFFFF;


}

.landing_slider_date {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;

    color: #FFFFFF;


}

.landing_page_slide {
    height: 323px !important;
}

.landing_slider_img {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.landing_slider_textarea {
    padding: 0 108px;
}

.textarea-1 {
    background: rgba(243, 244, 246, 0.13);
    border-radius: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0);
    border-width: 1px;
    /* min-height: 194px; */
    min-height: 130px;
    position: relative;


}

.new-york-2025-gathering-revival {
    color: #ffffff;

    text-align: left;
    font-family: "Inter-Regular", sans-serif;
    font-size: 24px;
    line-height: 22px;
    font-weight: 400;
    /* padding: 7px 12px; */
    padding: 12px 24px;
}

.get_ticket_parent {
    margin-top: 60px;
    padding-bottom: 25px;
}


.frame-1110 {
    background: linear-gradient(-82.7deg,
            rgba(208, 0, 0, 1) 0%,
            rgba(254, 0, 0, 1) 100%);
    border-radius: 13px;
    padding: 20px 40px 20px 40px;
    height: 91px;
    max-width: 705px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.frame-1110:hover{
    background: linear-gradient(-82.7deg, rgb(0 0 0) 0%, rgba(254, 0, 0, 1) 100%);
    /* background: linear-gradient(-82.7deg, rgb(0 0 0) 0%, rgb(0 0 0) 100%); */

}

.get-tickets {
    color: #ffffff;
    font-family: "PlusJakartaSans-Bold", sans-serif;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.04em;
    font-weight: 700;
    position: relative;
}

.landing_btn_wrapper {
    /* align-items-center d-flex flex-wrap gap-2 row-gap-1 */

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 4px;
    margin-left: 10px;
}





.notifyMenu {
    display: none;
}

.landing_slider_title_section {
    max-width: 1440px;
    padding: 42px 35px;
}

.by-rushing-wind {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
}

.by-rushing-wind-span3 {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
}

.by-rushing-wind-span4 {
    color: #ffffff;
    font-family: "Inter-Regular", sans-serif;
    font-size: 20px;
    line-height: 22px;
    font-weight: 400;
    text-decoration: underline;
}

.desktop-4 {
    background: #111617;
    /* height: 898px; */
    position: relative;
}

.pricing_section .pricing-txt {
    padding-top: 100px;
    text-align: center;
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    align-items: center;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.pricing_cards {
    /* Rectangle 2986 */

    height: 530px !important;
    background: #1a1f20 !important;
    flex: 1 1 auto;
    padding: 48px;
    max-width: 384px;
}

.pricing_section .pricing-tickets {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 800;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-align: center;
}

.pricing_card_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: clamp(40px, 5vw, 122px);
    flex-wrap: wrap;
    padding-bottom: 100px;
}

.plan_names {

    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.price_tag {
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.get_ticket_btn {
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    width: 100%;
    height: 64px;
    color: #fff;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    line-height: 64px;
    text-align: center;
    text-decoration: none;
}
.get_ticket_btn:hover{
    background-color: #fff;
    color: #000;
}

/* schedule page */

.schedule_container {
    width: 100%;
    position: relative;
    /* width: 1440px; */
    min-height: 925px;
    background: #111617;

}

.schedule_box {
    padding-top: 100px;
}

.schedule_mini_title {
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #FFFFFF;
}

.schedule_para {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.64);
}

.mb64 {
    margin-bottom: 64px;
}

.download_schedule_btn {
    padding: 18px 40px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border: 0;
}
.download_schedule_btn:hover{
    background-color: #fff;
    color: #000;
}

.schedule_title {
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.02em;
    color: #FFFFFF;
}

.scheduled_steps {
    color: rgba(255, 255, 255, 0.64);
    cursor: pointer;
}

.scheduled_steps>p {
    margin-bottom: 0;
}

.scheduled_date {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
}

.scheduled_steps.active_step {
    color: #fff;
}

.scheduled_progress_bar {
    background: rgba(255, 255, 255, 0.2);
    height: 4px !important;
}

.scheduled_progress_bar>.progress-bar {
    background-color: #fff !important;

}

.timeline {
    position: relative;
    /* max-width: 600px;
    margin: 50px auto; */
    margin-top: 60px;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 206px;
    width: 2px;
    height: 100%;
    background-color: #01EDED;
}

/* Timeline Item */
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
    gap: 32px;
}

.timeline-time {
    min-width: 164px;
    /* padding-right: 20px; */
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.64);


}

/* Step Circle */
.step {
    width: 24px;
    height: 24px;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    background: linear-gradient(277.3deg, #00D4FC 6.75%, #00FEE3 95.73%);
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;

    /* width: 30px;
    height: 30px;
    background-color: #01EDED;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    position: relative;
    z-index: 2; */
}

/* Timeline Content */
.timeline-content {

    border-radius: 8px;
    width: 100%;
}

.timeline-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 11px;
}

.timeline-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.64);
    margin: 0;
    max-height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    word-break: break-word;
}


/* media queries */
@media screen and (max-width: 1200px) {
    swiper-container {
        padding: 0 60px;
    }

    .testimonial_avatar {
        height: 120px;
        width: 120px;
    }

    .slide {
        height: 600px;
        padding: 16px 24px;
    }

    #prevBtn {

        left: 0px;
    }

    #nextBtn {
        right: 0px;
    }

    .event_title_section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .testimonial_container {
        padding-top: 80px;
    }

    .landing_slider_textarea {
        padding: 0 60px;
    }
}

@media screen and (max-width: 991px) {
    .custom-text {
        left: 40px;
    }

    swiper-container {
        padding: 0 40px;
    }

    .map_wrapper,
    .testimony_wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .testimony_expandable_container {
        flex-direction: column;
    }

    .slide {
        width: 100% !important;
        transition: all 500ms ease-in-out;
    }

    .slide:not(.active) .profile_info {
        flex-direction: row;
        align-items: center;
        height: 100%;
    }

    .slide:not(.active) .user_info h5 {
        font-weight: 500;
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.64);
        transform: rotate(0deg) !important;
    }

    .profile_info {
        justify-content: center;
    }

    .testimonial_container {
        padding-top: 60px;
    }

    .landing_slider_textarea {
        padding: 0 40px;
    }
    .frame-1110
    {
          padding: 10px 40px;
          height: 50px;
    }
}


@media screen and (max-width:991px) {
    .header_menu {
        display: none;
    }

    .mobile_nav {
        display: block;
    }

    .landing_text_parent {
        flex-direction: column;
        align-items: start !important;
    }

    .landing_text {
        padding: 0 35px !important;
    }

    .group-21 {
        max-width: initial !important;
    }

    .get_ticket_parent {
        margin-top: 40px;
    }
    .schedule_box{
        padding-top: 60px;
    }


}

@media (max-width: 768px) {

    .landing_text {
        padding: 0 !important;
    }

    .custom-text {
        left: 20px;
        right: 20px;
    }

    .testimony_wrapper,
    swiper-container,
    .map_wrapper,
    .testimony_wrapper,
    .landing_slider_textarea {
        padding-left: 20px;
        padding-right: 20px;
    }

    .get_ticket_parent {
        margin-top: 40px;
    }
}

@media screen and (max-width:576px) {
    .custom-nav-logo {
        width: 260px;
    }

    .get_ticket_parent {
        margin-top: 20px;
    }
}

@media (max-width: 476px) {

    .custom-nav-logo {
        width: 200px;
    }

    .notification_icon {
        display: none;
    }

    .notifyMenu {
        display: block;
    }
    .pricing_cards {
    height: 400px !important;
    padding: 20px;
    max-width: 384px;
}
}

@media screen and (max-width:443px) {
    .timeline-item {
        gap: 16px;
    }

    .timeline::before {
        left: 142px;
    }

    .timeline-time {
        min-width: 114px;
    }

}




















.container {
    max-width: 1440px;
    /* Set max width */
    padding-left: 120px;
    padding-right: 120px;
}

/* Adjust for smaller screens */
@media (max-width: 1440px) {
    .container {
        max-width: 100%;
        /* Full width */
        padding-left: 120px;
        padding-right: 120px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 
1440px
padding-left: 120px;
padding-right: 120px;

1200px
padding-left: 60px;
padding-right: 60px;

991px
padding-left: 40px;
padding-right: 40px;


776px
padding-left: 30px;
padding-right: 30px;



*/