* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    background: #EFEDE8;
}

section {
    scroll-margin-top: 87px;
}

/* ============== Header SECTION ============== */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1111111;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: right;
}

.navbar-brand img {
    width: 150px;
    padding: 10px;
}

.navbar-light .navbar-nav .nav-link {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    margin: 0 10px;
}

.scrolled .nav-link {
    color: #000 !important;
}


/* ============== VIDEO SECTION ============== */

.past_events {
    padding: 60px 0;
}

.video__wrapper {
    position: relative;
    background: linear-gradient(to right, black, transparent, transparent);
}

.video__wrapper::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.9;
    background: linear-gradient(to right, black, rgb(0 0 0 / 12%), transparent);
}

.bg-vd {
    position: relative;
}

#vd {
    position: absolute;
    z-index: 1111;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lv_timer_info {
    text-align: left;
    z-index: -1;
    position: relative;
}

.venue_txt p {
    color: rgb(255, 255, 255);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 7px;
}

.lv_timer_info h1 {
    font-size: 40px;
    color: rgb(255, 255, 255);
    text-align: left;
    font-weight: bold;
    font-family: Philosopher, sans-serif;
    line-height: 55px;
    text-shadow: #a279f8 2px 2px;
    padding-bottom: 20px;
    margin: 5px 0px 15px;
    border-bottom: 1px solid rgb(255 255 255 / 26%);
}

#clockdiv {
    font-family: sans-serif;
    color: rgb(255, 255, 255);
    display: inline-block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
    margin: 15px 0px 0px;
}

#clockdiv>div {
    display: inline-block;
    box-shadow: rgba(36, 174, 35, 0.31) 0px 8px 32px 0px;
    backdrop-filter: blur(4px);
    padding: 10px;
    border-radius: 10px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(204, 180, 180, 0.12);
    border-image: initial;
}

#clockdiv div>span {
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    padding: 0px 15px;
    border-radius: 3px;
}

.smalltext {
    padding-top: 0px;
    font-size: 16px;
}

.gt-btn {
    position: relative;
    z-index: 2;
    vertical-align: middle;
    display: inline-block;
    text-transform: uppercase;
    text-align: center;
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: rgb(176, 239, 255) 0px 0px 3px 4px, rgba(123, 242, 255, 0.78) 0px 0px 3px 2px, rgb(176, 243, 255) 0px 0px 2px 0px inset;
    overflow: hidden;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    margin: 8px;
    background: rgb(1, 160, 106);
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
}

.logo-mid {
    width: 400px;
}

/* ============== marquee SECTION ============== */

.themeMarQuee {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(45deg, rgb(151, 111, 246), rgb(247, 107, 10)) center top / cover no-repeat fixed;
    overflow: hidden;
    text-align: center;
}

.themeMarQuee h3 {
    font-size: 1rem;
    font-weight: 600;
    font-family: Rajdhani, sans-serif;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
    padding: 1rem 2rem;
    border-radius: 900px;
    white-space: nowrap;
    display: inline-block;
}

.marQuee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marQueeTrack {
    display: flex;
    width: fit-content;
    animation: scrollLeft 30s linear infinite;
}

.marQueeRight {
    animation: scrollRight 30s linear infinite;
}

.marQueeTiles {
    display: flex;
    gap: 10px;
    margin: 0 0 30px;
    flex: none;
}

.themeMarQuee h2 {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 50px;
    color: #000000;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.marQueeTiles h4 {
    background: #a3959500;
    font-size: 30px;
    font-weight: 500;
    font-family: "Special Gothic Condensed One", sans-serif;
    color: #ffffff;
    border: 1px solid #a59696ab;
    padding: 20px 30px;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    margin: 0 5px;
    letter-spacing: 1px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    min-width: 250px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* ============== ABOUT SECTION ============== */
.about_wrapper {
    padding: 60px 0 0;
    background-color: #fbfbfb;
}

.about_wrapper h2 {
    font-size: 60px;
    font-weight: 700;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.about_wrapper h6 {
    font-family: "National Park", sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
}

.about_countdown {
    margin: 0 0 20px;
}

.about_countdown h3 {
    color: #f67a24;
    font-size: 60px;
    font-weight: 700;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.about_wrapper p {
    font-family: "National Park", sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 30px;
}

.about_countdown p {
    margin-bottom: 0;
}

/* ============== PARTNER SECTION ============== */
.partner_wrapper {
    padding: 60px 0;
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
    background-attachment: fixed;
    z-index: 1;
}

.partner_wrapper::before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background-repeat: repeat;
    background-position: left top;
    background-size: 256.00px auto;
    background-image: url(https://framerusercontent.com/images_16/6mcf62RlDfRfU61Yg5vb2pefpi4.png);
    opacity: 0.09;
}

.partner_wrapper h2 {
    font-size: 60px;
    text-align: center;
    font-weight: 600;
    margin: 0 0 30px;
    color: #000000;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.partner_wrapper h2 span {
    color: #F69256;
}

.partnr {
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 1vw;
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-direction: column;
    margin: 10px 0 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnr:hover {
    transform: scale(1.05);
    box-shadow: rgba(50, 50, 93, 0.35) 0px 20px 40px -5px,
        rgba(0, 0, 0, 0.4) 0px 12px 20px -8px;
}

.partner_sub {
    text-align: center;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin: 50px 0 0;
    font-family: "National Park", sans-serif;
    text-transform: uppercase;
}

.partnr p {
    font-size: 18px;
    margin: 0;
    text-align: center;
    font-weight: 400;
}


.past_events {
    background: url('./images_16/time_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.past_events h2 {
    font-size: 45px;
    text-align: center;
    font-weight: 700;
    margin: 40px 0;
    color: #fff;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.past_events h2 span {
    color: #fff;
}

.zigzag-img:nth-child(even) {
    margin-left: 30px;
}

.zigzag-img:nth-child(odd) {
    margin-right: 60px;
}

.zigzag-img {
    width: 275px;
}


.edition-img {
    transition: all 0.3s ease;
    border-radius: 10px;
}

/* Neon Glow Hover */
.edition-img.orange-shadow:hover {
    box-shadow: 0 0 20px 5px #f28c43;
    transform: skewX(10deg) !important;
}

.edition-img.purple-shadow:hover {
    box-shadow: 0 0 20px 5px #6f42c1;
    transform: scale(1.22) !important;
}

.edition-img.blue-shadow:hover {
    box-shadow: 0 0 20px 5px #007bff;
    transform: skewY(20deg) !important;
}

.edition-img.green-shadow:hover {
    box-shadow: 0 0 20px 5px #28a745;
    transform: skewY(10deg) !important;
}

.edition-img.brown-shadow:hover {
    box-shadow: 0 0 20px 5px #795548;
}


.mobile_discussion {
    background: #000;
    background-size: cover;
    background-repeat: no-repeat;
}

.discussion_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #d38251, transparent) !important;
    box-shadow: rgb(244 95 113 / 51%) 0px 5px 15px 0px !important;
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 30px;
}

.discussion_inner_2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #000000, #845ab3) !important;
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 30px;
        box-shadow: rgba(135, 91, 192, 0.671) 0px 5px 15px 0px !important;
}

.discussion_inner h2,
.discussion_inner_2 h2 {
    font-size: 45px;
    color: #fff;
    margin-right: 15px;
}

.discussion_inner p,
.discussion_inner_2 p {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-left: 1px solid #ffffff99;
    padding-left: 14px;
}
.mobile_discussion h3{
        color: #fff;
    text-align: center;
    padding: 40px 0;

}

.theme_discussion h3 {
    font-size: 65px;
    line-height: 70px;
    color: #fff;
    margin-right: 10px;
}

.theme_discussion p {
    color: #fff;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 0;
}

.point_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}



/* ============== TEAM SECTION ============== */

.speaker_wrapper {
    background: #090f1b;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
    background-attachment: fixed;
    z-index: 1;
    padding: 60px 0;
}

.speaker_wrapper::before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background-repeat: repeat;
    background-position: left top;
    background-size: 256.00px auto;
    background-image: url(https://framerusercontent.com/images_16/6mcf62RlDfRfU61Yg5vb2pefpi4.png);
    opacity: 0.09;
}

.speaker_wrapper h2 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    margin: 0 0 40px;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.speaker_wrapper h2 span {
    color: #F69256;
}

.team_bg1 {
    background: linear-gradient(to bottom, #d38251, transparent) !important;
    box-shadow: rgb(244 95 113 / 51%) 0px 5px 15px 0px !important;
}

.team_bg2 {
    background: linear-gradient(to bottom, #9464c6, transparent) !important;
    box-shadow: rgba(135, 91, 192, 0.671) 0px 5px 15px 0px !important;
}

.team1-card {
    position: relative;
    /* max-width: 410px; */
    /* max-height: 402px; */
    border-radius: 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 10px 40px;
    min-height: 200px;
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

.team1-card-content {
    padding: 20px 10px 0;
    z-index: 99;
    width: 240px;
}

.team1-card-content__title {
    color: #ffffff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.72px;
}

.team1-card-content__text {
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.team1-card__thumb {
    position: relative;
    z-index: 8;
    /* margin-left: 130px;
    margin-top: -75px; */
}

.team1-card__thumb img {
    max-width: 150px;
}

.team1-card__thumb-shape {
    position: absolute;
    right: -10px;
    top: -59px;
    bottom: 0;
    z-index: -1;
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

.upcoming {
    background: #FFF;
    padding-bottom: 80px !important;
}

.upcoming h2 {
    padding: 30px 0;
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 40px;
    background: linear-gradient(45deg, rgb(151, 111, 246), rgb(247, 107, 10)) center top / cover no-repeat fixed text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.upcoming a img {
    box-shadow: rgb(255 95 0 / 62%) 0px 5px 15px;
    border: 1px solid #f18f4b;
    border-radius: 5px;
}

.testimonials__wrapper {
    padding: 0 0 40px;
    position: relative;
}

.testimonials__wrapper h2 {
    padding: 30px 0 0;
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 40px;
    background: linear-gradient(45deg, rgb(151, 111, 246), rgb(247, 107, 10)) center top / cover no-repeat fixed text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Special Gothic Condensed One", sans-serif;
    text-align: center;
}


/* video */
.swiper-button-next,
.swiper-button-prev {
    display: flex;
    color: #fff;
    background: #6973c8;
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 15px;
    display: block;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.swiper-slide-container {
    font-size: 15px;
    background: #fff;
    height: 90%;
    padding: 15px;
    border-radius: 15px;
}

.img-container {
    position: relative;
    border-radius: 15px;
    width: 100%;
    height: 450px;
    background-size: cover !important;
}

.img-container:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgba(243, 251, 255, 0) 0%, rgba(0, 0, 0, 0.644) 100%);
}

.name-video {
    position: absolute;
    top: 80%;
    left: 0%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.name-video .title {
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

.video-play-button {
    transform: translateX(-50%) translateY(-0%);
    box-sizing: content-box;
    display: block;
    width: 10px;
    height: 18px;
    border-radius: 50%;
    padding: 5px 13px 5px 14px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 50px;
    height: 50px;
    background: #6973c8;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: #60b2ff;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 15px solid #ea6b2a;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.youtube-video .modal-dialog {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1000px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#modal-video {
    width: 100%;
    height: auto;
}

.testimonials__wrapper .modal-content button {
    position: absolute;
    right: -7px;
    z-index: 1111;
    width: 30px;
    height: 30px;
    top: -10px;
    border: 0;
    border-radius: 100px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 15px !important;
    display: block;
    color: #fff;
}

/* ============== FOCUS SECTORS  ============== */
.focus_sectors {
    background: #fff;
    padding: 30px 0 0;
    border-top-left-radius: 3em;
    border-top-right-radius: 3em;
    background-color: #4de8a6;
    position: relative;
}

.focus_inner {
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
}

.meet_inner {
    background: url(./images_16/hospital.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    margin: 10px 0;
}


.focus_sectors h2 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 40px;
    font-family: "Special Gothic Condensed One", sans-serif;
}



.attend-des {
    font-size: 14px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    min-height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.attend-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0px;
    left: 0;
    z-index: -1;
    background: #0d67c0;
    transition: height 0.3s ease;
    border: 2px solid #0d67c0;
    box-shadow: 0px 0px 13px #0d67c0;
}



.focus_sector {
    padding: 60px 0;
    background: linear-gradient(45deg, #976ff6, #f76b0a);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
    background-attachment: fixed;
    z-index: 1;
}

.focus_sector::before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background-repeat: repeat;
    background-position: left top;
    background-size: 256.00px auto;
    background-image: url(https://framerusercontent.com/images_16/6mcf62RlDfRfU61Yg5vb2pefpi4.png);
    opacity: 0.09;
}

.focus_sector h2 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 30px;
    color: #fff;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.attend-box {
    text-align: center;
    font-size: 14px;
    color: #000;
    font-weight: 500;
    border: 1px solid #ccc;
    margin: 0 0 20px;
    animation: floatSide 3s ease-in-out infinite;
    background-color: #fff;
    box-shadow: inset 0px 0px 1vw 1vw rgb(0 0 0 / 13%);
    position: relative;
    padding: 10px 20px;
    border-radius: 1vw;
    overflow: hidden;
}

.attend-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0px;
    bottom: 0px;
    left: 0;
    z-index: -1;
    background: #0d67c0;
    transition: height 0.3s ease;
    border: 2px solid #0d67c0;
    box-shadow: 0px 0px 13px #0d67c0;
}

.attend-box:hover::after {
    height: 100%;
}

.attend-box:hover p {
    color: #ffffff;
}

.attend-box:hover {
    background: #9464c6;
}

.attend-box:hover img {
    filter: brightness(0%);
}

.attend-des {
    margin-bottom: 0;
    font-size: 16px;
    text-align: center;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    min-height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Past Partner section */
.who_worked_with {
    padding: 60px 0;
    position: relative;
    z-index: 0;
    background: #fff;
}

.who_worked_with h3 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 30px;
    color: #000;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.who_worked_with_inr {
    background-color: #fff;
    /* box-shadow: 0 10px 30px 0 rgba(0, 0, 0, .1); */
    margin: 0 auto;
    padding: 0px 20px 20px;
    position: relative;
}

.past_inner_img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 0px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 95px;
    padding: 10px;
}

.who_worked_with_inr img {
    max-width: 90%;
    max-height: 70px;
    padding: 0;
}

.who_worked_with_inr .col-lg-2 {
    padding: 0 2px;
}

#blogCarousel .item {
    margin: 0 0 30px;
}


/* Magazine Wrapper */
.magazines_wrapper {
    padding: 270px 0px 50px;
    background: url(https://pixor-next.vercel.app/images_16/fanfact-bg.jpg) 50% / cover no-repeat;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.magazines_wrapper .container {
    max-width: 1000px;
    min-width: 350px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    padding: 0 35px;
}

.magazines_wrapper h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.shelf-left {
    left: 0;
    width: 82px;
    /* background: url(https://pubhtml5.com/images_16/home/shelf1.png); */
    background: url(./images_16/shelf1.webp);
}

.demo-self {
    position: absolute;
    height: 100%;
    top: 0;
}

.shelf-mid {
    left: 82px;
    right: 82px;
    background: url(./images_16/shelf2.webp);
}

.shelf-right {
    right: 0;
    width: 82px;
    background: url(./images_16/shelf3.webp);
}


.home-banner-demo-ul-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.home-banner-demo-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-banner-demo-ul>.tall {
    display: inline-block;
    position: relative;
    margin: 0 31px;
    margin-top: -166px;
    margin-bottom: 80px;
}

.home-banner-demo-img-container {
    position: relative;
    cursor: pointer;
}

.home-banner-demo-img-container {
    overflow: hidden;
}

.home-banner-demo-thum {
    display: block;
    max-width: 100%;
    height: auto;
}

.home-banner-demo-thum {
    position: relative;
    display: block;
    width: 160px;
    height: auto;
}

.demo-self {
    position: absolute;
    height: 100%;
    top: 0;
}

.bg-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.apply_btn {
    text-align: center;
    margin-top: 30px;
}

.button {
    background-color: #d56124;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
}

.button .dots_border {
    position: absolute;
    border: 1px dashed white;
    border-radius: 25px;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    opacity: 0.3;
}

.text_button {
    position: relative;
    z-index: 1;
}

.whymiss_inner {
    height: 100% !important;
    width: 100% !important;
    position: relative !important;
}

.why_miss {
    padding: 60px 0;
    background: #fff;
}

.why_miss h2 {
    font-size: 30px;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    color: #000000;
    margin: 0 0 90px;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.why_miss h2 span {
    color: #F69256;
}

.cardiuamnult {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 305px;
    padding: 10px;
    -webkit-box-shadow: 1px 1px 15px 10px #ccc;
    box-shadow: 1px 1px 15px 10px #ccc;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 1rem;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.cardiuamnult .cardtitle01 {
    position: absolute;
    bottom: 20px;
    color: #9364c8;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 5px;
    text-align: center;
    -webkit-transition: opacity .5s ease-out, -webkit-transform .5s ease-out;
    transition: opacity .5s ease-out, -webkit-transform .5s ease-out;
    transition: transform .5s ease-out, opacity .5s ease-out;
    transition: transform .5s ease-out, opacity .5s ease-out, -webkit-transform .5s ease-out;
    -webkit-transition: transform .5s ease-out, opacity .5s ease-out;
    -moz-transition: transform .5s ease-out, opacity .5s ease-out;
    -ms-transition: transform .5s ease-out, opacity .5s ease-out;
    -o-transition: transform .5s ease-out, opacity .5s ease-out
}

.cardiuamnult .cardimage01 {
    border-radius: 1rem;
    position: absolute;
    top: -50px;
    left: 0;
    max-width: 85%;
    margin: 0 auto;
    margin-left: 25px !important;
    margin-right: 20px !important;
    height: 250px;
    z-index: 100;
    -webkit-box-shadow: 1px 1px 10px 3px #ccc;
    box-shadow: 1px 1px 10px 3px #ccc;
    transition: top .5s ease-in-out;
    -webkit-transition: top .5s ease-in-out;
    -moz-transition: top .5s ease-in-out;
    -ms-transition: top .5s ease-in-out;
    -o-transition: top .5s ease-in-out
}

.cardiuamnult .cardimage01 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem
}

.cardiuamnult .cardcontent01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s
}

.cardiuamnult .cardcontent01 .title {
    color: #000000;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    font-weight: 700;
}

.cardiuamnult .cardcontent01 .text {
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    margin-top: 0;
}

.cardiuamnult .cardcontent01 .text li {
    margin: 0 0 20px;
}

.cardiuamnult:hover {
    height: 100%
}

.cardiuamnult:hover .cardtitle01 {
    transform: translateY(40px);
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px)
}

.cardiuamnult:hover .cardimage01 {
    top: -80px
}

.cardiuamnult:hover .cardcontent01 {
    opacity: 1;
    padding-top: 180px;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

.cardiuamnult:hover .cardcontent01 .text {
    display: block
}

.button-main {
    position: relative;
    width: 170px;
    height: 40px;
    background-color: #000;
    display: flex;
    align-items: center;
    color: white;
    flex-direction: column;
    justify-content: center;
    border: none;
    padding: 12px;
    gap: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.button-main a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.button-main::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -4px;
    top: -1px;
    margin: auto;
    width: 178px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-main::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100%);
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(20px);
}

.button-main:hover::after {
    filter: blur(30px);
}

.button-main:hover::before {
    transform: rotate(-180deg);
}

.button-main:active::before {
    scale: 0.7;
}

/* venue section */
/* VENUE SECTION START HERE */
.venSec {
    padding: 0 0;
    position: relative;
}

section[id*=section-venue] .venSec iframe {
    height: 450px;
}

section[id*=section-venue] .venCont {
    top: 100px;
    display: flex;
    max-width: 700px;
    padding-right: 15px;
    position: absolute;
    height: 260px;
    align-items: center;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    justify-content: space-between;
}

section[id*=section-venue] .venCont:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #071A59;
    opacity: .9;
    z-index: -1;
}

section[id*=section-venue] .rightVen {
    max-width: 300px;
    border-radius: 10px;
}

section[id*=section-venue] .mobVenueImg,
section[id*=section-venue] .keyHigh {
    display: none;
}

section[id*=section-venue] .sec-title a {
    display: block;
    z-index: 11;
    margin: 0 0 40px 0;
    border-left: unset;
    font-size: 40px;
    line-height: 30px;
    color: #3af2bc;
    font-weight: bold;
    position: relative;
    max-width: max-content;
    padding: 16px 36px;
    text-transform: uppercase;
    border: 0.25px solid #3af2bc;
    text-decoration: none;
}

section[id*=section-venue] .sec-title h2 a::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 100%;
    background-color: #3af2bc;
    right: -5px;
    top: 0.6px;
}

#section-venue .leftVen p a {
    line-height: 26px !important;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 500;
    text-align: left;
    position: relative;
    right: -15px;
    top: -10px;
    text-decoration: none;

}

#section-venue .leftVen p a span {
    margin-right: 10px;
}

.theme_discussion {
    padding: 50px 0;
    /* border-top: 1px solid #f6925699; */
}

.theme_discussion h2 {
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.theme_discussion span {
    color: #F69256;
}

.event-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.event-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.upcoming {
    position: relative;
}

.custom-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-nav button {
    background-color: #9934ca;
    border: none;
    color: white;
    font-size: 15px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    transition: background 0.3s ease;
    margin: 30px 0;
    display: none;
}

.custom-nav button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.custom-prev {
    left: -50px;
    position: absolute;
}

.custom-next {
    right: -20px;
    position: absolute
}


.social_media {
    padding: 60px 0;
    background: #000;
}

.social_media h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 30px;
    color: #fffefe;
    font-family: "Special Gothic Condensed One", sans-serif;
}

#slider1 .owl-item {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    transform: scale(0.8);
}

#slider1 .owl-item.center {
    opacity: 1;
    transform: scale(1.01);
}


.custom-dots {
    text-align: center;
    margin-top: 35px;
}

.custom-dots .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transform: scale(0.8);
    opacity: 0.8;
}

.custom-dots .owl-dot.active {
    background: #bf41fd;
    border: 1px solid #000;
    transform: scale(1.5);
}

.linked_img img {
    background: linear-gradient(to bottom, #9464c6, transparent) !important;
    padding: 10px 5px;
    box-shadow: rgb(255 95 0 / 62%) 0px 5px 15px !important;
}

.mega-menu {
    width: 1000px;
    left: -300px !important;
}

.mega-menu-content {
    padding: 10px;
}

.mega-menu-content h5 {
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.dropdown-item {
    font-size: 13px;
    font-weight: 600;
}

.dropdown-divider {
    background-color: rgb(195 201 206);
}

.dropdown-menu {
    border-top: 3px solid rgb(171 83 251) !important;
}

/* footer */
#contact {
    padding-top: 60px;
    background: url(https://indiapharmaexpo.com/images/contact-bg2.webp);
    background-position: center;
    background-size: cover;
}

.contact {
    text-align: center;
}

.contact h2 {
    color: #ffffff;
    font-family: Philosopher, sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 72px;
    margin: 0 0 50px;
}

#contact .loc {
    text-align: center;
    background: #533b60;
    margin-bottom: 30px;
    border: 1px solid #b1b1b136;
    padding-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    min-height: 170px;
    box-shadow: rgb(17 17 26 / 49%) 0px 4px 16px, rgb(17 17 26 / 40%) 0px 8px 24px, rgb(17 17 26 / 16%) 0px 16px 56px;
}

#contact .loc:hover {
    box-shadow: none;
}

#contact .loc h3 {
    color: #fff9f9;
    font-size: 14px;
    background: linear-gradient(45deg, #976ff6, #f76b0a);
    padding: 7px;
    margin: -20px 0 10px;
    font-weight: 400;
}

.loc h4 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

#contact .loc p {
    color: #fff;
    margin: 0;
}

#contact .loc p span {
    margin-right: 10px;
}


.footer_btm {
    padding: 0;
    background: linear-gradient(45deg, #724fc7, #77370b) !important;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 1;
}

.footer_btm::before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background-repeat: repeat;
    background-position: left top;
    background-size: 256.00px auto;
    background-image: url(https://framerusercontent.com/images_16/6mcf62RlDfRfU61Yg5vb2pefpi4.png);
    opacity: 0.09;
}

.footer_logo img {
    width: 60%;
}

.footer_menu_item h6 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.footer_menu_item ul {
    padding-left: 0;
}

.footer-social__v3 .social-icon {
    margin-right: 40px;
}

.footer-social__v3 {
    margin: 30px 0;
}

.footer-social__v3 a {
    background: transparent;
    padding: 0;
    width: 0;
    height: 0;
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
}


.footer_menu_item ul li {
    list-style: none;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0 0;
    font-family: 'National Park', sans-serif;

}

.footer_menu_item ul a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    line-height: 24px;
}

.footer_copyright {
    margin: 40px 0 0;
    border-top: 1px solid #cccccc5e;
}

.footer_copyright p {
    color: #fff;
    text-align: center;
    margin: 10px 0;
    font-size: 13px;
}

.modal-header {
    background: #433252;
    padding: 15px;
    border-bottom: 0.1px solid #33c6f6;
}

.modal-body {
    padding: 10px;
    /* background: linear-gradient(45deg, #6a58a7, #2e3361); */
    border-radius: 5px;
    background: url(./images_16/popup_b.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

#exampleModal input {
    width: 48%;
    height: 45px;
    margin: 10px 0;
    border-radius: 5px;
    padding-left: 5px;
    font-size: 14px;
    background: #dbd3d363;
    border: 2px solid #ded9d95c;
    color: #fff;
}

#exampleModal #Checkbox_1,
#exampleModal #Checkbox_2,
#exampleModal #Checkbox_3,
#exampleModal #Checkbox_4,
#exampleModal #Checkbox_5 {
    width: auto;
    height: auto;
}

#exampleModal label {
    color: #fff;
}

#exampleModal textarea {
    width: 100%;
    margin: 0 0 10px;
    border-radius: 5px;
    padding-left: 5px;
    font-size: 14px;
    height: 80px;
    background: #dbd3d363;
    border: 2px solid #ded9d95c;
    color: #fff;
    padding: 10px;
}

.modal-title {
    color: #fff;
    font-size: 16px;
}

.modal-body button {
    background-color: #fff;
    color: #7b3a26;
    text-align: center;
    border: 2px solid #7b3a26;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 20px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    box-shadow: 4px 4px #fff6f46b;
    width: fit-content;
    border-radius: 8px;
    font-family: 'Teko', sans-serif;
}

#exampleModal input::placeholder {
    color: #000000c9;
}

.modal.fade {
    background: #000000a6;
}

.modal {
    z-index: 11111111111111;
}

.box-faqs-2-inner {
    background-color: #000;
    padding: 8px 0px 80px 0px;
    background-image: url(./images_16/bg-imazing3.webp);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: auto;
    padding: 60px 0;
}

.box-faqs-2-inner h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.box-faqs-2-inner h5 {
    font-family: "National Park", sans-serif;
    font-size: 18px;
    line-height: 25px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.box-faqs-2-inner p {
    font-family: "National Park", sans-serif;
    font-size: 16px;
    color: #fff;
    line-height: 30px;
    text-align: center;
}

.awards_main {
    background: linear-gradient(205deg, #935b06 0%, #fdfd6b 50%, #fcfb6a 100%) !important;
    color: #000000 !important;
    position: fixed;
    bottom: 0;
    left: 49%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 10px 20px;
    border: 0;
    border-radius: 10px;
    font-weight: 600;
}

.jury_member {
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: top;
    background-attachment: fixed;
    padding: 60px 0;
    background-attachment: fixed;
}

.jury_member::before {
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background-repeat: repeat;
    background-position: left top;
    background-size: 256.00px auto;
    background-image: url(https://framerusercontent.com/images_16/6mcf62RlDfRfU61Yg5vb2pefpi4.png);
    opacity: 0.09;
}

.jury_member h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 50px;
    color: #ffffff;
    font-family: 'Teko', sans-serif;
    text-align: center;
}

.past-speaker_inner {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    min-height: 425px;
    margin: 0 0 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid #fdfafa21;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}


.awards_wrapper {
    padding: 60px 0;
}

.tabs {
    display: flex;
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    padding: 10px 20px;
    cursor: pointer;
    background: #eee;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    background: #ddd;
    border-bottom: 2px solid #333;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


.awards_inner h3 {
    color: #fff;
    font-size: 20px;
    margin: -10px -10px 20px;
    text-align: center;
    background: linear-gradient(347deg, #976ff6, #f76b0a);
    padding: 10px;
}

.awards_inner ul {
    margin: 0;
    list-style: none;
    position: relative;
}

.awards_inner ul li {
    font-size: 15px;
    border-bottom: 1px solid #eeeeee;
    margin: 0 0 10px;
    padding: 0 0 10px;
    font-family: "National Park", sans-serif;
    list-style: circle;
}

.awards_inner ul li::before {
    /* content: ''; */
    position: absolute;
    background: url(https://events.eletsonline.com/evs/assets/img/trophy.png);
    width: 20px;
    height: 20px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 10px;
    border-bottom: 1px solid #eeeeee;
}

.awards_inner h3 {
    position: sticky;
    top: 0;
    background-color: #fff;
    padding: 10px;
    z-index: 10;
}

.awards_inner {
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    /* padding: 10px; */
    min-height: 680px;
    margin: 0 0 30px;
    border-radius: 10px;
    border: 1px solid #33333347;
    background: #fff;
    max-height: 500px;
    overflow-x: hidden;
    position: relative;
}

.tab-btn.active {
    background-color: #fff;
    color: #ea6b2a;
    text-align: center;
    border: 1px solid #00000069;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    padding: 4px 20px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: all .2s;
    display: flex;
    box-shadow: 4px 4px #ea6b2a;
    width: fit-content;
    border-radius: 10px;
}

.tab-btn {
    border: 2px solid #ea6b2a;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin: 0 20px;
    color: #ea6b2a;
}


.guidelines {
    background: linear-gradient(347deg, #6445ad, #c15306);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.guidelines::before {
    position: absolute;
    content: '';
    background: url(./images_16/popup_b.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: -1;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.guidelines h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 40px 0;
    padding: 0 0 20px;
    color: #ffffff;
    font-family: "Special Gothic Condensed One", sans-serif;
    text-align: left;
}

.guidelines p {
    color: #fff;
    font-family: "National Park", sans-serif;
}

.nominate__div {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
}

.nominate__div p {
    margin-left: 20px;
    margin-bottom: 0;
    font-family: "National Park", sans-serif;
}

.nominate__div img {
    width: 15px;
}

.badge.is--gwa {
    z-index: 15;
    cursor: pointer;
    width: 4.9rem;
    transition: all .25s;
    position: fixed;
    inset: auto 0% 8.25rem auto;
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.icon {
    justify-content: center;
    align-items: center;
    display: flex;
}

.icon.is--badge {
    width: 70px;
    object-fit: contain;
}

.scroll-section {
    display: flex;
    width: 100%;
    height: 80vh;
}

.column {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-container {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.left-column .image-container {
    animation: scrollUp 30s linear infinite;
}

.right-column .image-container {
    animation: scrollDown 30s linear infinite;
}

.image-item {
    width: 80%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Pause animation on hover */
.image-container:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-section {
        flex-direction: column;
        height: auto;
    }

    .split-text-container {
        font-size: 38px !important;
    }

    .column {
        width: 100%;
        height: 100vh;
        margin: 40px 0 0;
    }

    .right-column {
        display: none;
    }
}

/* FAQS WRAPPER */
.faqs_wrapper {
    padding: 60px 0;
    background: #fff;
}

.faqs_wrapper h3 {
    font-size: 60px;
    font-weight: bold;
    padding: 0 0 20px;
    color: #000;
    font-family: "Special Gothic Condensed One", sans-serif;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(347deg, #976ff6, #f76b0a);
}

.accordion-button:not(.collapsed) {
    color: #fff !important;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #09f7fc;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
    font-weight: 700;
}

.accordion-item p,
.accordion-item ul li {
    font-family: "National Park", sans-serif;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

td,
th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    color: #000;
    font-family: "National Park", sans-serif;
}

.accordion-button {
    font-weight: 700;
}

.bank_btn {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(347deg, #976ff6, #f76b0a);
    width: fit-content;
    margin: 0 auto 20px;
    padding: 8px 17px;
    border-radius: 40px;
}

.faqs_wrapper h2 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 20px;
}


.speacial_magazine {
    padding: 60px 0;
    background: url(./images_16/magazine_bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}


.speacial_magazine h2 {
    font-size: 38px;
    text-align: left;
    font-weight: 700;
    margin: 0 0 10px;
    color: #e76c34;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.speacial_magazine p {
    color: #fff;
}

.speacial_magazine h6 {
    font-style: italic;
    color: #a26fdb;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 30px;
}


.split-text-container {
    display: flex;
    font-size: 50px;
    font-weight: bold;
    /* text-transform: capitalize; */
    color: #fff;
    overflow: hidden;
}

.magazine_launch img {
    box-shadow: rgb(42 34 117) 0px 5px 15px;
}

.text-part {
    display: inline-block;
    position: relative;
    transform: translateX(0);
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.text-part.left {
    transform: translateX(-200%);
    animation-name: slide-in-left;
}

.text-part.right {
    transform: translateX(200%);
    animation-name: slide-in-right;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}

.magazine_wrapper_txt {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    margin: 40px 0 0;
    color: #000;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.zoom-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.magazine_launch:hover .zoom-icon-overlay {
    opacity: 1;
}

.blog_wrapper {
    background: linear-gradient(to bottom, #efede8, #ffffff);
    padding: 60px 0;
}

.blog_wrapper h2 {
    font-size: 60px;
    text-align: center;
    font-weight: 700;
    margin: 0 0 30px;
    color: #000;
    font-family: "Special Gothic Condensed One", sans-serif;
}

.blog_wrapper h4 {
    font-size: 17px;
    line-height: 22px;
    font-weight: 700;
}

.blog_inner {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.blog_inner:hover {
    box-shadow: none;
    box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.1);
}

.blog_content p {
    font-size: 14px;
}

.blog_content {
    padding: 20px;
    min-height: 170px;
}

.blog_read a {
    color: #fff;
    text-decoration: none;
    background: #9470f8;
    padding: 2px 10px 5px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
}

.many_more p {
    color: #fff;
}


.margin_left {
    margin-left: 120px;
}

.theme_discussion{
    display: block;
}

.mobile_discussion{
    display: none;
}


@media only screen and (max-width: 1300px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 13px;
    }
}

@media (min-width: 600px) and (max-width: 991px) {
    .logo-mid {
        width: 200px;
    }

    .margin_left {
        margin-left: 0;
    }

    .lv_timer_info h1 {
        font-size: 25px;
        line-height: 32px;
    }

    .venue_txt p {
        font-size: 15px;
    }

    .navbar-brand img {
        width: 85px;
    }

    #clockdiv div>span {
        font-size: 20px;
    }

    .smalltext {
        font-size: 12px;
    }

    #clockdiv {
        margin: 7px 0 0;
    }

    .navbar-light .navbar-toggler {
        background: #fff;
    }

    .navbar {
        transition: background-color 0.3s ease;
        background: #fff;
        z-index: 1111111;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #000;
    }

    #vd {
        top: 55%;
    }

    .about_wrapper {
        background-position: 75% 100%;
    }

    .about_wrapper p {
        padding-right: 0;
    }

    .team1-card-content {
        width: 250px;
    }

    .team1-card__thumb {
        width: 140px;
    }

    #contact {
        background-position: 40% 100%;
    }

    .theme_discussion{
    display: none;
}
.mobile_discussion{
    display: block;
}

}

/* mobile media query */
@media only screen and (max-width: 600px) {
    .navbar-brand img {
        width: 90px;
    }

        .theme_discussion{
    display: none;
}

.mobile_discussion{
    display: block;
}

    .margin_left {
        margin-left: 0;
    }

    .dropdown-item {
        white-space: normal;
    }

    .icon.is--badge {
        display: none;
    }

    .dropdown-menu {
        width: fit-content;
    }

    #vd {
        position: absolute;
        /* transform: unset;
        top: unset;
        left: unset; */
    }

    #clockdiv,
    .venue_txt,
    .gt-btn {
        display: none;
    }

    .logo-mid {
        width: 150px;
    }

    .lv_timer_info h1 {
        font-size: 15px;
        line-height: 22px;
    }

    .about_wrapper h2 {
        font-size: 40px
    }

    .team1-card {
        flex-direction: column-reverse;
    }

    .team1-card-content {
        width: 100%;
    }

    .team1-card__thumb img {
        max-width: 100%;

    }

    .team_bg2 {
        background: linear-gradient(to bottom, #000000, #845ab3) !important;
    }

    .team_bg1 {
        background: linear-gradient(to top, #3f2e2a, #b67148) !important;
    }

    .team1-card__thumb-shape img {
        display: none;
    }

    .magazines_wrapper,
    .magazine_wrapper_txt {
        display: none;
    }

    section[id*=section-venue] .venCont {
        flex-direction: column
    }

    .contact h2 {
        font-size: 20px;
        line-height: 32px;
        margin: 40px 0;
    }

    #mainHeader .fixed-top {
        position: relative !important;
    }

    .about_wrapper {
        background: #fff;
    }

    .about_wrapper p {
        padding-right: 0;
    }

    .cardiuamnult {
        margin: 30px 0;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #000;
    }
}