@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

.theme {
    --primaryColor: #a3d361;
    --primaryDarkColor: #003e3b;
    --blackColor: #010101;
    --greyColor: #a1a1aa;
    --whiteColor: #ffffff;
    --duration: 50s;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--whiteColor);
    text-align: left;
    font-family: "Jost", sans-serif;
}

body {
    scroll-behavior: smooth;
    scroll-padding-top: 10px
}

* {
    scroll-behavior: smooth;
}

*,
::after,
::before {
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .container-md {
        max-width: 720px;
    }
}

@media (min-width: 1280px) {
    .container-md {
        max-width: 1060px;
    }
}

.theme {
    background-image: url("/assets/images/2024/body-pattern.svg"),
        radial-gradient(64.26% 64.26% at 50% 50%, #1c1c1c 0%, #111111 100%);
    background-size: cover;
    background-repeat: repeat;
}

.theme .formCustom {
    display: inline-flex;
    text-align: center;
    margin: 0px;
}

.theme .formCustom .form-control {
    border-radius: 50px;
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 9.001px 9.001px 77.149px 0px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(40);
}

.theme .formCustom .form-control:focus {
    box-shadow: none;
    border-color: var(--primaryColor);
}

.theme .formCustom .form-control::-webkit-input-placeholder {
    color: #a9a9a9;
    font-weight: 400;
}

.theme .formCustom .form-control::-moz-placeholder {
    color: #a9a9a9;
    font-weight: 400;
}

/* firefox 19+ */
.theme .formCustom .form-control:-ms-input-placeholder {
    color: #a9a9a9;
    font-weight: 400;
}

/* ie */
.theme .formCustom input.form-control:-moz-placeholder {
    color: #a9a9a9;
    font-weight: 400;
}

.theme .btn {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    border-radius: 0px;
    position: relative;
    border-radius: 50px;
    animation-timing-function: ease-out;
    animation-duration: 300ms;
}

.theme .btn-primary {
    border-radius: 50px;
    border: 0px;
    background: linear-gradient(
        var(--gradient-angle),
        #6288c0 16%,
        #916a86 36%,
        #cab85c 46%,
        #63b5b6 66%,
        rgba(122, 175, 91, 0.8) 66%,
        rgba(105, 173, 91, 0.5) 71%,
        rgba(60, 60, 60, 0) 100%
    );
    padding: 1px;
    animation: rotation 5s linear 0s infinite normal forwards;
}

.theme .btn-inner {
    background-color: #383838;
    border: 0px;
    padding: 8px 25px;
    border-radius: 50px;
    position: relative;
    -webkit-transition:
        border-color 0.35s ease,
        background 0.35s ease;
    transition:
        border-color 0.35s ease,
        background 0.35s ease;
    overflow: hidden;
    z-index: 0;
}

.theme .btn-primary .btn-inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    z-index: -1;
    background: linear-gradient(
        90deg,
        rgba(99, 181, 182, 0.8) 0%,
        rgb(98, 136, 192, 0.8) 23.75%,
        rgb(145, 106, 134, 0.8) 47.5%,
        rgb(202, 184, 92, 0.8) 71.25%,
        rgb(105, 173, 91, 0.8) 95%
    );
    backdrop-filter: blur(11px);
    width: 100%;
    height: 136px;
}

.theme .btn-primary:hover .btn-inner:before {
    top: 0;
}

.theme .btn-primary:hover,
.theme .btn-primary:focus {
    box-shadow: none;
}

@keyframes rotation {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.theme .link {
    color: #f450b2;
}

.padder-15 {
    padding: 50px 0px;
}

.mainTitle {
    margin-bottom: 70px;
    position: relative;
}

.mainTitle .themeTitle {
    font-size: 80px;
    font-weight: 600;
    line-height: 70px;
    /* 60px */
    letter-spacing: -1.6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 7%, rgba(255, 255, 255, 0.5) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    position: relative;
}

.mainTitle .smallTitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #6b6b6b;
}
.mainTitle .outerBorder {
    width: 100%;
    position: absolute;
    left: 0px;
    right: 0;
    margin-top: 10px;
}
.mainTitle .outerBorder img {
    max-width: 100%;
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .mainTitle .themeTitle {
        font-size: 64px;
        line-height: 64px;
    }
    .padder-15 {
        padding: 30px 0px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .mainTitle .themeTitle {
        font-size: 56px;
        line-height: 56px;
    }
    .mainTitle {
        margin-bottom: 60px;
    }
    .padder-15 {
        padding: 30px 0px;
    }
}
@media screen and (max-width: 767px) {
    .theme .formCustom .form-control {
        font-size: 14px;
        padding: 6px 15px;
    }
    .theme .btn-inner {
        padding: 6px 25px;
    }
    .padder-15 {
        padding: 20px 0px;
    }

    .mainTitle .themeTitle {
        font-size: 36px;
        line-height: 40px;
    }
    .mainTitle {
        margin-bottom: 50px;
    }
}
/* Header Css Start */
.themeHeader .navbar {
    width: 100%;
    z-index: 2;
    margin: 25px 0px;
    padding: 12px 25px;
    transition: 0.5s;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: #111111;
    box-shadow: 9.001px 9.001px 77.149px 0px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5.2px);
}

.themeHeader.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}
.themeHeader.fixed-header .navbar {
    margin-top: 15px;
}

.themeHeader .navbar-brand {
    padding: 0px;
    margin: 0px 15px 0px 0px;
    text-align: center;
    display: inline-block;
}

.themeHeader .navbar-brand img {
    height: 40px;
}
.themeHeader .d-flex .btn {
    font-size: 15px;
}
.themeHeader .d-flex .btn .btn-inner {
    padding: 6px 20px;
}
.themeHeader .navbar-nav .nav-item {
    margin: 0px 3px;
}
.themeHeader .navbar-nav .nav-link,
.themeHeader .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px;
    color: var(--whiteColor);
    font-weight: 500;
    transition: 0.5s;
    padding: 6px 15px;
    position: relative;
    border-radius: 50px;
    box-sizing: border-box;
    background-clip: padding-box;
    transition: 0.8s;
}
.themeHeader .navbar-nav .nav-link::before,
.themeHeader .nav-item .dropdown-menu .dropdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: transparent;
    transition: 0.5s;
}
.themeHeader .navbar-nav .nav-link:hover,
.themeHeader .nav-item .dropdown-menu .dropdown-item:hover {
    color: #fff;
    transition: 0.5s;
    background-image: linear-gradient(106deg, #505050 23.08%, #3c3c3c 96.03%);
}
.themeHeader .navbar-nav .nav-link:focus,
.themeHeader .navbar-nav .nav-item .nav-link.active,
.themeHeader .navbar-nav .nav-item .nav-link.newactive,
.themeHeader .navbar-nav .dropdown-item.active,
.themeHeader .navbar-nav  .dropdown-item:active  {
    color: #fff;
    transition: 0.5s;
    background-color: #1e1e1e;
    box-shadow: 0px 3px 10px 0px rgba(12, 12, 12, 0.7);
}
.themeHeader .navbar-nav .nav-link:focus::before,
.themeHeader .navbar-nav .nav-link.active::before,
.themeHeader .navbar-nav .nav-link.newactive::before,
.themeHeader .nav-item .dropdown-menu .dropdown-item:focus::before,
.themeHeader .nav-item .dropdown-menu .dropdown-item.active::before,
.themeHeader .nav-item .dropdown-menu .dropdown-item.newactive::before {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(99, 181, 182, 1) 70%,
        rgba(145, 106, 134, 1) 76%,
        rgba(202, 184, 92, 1) 90%,
        rgb(173, 255, 156) 100%
    );
}
.themeHeader .nav-item .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: #111111;
    box-shadow: 9.001px 9.001px 77.149px 0px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5.2px);
    border-radius: 16px;
    margin-top: 20px;
    min-width: 290px;
    padding: 5px;
    text-align: center;
}
.themeHeader .experienceDropdown.nav-item .dropdown-menu {
    min-width: 230px;
}
.themeHeader .nav-item .dropdown-menu li{
  display: inline-block;
}
.themeHeader .nav-item .dropdown-menu .dropdown-item {
    text-align: center;
    padding: 4px 12px;
}
.themeHeader .nav-item .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.themeHeader .nav-item .dropdown-toggle::after {
    border: 0px;
    background-image: url("/assets/images/2024/new-down-icon.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
}
.burger {
    position: relative;
    width: 22px;
    height: 14px;
    cursor: pointer;
    display: none;
    background: transparent;
    border: 0;
    padding: 0px;
    box-shadow: none;
}

.burger:focus {
    outline: 0;
}

.burger span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    transition:
        all 0.2s,
        background 0s;
    border-radius: 5px;
    background: var(--whiteColor);
}
.burger span:first-child {
    width: 70%;
    right: 0px;
    left: inherit;
}
.burger span:nth-child(2) {
    top: 7px;
}

.burger span:last-child {
    top: 14px;
    width: 70%;
}

.burger.show-x span:first-child {
    transform: rotate(45deg);
    width: 100%;
}

.burger.show-x span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger.show-x span:last-child {
    transform: rotate(-45deg);
    width: 100%;
}

.burger.show-x span:first-child,
.burger.show-x span:last-child {
    top: 8px;
}
@media screen and (min-width: 1151px) and (max-width: 1380px) {
    .themeHeader .navbar-brand img {
        height: 36px;
    }
    .themeHeader .navbar-nav .nav-link {
        font-size: 14px;
        padding: 6px 12px;
    }
    .themeHeader .d-flex .btn {
        font-size: 14px;
    }
    .themeHeader .d-flex .btn .btn-inner {
        padding: 6px 20px;
    }
}
@media screen and (max-width: 1150px) {
    .themeHeader .navbar-brand {
        position: relative;
        text-align: left;
        width: auto;
    }
    .themeHeader.fixed-header .navbar {
        padding: 10px 20px;
    }
    .main-body {
        overflow: hidden;
    }
    .themeHeader .navbar-brand img {
        height: 36px;
    }
    .themeHeader .burger {
        display: block;
    }

    .themeHeader .burger.show-x {
        z-index: 11;
    }

    .themeHeader .burger:hover,
    .themeHeader .burger:focus {
        outline: 0;
        box-shadow: none;
    }

    .themeHeader .rightMenu {
        position: absolute;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.44);
        background: radial-gradient(70.17% 57.09% at 71.25% 54.88%, #1c1c1c 20.9%, #0f0f0f 97.64%);
        box-shadow: 9.001px 9.001px 77.149px 0px rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(2.5999999046325684px);
        top: 75px;
        left: 0px;
        z-index: 5;
        width: 100%;
        transition: 0.5s;
        padding: 20px 10px;
        flex-flow: column;
    }
    .themeHeader.fixed-header .rightMenu {
        border-radius: 0px;
        top: 65px;
    }
    .themeHeader.navbar-expand-lg .navbar-nav {
        flex-direction: inherit;
        margin: 0 !important;
        width: 100%;
    }

    .themeHeader .navbar-nav .nav-item {
        margin: 0px 0px 10px;
    }
    .themeHeader .navbar-nav .nav-item:last-child {
        margin: 0px;
    }
    .themeHeader .d-flex .btn {
        font-size: 14px;
    }
    .themeHeader .d-flex .btn .btn-inner {
        padding: 6px 20px;
    }
    .themeHeader .nav-item .dropdown-menu {
        margin-top: 5px;
    }
    .themeHeader .nav-item .dropdown-menu {
        min-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .themeHeader {
        background: #111111;
        margin-bottom: 0px;
    }
    .themeHeader .navbar {
        margin: 0px;
        padding: 15px 0px;
        border: 0px;
        border-radius: 0px;
    }
    .themeHeader.fixed-header .navbar {
        margin-top: 0px;
    }
    .themeHeader.fixed-header .navbar {
        padding: 12px 0px;
    }
    .themeHeader .navbar-brand img {
        height: 36px;
    }

    .themeHeader .nav-item .dropdown-menu li{
        width: 100%;
    }

    .themeHeader .nav-item .dropdown-menu li .dropdown-item{
        text-align: left;
    }
}
/* Header Css End */
/* Schedule Section Css Start */
.scheduleSection {
    display: flex;
    width: 100%;
    margin: 25px 0px;
    overflow: hidden;
    border-top: 2px solid;
    border-bottom: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgb(0, 0, 0) 10%, rgb(0, 0, 0) 90%, transparent 100%);
    background: rgba(0, 0, 0, 0.03);
}

.scheduleSection .scheduleGroup {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 0;
    padding: 15px 0px;
    animation: marquee-left var(--duration, 40s) linear infinite;
}
.scheduleSection .scheduleGroup:hover {
    animation-play-state: paused;
}
.scheduleSection .innerschedule {
    display: flex;
    gap: 0;
    flex-direction: row;
}
.scheduleSection .innerList {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.scheduleSection .innerList .icon {
    margin-right: 8px;
}

.scheduleSection .innerList .smallText {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}
@media screen and (max-width: 767px) {
    .scheduleSection  {

        margin-top: 0px;
        margin-bottom: 15px;
    }
    .scheduleSection .scheduleGroup{
        padding: 10px 0px;
    }
    .scheduleSection .innerList .smallText {
        font-size: 14px;
    }
}
/* Schedule Section Css End */
/* banner Css Start */
.themeBanner {
    border-radius: 24px;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    background: url("/assets/images/2024/banner-pattern.png") #000;
    background-repeat: repeat;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
}
.themeBanner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: -webkit-linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    transition: 0.5s;
}
.themeBanner .videoPlay {
    width: 70%;
    margin: 0 auto;
}

.themeBanner .videoPlay video,
.themeBanner .videoPlay img {
    max-width: 100%;
    height: auto;
}

.themeBanner .bannerInfo {
    margin-top: -50px;
    text-align: center;
    padding-bottom: 60px;
}

.countdown {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown .innerCount {
    display: inline-block;
    margin: 0 14px;
}

.countdown .innerCount.dot {
    color: var(--whiteColor);
    text-align: center;
    font-size: 32px;
    font-weight: 500;
}

.countdown .innerCount span {
    display: block;
    color: var(--whiteColor);
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.countdown .innerCount .label {
    color: var(--whiteColor);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.themeBanner .formCustom {
    margin-top: 45px;
    margin-bottom: 0px;
}

.theme .themeBanner .formCustom .form-control {
    width: 320px;
    margin-right: 10px;
}
.themeBanner  .thankyou{
    font-size: 16px;
    color: #fff;
    margin-top: 45px;
}
.themeBanner  .thankyou .link{
    color: #fff;
}
.themeBanner .btn {
    font-size: 20px;
}
.themeBanner .btn .btn-inner {
    padding: 8px 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .themeBanner .bannerInfo {
        margin-top: 0;
    }
    .themeBanner .videoPlay {
        width: 80%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .themeBanner {
        border-radius: 14px;
        background-position: top center;
        border-width: 1px;
    }
    .themeBanner .videoPlay {
        width: 100%;
    }
    .theme .themeBanner .formCustom {
        width: 100%;
        padding: 0px 15px;
    }
    .theme .themeBanner .formCustom .form-control {
        width: auto;
        flex: 1 auto;
    }
    .themeBanner .bannerInfo {
        margin-top: 0;
        padding-bottom: 30px;
    }
    .countdown .innerCount span,
    .countdown .innerCount.dot {
        font-size: 26px;
        line-height: 32px;
    }
    .themeBanner .formCustom {
        margin-top: 25px;
    }
    .themeBanner .videoPlay video,
    .themeBanner .videoPlay img {
        max-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .themeBanner .videoPlay video,
    .themeBanner .videoPlay img {
        height: 250px;
    }
    .theme .themeBanner .btn-inner {
        padding: 8px 25px;
        font-size: 14px;
    }
}
/* banner Css End */
/* Small Banner Css Start */
.themeSmallBanner {
    border-radius: 24px;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    background: url("/assets/images/2024/banner-small-pattern.png") #000;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
    border: solid 1px #717171;
    padding: 50px 20px;
    overflow: hidden;
}
.themeSmallBanner .themeSmallBannerInner {
    position: relative;
    z-index: 1;
}
.themeSmallBanner .mainTitle .themeTitle {
    font-size: 56px;
    line-height: 67px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.themeSmallBanner.agendaWater::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-image: url("/assets/images/2024/water-logo.svg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 447px;
    height: 210px;
    margin: 0 auto;
    opacity: 0.1;
}
.themeSmallBanner .card {
    background: #1e1e1e;
    border-radius: 12px;
    position: relative;
    transition: 0.8s;
    overflow: hidden;
    height: 170px;
    margin: 5px 15px 25px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.themeSmallBanner .card img {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.smallBannerSilder::before,
.smallBannerSilder::after {
    content: "";
    position: absolute;
    top: 0px;
    width: 350px;
    height: 180px;
    z-index: 1;
}
.smallBannerSilder::before {
    left: 0px;
    background: linear-gradient(90deg, rgb(13, 15, 16) 0%, rgba(13, 15, 16, 0) 100%);
}
.smallBannerSilder::after {
    right: 0px;
    background: linear-gradient(90deg, rgba(13, 15, 16, 0) 0%, rgb(13, 15, 16) 100%);
}
.themeSmallBanner .ibw-2024 {
    text-align: center;
}
.themeSmallBanner .ibw-2024 img {
    max-width: 100%;
}
.themeSmallBanner.hackathonVideo,
.themeSmallBanner.demoDayBanner {
    padding: 0px;
}

.themeSmallBanner.spearksVideo video,
.themeSmallBanner.spearksVideo img,
.themeSmallBanner.hackathonVideo img,
.themeSmallBanner.demoDayBanner img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.themeSmallBanner.spearksbanner {
    padding: 25px 40px;
    background: url("/assets/images/2024/banner-small-pattern-2.png") #000;
    background-size: cover;
}
.spearksbanner .mainTitleText{
    font-size: 64px;
    font-weight: 600;
    line-height: 72px;
    letter-spacing: -0.04em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;

}
.spearksbanner .smallText{
    font-size: 17px;
    font-weight: 400;
    line-height: 26.01px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #E3E3E3;
    margin-bottom: 0px;
    max-width: 80%;
}
.spearksbanner .speakerImg{
    display: inline-block;
    width: 100%;
    background: #252525;
    border-radius: 10px;
    margin: 12px 0px;
    transition: 0.5s;
}
.spearksbanner .speakerImg:hover{
        box-shadow:0px 0px 50px 0px rgba(244, 80, 178, 0.3)
}
.spearksbanner .speakerImg img{
    max-width: 100%;
    border-radius: 10px;
    margin-top: -20px;
}
.spearksbanner .secspeaker{
    margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
    .smallBannerSilder::before,
    .smallBannerSilder::after {
        width: 250px;
    }
    .themeSmallBanner {
        padding: 30px 15px;
    }
    .themeSmallBanner.agendaWater::after {
        width: 250px;
        height: 140px;
    }
    .themeSmallBanner.spearksbanner {
        padding: 20px 30px;
    }
    .spearksbanner .mainTitleText {
        font-size: 48px;
        line-height: 50px;
    }
    .spearksbanner .smallText {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .smallBannerSilder::before,
    .smallBannerSilder::after {
        width: 50px;
    }
    .themeSmallBanner,
    .themeSmallBanner.spearksbanner {
        padding: 30px 15px;
    }
    .themeSmallBanner .mainTitle .themeTitle {
        max-width: inherit;
        font-size: 36px;
        line-height: 40px;
    }
    .themeSmallBanner.agendaWater::after {
        width: 250px;
        height: 140px;
    }
    .spearksbanner .mainTitleText {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 5px;
    }
    .spearksbanner .smallText {
        font-size: 14px;
        line-height: 20px;
        max-width: 100%;
    }
    .spearksbanner .speakerImg{
        margin: 12px 0px;
    }
    .spearksbanner .secspeaker {
        margin-top: 50px;
    }
}
/* Small Banner Css End */

/* India blockchain Week Section Css Start */
.indiaBlockchain .videoCard {
    display: inline-block;
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: #111;
    box-shadow: 0px 0px 56.578px 0px rgba(0, 0, 0, 0.81);
    overflow: hidden;
}

.indiaBlockchain .videoCard iframe,
.indiaBlockchain .videoCard video,
.indiaBlockchain .videoCard img {
    width: 100%;
    height: 100%;
}

.indiaBlockchain .card {
    border-radius: 20px;
    border: 1px solid #777;
    background: #111;
    height: 100%;
}

.indiaBlockchain .card .card-body {
    padding: 85px 35px;
}

.indiaBlockchain .card .card-body .infoText {
    color: #e3e3e3;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 1px;
    margin-bottom: 0px;
}
.indiaBlockchain .card .card-body .infoText  strong {
    font-weight: 600;
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
    .indiaBlockchain .card .card-body {
        padding: 45px 25px;
    }
    .indiaBlockchain .card .card-body .infoText {
        font-size: 18px;
    }
}
@media screen and (max-width: 992px) {
    .indiaBlockchain .card {
        height: auto;
        margin-top: 20px;
    }
}
@media screen and (max-width: 767px) {
    .indiaBlockchain .videoCard {
        border-radius: 12px;
    }
    .indiaBlockchain .card {
        border-radius: 12px;
        margin-top: 20px;
        height: auto;
    }
    .indiaBlockchain .card .card-body {
        padding: 30px 15px;
    }

    .indiaBlockchain .card .card-body .infoText {
        font-size: 14px;
        line-height: 22px;
    }
}
/* India blockchain Week Section Css End */
/* ibw Conference Section Css End */
.ibwConference .card {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #111;
}

.ibwConference .card .card-body {
    padding: 50px;
}

.ibwConference .card .card-body .infoText {
    color: #e3e3e3;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.ibwConference .card .card-body .infoText .link {
    font-weight: 700;
}

.ibwConference .card .card-body .infoText:last-child {
    margin-bottom: 0px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ibwConference .card .card-body {
        padding: 30px;
    }
    .ibwConference .card .card-body .infoText {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767px) {
    .ibwConference .card {
        border-radius: 12px;
    }
    .ibwConference .card .card-body {
        padding: 25px 15px;
    }
    .ibwConference .card .card-body .infoText {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 15px;
    }
}
/* ibw Conference Section Css End */
/*  Recap of IBW 2023 Section Start */
.ibw2023 .cardTheme {
    position: relative;
    box-sizing: border-box;
    background: #222222;
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 14px;
    transition: 0.5s;
}

.ibw2023 .cardTheme:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: #4c4c4c;
    transition: 0.5s;
}
.ibw2023 .cardTheme .images {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}
.ibw2023 .cardTheme .images::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34,34,34,1) -1%, rgba(34,34,34,0.9) 50%, rgba(34,34,34,0) 100%);
    border-radius: 14px;
}
.ibw2023 .cardTheme:hover .images::after{
    background: linear-gradient(180deg, rgba(34,34,34,1) -1%, rgba(34,34,34,0.5) 50%, rgba(0,0,0,0) 100%);
}

.ibw2023 .cardTheme .images img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    filter: #000;
    -webkit-filter: grayscale(1);
    object-fit: cover;
}
.ibw2023 .cardTheme .infoText {
    padding: 30px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.ibw2023 .cardTheme .count {
    color: #fff;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 65px;
    margin-bottom: 0px;
    transition: 0.5s;
}

.ibw2023 .cardTheme .smallText {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    margin-bottom: 30px;
}

.ibw2023 .cardTheme .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: solid 1px transparent;
    transition: 0.4s;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
}

.ibw2023 .cardTheme .iconInner {
    background: #2c2c2c;
    z-index: 2;
    border-radius: 100px;
    width: 100%;
    height: 100%;
}

.ibw2023 .cardTheme .icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    margin: -1px;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.8);
    transition: 0.4s;
}

.ibw2023 .cardTheme .icon img {
    max-width: 100%;
    max-height: 100%;
}

.ibw2023 .cardTheme:hover {
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.4);
}

.ibw2023 .cardTheme:hover:before {
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}

.ibw2023 .cardTheme:hover .card-body::after {
    opacity: 0.5;
}
.ibw2023 .cardTheme:hover .images img {
    filter: none;
    -webkit-filter: grayscale(0);
}

.ibw2023 .cardTheme:hover .icon::after {
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
    .ibw2023 .cardTheme .infoText {
        padding: 30px 20px;
    }
    .ibw2023 .cardTheme .count {
        font-size: 40px;
        line-height: 45px;
    }
    .ibw2023 .cardTheme .smallText {
        font-size: 16px;
        line-height: 20px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ibw2023 .cardTheme {
        margin-bottom: 20px;
    }
    .ibw2023 .cardTheme .card-body {
        padding: 30px 20px;
    }
    .ibw2023 .cardTheme .count {
        font-size: 50px;
        line-height: 50px;
    }
    .ibw2023 .cardTheme .smallText {
        margin-bottom: 10px;
    }
    .ibw2023 .cardTheme .images {
        height: 220px;
    }
}
@media screen and (max-width: 767px) {
    .ibw2023 .cardTheme {
        margin-bottom: 20px;
    }
    .ibw2023 .cardTheme .infoText {
        padding: 20px 15px;
    }
    .ibw2023 .cardTheme .count {
        font-size: 40px;
        line-height: 45px;
    }
    .ibw2023 .cardTheme .smallText {
        font-size: 16px;
        line-height: 20px;
    }
    .ibw2023 .cardTheme .images {
        height: 180px;
    }
}
/*  Recap of IBW 2023 Section End */

/* IBW 2023 HIGHLIGHTs Section Start */
.highlightSection .highlightCard {

    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
    transition: 0.5s;
    position: relative;
    margin: 10px 0px;
}

.highlightSection .highlightCardInner {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
}

.highlightSection .highlightCard:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: transparent;
    transition: 0.5s;
}

.highlightSection .highlightCard:hover {
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 1);
}

.highlightSection .highlightCard:hover:before {
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}

.highlightSection .highlightCard img {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    border-radius: 14px;
    transition: 0.5s;
    filter: #000;
    /* IE5+ */
    -webkit-filter: grayscale(1);
}
.highlightSection .highlightCard video {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
}
.highlightSection .highlightCard:hover img {
    transform: scale(1.1);
    filter: none;
    -webkit-filter: grayscale(0);
}

.highlightSection .highlightCard.highlightActive {
    border-radius: 17px;
    box-shadow: none;
    transform-style: preserve-3d;
}

.highlightSection .highlightCard.highlightActive::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: conic-gradient(from 90deg at 80% -25%, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
    filter: blur(10px);
    transform: translate3d(0px, 0px, -100px);
    border-radius: inherit;
    pointer-events: none;
}

.highlightSection .highlightCard.highlightActive img {
    transform: scale(1);
    filter: none;
    -webkit-filter: grayscale(0);
    border-radius: 17px;
}

.highlightSection .highlightCard.highlightActive:before {
    background: #fff;
}

.highlightSection .highlightMain {
    position: absolute;
    top: 50px;
    z-index: -1;
}

.highlightSection .highlightMain::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -380px;
    background: url("/assets/images/2024/font-bg.svg");
    width: 863px;
    height: 900px;
    background-size: cover;
    background-position: right bottom;
}

.highlightSection .highlightMain .title {
    font-size: 101px;
    font-style: normal;
    font-weight: 600;
    line-height: 93px;
    text-transform: uppercase;
    background: -webkit-linear-gradient(270deg, rgba(255, 255, 255, 0.05) 7%, rgba(255, 255, 255, 0.08) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    position: relative;
}

.highlightSection .revistBtn {
    margin-top: 60px;
    text-align: center;
}
@media screen and (min-width: 1025px) and (max-width: 1350px) {
    .highlightSection .highlightMain {
        top: 0px;
    }
    .highlightSection .highlightMain .title {
        font-size: 75px;
        line-height: 75px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .highlightSection .highlightMain {
        top: 0px;
    }
    .highlightSection .highlightMain .title {
        font-size: 60px;
        line-height: 60px;
    }
}
@media screen and (max-width: 767px) {
    .highlightSection .highlightMain {
        top: 25px;
    }
    .highlightSection .highlightMain .title {
        font-size: 32px;
        line-height: 36px;
    }
    .highlightSection .revistBtn {
        margin-top: 20px;
    }
    .highlightSection .highlightMain::before {
        display: none;
    }
}
/* IBW 2023 HIGHLIGHTs Section End */
/* Apply For IBW2024 Section Start */
.ibw2024 .card {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 14px;
    transition: 0.5s;
    border-radius: 20px;
    height: calc(100% - 20px);
    margin: 10px 0px;
    transition: 0.5s;
}

.ibw2024 .card.first:hover {
    box-shadow: 0px 0px 80px 0px rgba(244, 80, 178, 0.3);
}

.ibw2024 .card.second:hover {
    box-shadow: 0px 0px 80px 0px rgba(208, 216, 29, 0.3);
}

.ibw2024 .card.thired:hover {
    box-shadow: 0px 0px 80px 0px rgba(255, 162, 50, 0.3);
}

.ibw2024 .card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: -webkit-linear-gradient(
        140deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 52%,
        rgba(255, 255, 255, 1) 100%
    );
    transition: 0.5s;
}

.ibw2024 .card .card-body {
    padding: 10px 10px 25px 10px;
}

.ibw2024 .card .carImg {
    border: solid 1px #6d6d6d;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(162, 162, 162, 0.25);
    margin-bottom: 20px;
}

.ibw2024 .card .carImg img {
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
}

.ibw2024 .card .title {
    color: var(--whiteColor);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px;
    /* 96.429% */
    letter-spacing: -0.56px;
    margin-bottom: 6px;
}

.ibw2024 .card .smallText {
    color: #797979;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.32px;
    margin-bottom: 0px;
    max-width: 90%;
    margin-bottom: 15px;
}
@media screen and (min-width: 767px) and (max-width: 1024px) {
    .ibw2024 .card .smallText {
        max-width: 100%;
        min-height: 80px;
        margin-bottom: 0px;
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {
    .ibw2024 .card .title {
        font-size: 26px;
    }
}
/* Apply For IBW2024 Section End */
/* Schedule Section Css Start */
.scheduleMainSection .scheduleEventMain {
    display: inline-block;
    width: 100%;
    position: relative;
}

/* .scheduleMainSection .scheduleInner {
    margin: 150px 0px 100px 0px;
}

.scheduleMainSection .scheduleCard {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(112.01deg, #202020 -77.52%, #131313 100%);
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 15px;
    transition: 0.5s;
    position: relative;
    padding: 15px 5px;
}

.scheduleMainSection .scheduleCard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(111.5deg, rgba(255, 255, 255, 0.3) 21%, rgba(255, 255, 255, 0.12) 80.5%);
    transition: 0.5s;
}

.scheduleMainSection .scheduleCard.borderGradient::before {
    background: linear-gradient(90deg, #63b5b6 0%, #6288c0 23.75%, #916a86 47.5%, #cab85c 71.25%, #69ad5b 95%);
}

.scheduleMainSection .scheduleCard .date {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    color: #fff;
}

.scheduleMainSection .scheduleCard .week {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

.scheduleMainSection .scheduleCard .shapImg {
    text-align: center;
    margin-top: 10px;
}

.scheduleMainSection .eventscheduleMain {
    position: relative;
}

.scheduleMainSection .bottomShap {
    border-style: solid;
    border-width: 0px 1px 1px 1px;
    border-color: #4f4f4f;
    margin: 5px 20px 0px 20px;
    border-radius: 0px 0px 10px 10px;
    display: flex;
    justify-content: center;
    height: 60px;
    position: relative;
}

.scheduleMainSection .bottomShap .innerSection {
    position: absolute;
    top: 10px;
    background: #171717;
    padding: 0px 10px;
}

.scheduleMainSection .bottomShap .innerSection .smallText {
    font-size: 18px;
}

@media (min-width: 768px) {
    .scheduleMainSection .col-md-3 {
        width: 33%;
    }

    .scheduleMainSection .col-lg-4 {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .scheduleMainSection .col-md-3 {
        width: 22.6%;
    }

    .scheduleMainSection .col-lg-4 {
        width: 32.2%;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1500px) {
    .scheduleMainSection .scheduleInner {
        margin: 100px 0px 50px 0px;
    }

    .scheduleMainSection .scheduleCard {
        border-radius: 12px;
    }

    .scheduleMainSection .scheduleCard {
        padding: 10px 5px;
    }

    .scheduleMainSection .scheduleCard .date {
        font-size: 18px;
        line-height: 20px;
    }

    .scheduleMainSection .scheduleCard .week {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 1200px) {
    .scheduleMainSection .scheduleInner {
        margin: 80px 0px 0px 0px;
    }

    .scheduleMainSection .bottomShap {
        margin-bottom: 50px;
    }

    .scheduleMainSection .scheduleCard {
        padding: 10px 5px;
    }

    .scheduleMainSection .scheduleCard .date {
        font-size: 18px;
        line-height: 20px;
    }

    .scheduleMainSection .scheduleCard .week {
        font-size: 14px;
        line-height: 22px;
    }

    .scheduleMainSection .scheduleCard .shapImg {
        margin-top: 5px;
    }

    .scheduleMainSection .scheduleCard {
        border-radius: 12px;
    }
} */
.scheduleMainSection .scheduleNewInner {
    margin-top:80px;
}
  .scheduleNewInner .scheduleCard {
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(112.01deg, #202020 -77.52%, #131313 100%);
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 15px;
    transition: 0.5s;
    position: relative;
    padding: 25px;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.502);
}
 .scheduleNewInner .scheduleCard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background:  linear-gradient(90deg, rgba(255, 255, 255,.5) 23.08%, rgba(255, 255, 255, 0.3) 96.03%);
    transition: 0.5s;
}
.scheduleNewInner .scheduleCard.borderGradient::before {
    background: linear-gradient(267.19deg, #FFF42F -24.06%, #FFA232 6.86%, #F450B2 29.6%, #3FCBFF 64.71%, #D0D81D 101.09%);
    box-shadow: 0px 5px 15px 0px rgba(194, 194, 194, 0.4);
}
.scheduleNewInner .scheduleCard  .innerCard{
    position: relative;
    z-index: 1;
    height: 100%;
}
.scheduleNewInner .scheduleCard  .innerCard .borderInner{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: linear-gradient(112.01deg, #202020 -77.52%, #131313 100%);
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 15px;
    transition: 0.5s;
    position: relative;
    padding: 25px;
}
.scheduleNewInner .scheduleCard  .innerCard .borderInner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background:  linear-gradient(90deg, rgba(255, 255, 255,.5) 23.08%, rgba(255, 255, 255, 0.3) 96.03%);
    transition: 0.5s;
}
.scheduleNewInner .scheduleCard.borderGradient  .innerCard .borderInner::before  {
    background: linear-gradient(267.19deg, #FFF42F -24.06%, #FFA232 6.86%, #F450B2 29.6%, #3FCBFF 64.71%, #D0D81D 101.09%);
}
.scheduleNewInner .scheduleCard .date {
    font-size: 24px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
    color: #fff;
}
.scheduleNewInner .scheduleCard .listInner{
    display: inline-block;
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px;
    position: relative;
}
.scheduleNewInner .scheduleCard {
    margin-bottom: 25px;
}
.scheduleNewInner .scheduleCard  .listInner.listInnerBorder::after{
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: 0px;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(0.01deg, rgba(255, 255, 255, 0) 9.06%, #FFFFFF 58.34%, rgba(255, 255, 255, 0) 100.85%);
}
.scheduleNewInner .scheduleCard .listInner li{
    display: flex;
    width: 100%;
    margin-bottom: 5px;
    align-items: flex-start;
}
.scheduleNewInner .scheduleCard .listInner li:last-child{
    margin-bottom: 0px;
}
.scheduleNewInner .scheduleCard .listInner li img{
    margin-right: 10px;
    margin-top: 5px;
}
.scheduleNewInner .scheduleCard .listInner li .smallText{
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}
.scheduleNewInner   .listTimeDate{
    margin-bottom: 10px;
}
.scheduleNewInner  .listTimeDate .title{
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
    width: auto;
    color: #fff;
}
.scheduleNewInner   .listTimeDate .title .line {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, #63B5B6 0%, #6288C0 23.75%, #916A86 47.5%, #CAB85C 71.25%, #69AD5B 95%);
    margin-top: 3px;
}
.scheduleNewInner   .listTimeDate:last-child{
    margin-bottom: 0px;
}
.scheduleNewInner  .listTimeDate .smallTitle{
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.sponsorsInnerSection   .small-Text{
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    color: #fff;
}
@media screen and (max-width: 1470px) {
    .scheduleNewInner .scheduleCard .listInner li .smallText {
        font-size: 16px;
    }
    .scheduleNewInner .listTimeDate .title,
    .scheduleNewInner .listTimeDate .smallTitle{
        font-size: 14px;
    }
}
@media screen and (max-width: 1200px) {
    .scheduleNewInner .scheduleCard .listInner{
        /* margin-bottom: 20px; */
    }
    .scheduleNewInner .scheduleCard .listInner.listInnerBorder::after{
        width: 100%;
        height: 1px;
        bottom: -10px;
        top: inherit;
        background-image: linear-gradient(5.01deg, rgba(255, 255, 255, 0) 9.06%, #FFFFFF 58.34%, rgba(255, 255, 255, 0) 100.85%);
    }

}
@media screen and (max-width: 767px) {
    .scheduleNewInner .scheduleCard{
        padding: 5px 15px;
    }
    .scheduleNewInner .scheduleCard .innerCard{
        margin: 10px 0px;
        height: auto;
    }
    .scheduleNewInner .scheduleCard .innerCard .borderInner{
        height: auto;
    }
    .scheduleNewInner .scheduleCard .innerCard .borderInner{
        padding: 15px;
    }
    .scheduleNewInner .scheduleCard .listInner li .smallText {
        font-size: 14px;
        line-height: 16px;
    }
    .scheduleNewInner .scheduleCard .date {
        font-size: 22px;
        line-height: 32px;
    }
    .scheduleNewInner .scheduleCard .listInner li img {
        margin-top: 0px;
        width: 15px;
    }
}
/* Schedule Section Css End */
/* Agenda Section Css Start */
.agendaInnerSection .agendaHeading {
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 16px;
    transition: 0.5s;
    position: relative;
    padding: 10px 20px 10px 80px;
}
.agendaInnerSection .agendaHeading::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(105.77deg, #ffffff 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    transition: 0.5s;
}
.agendaInnerSection .agendaHeading .title {
    font-size: 26px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.04em;
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 7%, rgba(255, 255, 255, 0.4) 90%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0px;
}
.agendaInnerSection .agendabody {
    display: inline-block;
    width: 100%;
    max-height: 500px;
    overflow: auto;
    padding: 0px 15px;
}
.agendaInnerSection .list {
    padding: 20px 0px;
    border-bottom: dashed 2px #2f2f2f;
}
.agendaInnerSection .list .smallText {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1) 7%, rgba(255, 255, 255, 0.4) 90%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0px 10px;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
    .agendaInnerSection .agendaHeading {
        padding: 10px 20px 10px 50px;
    }
    .agendaInnerSection .agendaHeading .title {
        font-size: 24px;
    }
    .agendaInnerSection .list .smallText {
        font-size: 16px;
        line-height: 18px;
    }
}
@media screen and (max-width: 767px) {
    .agendaInnerSection .agendaHeading {
        border-radius: 8px;
        padding: 8px 10px 8px 20px;
    }
    .agendaInnerSection .agendaHeading .title {
        font-size: 20px;
    }
    .agendaInnerSection .list .smallText {
        font-size: 14px;
        line-height: 20px;
        padding: 0px;
    }
    .agendaInnerSection .list {
        border-bottom: dashed 2px #2f2f2f;
    }
}
/* Agenda Section Css End */
/* Event List Main Page Start */
.eventListSection .nav-tabs {
    white-space: nowrap;
    overflow: auto;
    flex-wrap: nowrap;
    border-bottom-color: #454545;
    margin-bottom: 20px;
}
.eventListSection .nav-tabs .nav-item {
    margin: 0px 2px;
}
.eventListSection .nav-tabs .nav-item:first-child {
    margin-left: 0px;
}
.eventListSection .nav-tabs .nav-link {
    margin: 0;
    border: 0px;
    padding: 12px 16px;
    border-radius: 0px;
    font-weight: 500;
    position: relative;
    background-color: transparent;
}
.eventListSection .nav-tabs .nav-link span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.eventListSection .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 2px;
    background: linear-gradient(90deg, #63b5b6 0%, #6288c0 23.75%, #916a86 47.5%, #cab85c 71.25%, #69ad5b 95%);
    transition: 0.5s;
    margin: 0 auto;
}
.eventListSection .nav-tabs .nav-link:hover::after,
.eventListSection .nav-tabs .nav-item.show .nav-link::after,
.eventListSection .nav-tabs .nav-link.active::after {
    width: 100%;
}
.eventListSection .eventListBadge {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    list-style: none;
}
.eventListSection .eventListBadge li {
    display: inline-block;
    width: auto;

}
.eventListSection .eventListBadge li {
    margin: 2px;
}
.eventListSection .eventListBadge li:last-child {
    margin-right: 0px;
}
.eventListSection .eventListBadge li .innerLink{
    display: inline-block;
    width: auto;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    color: #ffffff;
    background-color: #2a2a2a;
    text-decoration: inherit;
    transition: 0.6s;
}
.eventListSection .eventListBadge li .innerLink:hover,
.eventListSection .eventListBadge li .innerLink:focus,
.eventListSection .eventListBadge li .innerLink.active{
    background: linear-gradient( 100deg, rgba(99, 181, 182, 0.8) 0%, rgb(98, 136, 192, 0.8) 23.75%, rgb(145, 106, 134, 0.8) 47.5%, rgb(202, 184, 92, 0.8) 71.25%, rgb(105, 173, 91, 0.8) 95% );
}
.eventListSection .card {
    margin: 15px 0px;
    border-radius: 16px;
    background-color: #111111;
    box-sizing: border-box;
    background-clip: border-box;
    position: relative;
    border: solid 1px transparent;
    transition: 0.5s;
}
.eventListSection .card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: #454545;
    transition: 0.5s;
}
.eventListSection .card:hover {
    box-shadow: 0px 0px 12px 0px rgba(99, 181, 182, 0.8);
}
.eventListSection .card:hover::before {
    margin: -3px;
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}
.eventListSection .card .card-body {
    padding: 15px;
    position: relative;
    z-index: 1;
}
.eventListSection .card .fistList {
    display: flex;
    align-items: center;
    width: 100%;
}
.eventListSection .fistList .cardImg {
    display: inline-block;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}
.eventListSection .fistList .cardImg img {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.eventListSection .fistList .cardDes {
    flex: 1 auto;
    align-content: center;
    max-width: 70%;
}
.eventListSection .cardDes .badge {
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
}
.eventListSection .cardDes .smallTitle {
    font-size: 24px;
    line-height: 25px;
    font-weight: 600;
    background: -webkit-linear-gradient(40deg, #ffffff 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}
.eventListSection .cardDes .smallText {
    font-size: 16px;
    line-height: 18px;
    color: #8f8f8f;
}
.eventListSection .secList {
    display: inline-block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.eventListSection .secList li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.eventListSection .secList li:last-child {
    margin-bottom: 0px;
}
.eventListSection .secList li img {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}
.eventListSection .secList li .smallText {
    font-size: 16px;
    line-height: 17px;
    color: #fff;
    font-weight: 500;
    max-width: 90%;
}
.eventListSection .secList li .smallText small {
    color: #454545;
    font-weight: 400;
}
.eventListSection .thiredList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.eventListSection .thiredList .inviteeOnly {
    background: #f450b2;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 50px;
}
.eventListSection .thiredList .rightBtn .btn {
    margin-right: 10px;
}
.eventListSection .thiredList .rightBtn .btn-outline-secondary,
.eventListSection .thiredList .rightBtn .btn-inner {
    padding: 8px 20px;
    font-size: 14px;
}
.eventListSection .thiredList .rightBtn .btn:last-child {
    margin-right: 0px;
}
.eventListSection .eventSilder .card .card-body {
    padding: 4px;
}
.eventListSection .eventSilder .card {
    margin: 15px 15px;
}
.eventListSection .eventSilder .card:hover::before {
    margin: -2px;
}
.eventSilder .eventImage {
    display: inline-block;
    width: 100%;
    height: 275px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.eventSilder .eventImage img {
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
.eventSilder .eventImage .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 50px;
    z-index: 2;
}
.eventSilder .eventImage .btnOver {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 1.5s;
}
.eventSilder .eventImage .btnOver .btn {
    position: absolute;
    bottom: -50%;
    transition: 1.5s;
}
.eventListSection .eventSilder .card:hover .eventImage .btnOver {
    opacity: 1;
}
.eventListSection .eventSilder .card:hover .eventImage .btnOver .btn {
    bottom: 35%;
}
.eventSilder .cardDes {
    padding: 15px 10px;
}
.eventListSection .eventSilder .secList li img {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}
.eventListSection .eventSilder .cardDes .smallTitle {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0px;
}
.eventListSection .eventSilder .cardDes .smallText {
    font-size: 14px;
    line-height: 16px;
}
.eventSilder .infoText {
    margin-bottom: 10px;
}
.link-decoration {
    text-decoration: none;
    color:white;
}
.link-decoration:hover {
    color: white;
}
@media (min-width: 1200px) {
    .eventListSection .card .card-body .col-lg-3 {
        flex: 0 0 auto;
        width: 23%;
    }
    .eventListSection .card .card-body .col-lg-4 {
        width: 35%;
    }
}
@media screen and (min-width: 1100px) and (max-width: 1400px) {
    .eventListSection .thiredList .rightBtn .btn-outline-secondary,
    .eventListSection .thiredList .rightBtn .btn-inner {
        padding: 6px 20px;
    }
}
@media screen and (max-width: 1199px) {
    .eventListSection .card .fistList {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 768px) {
    .eventListSection .card .card-body {
        padding: 10px;
    }

    .eventListSection .fistList .cardImg {
        width: 100px;
        height: 100px;
        border-radius: 10px;
        margin-right: 10px;
    }
    .eventListSection .cardDes .smallTitle {
        font-size: 18px;
        line-height: 20px;
    }
    .eventListSection .cardDes .badge {
        font-size: 12px;
        padding: 4px 10px;
        margin-bottom: 5px;
    }
    .eventListSection .cardDes .smallText {
        font-size: 14px;
        line-height: 16px;
        color: #8f8f8f;
    }
    .eventListSection .secList {
        margin: 15px 0px;
    }
    .eventListSection .thiredList .inviteeOnly {
        font-size: 12px;
        font-weight: 500;
        padding: 2px 7px;
    }
    .eventListSection .thiredList .rightBtn .btn-outline-secondary,
    .eventListSection .thiredList .rightBtn .btn-inner {
        padding: 6px 12px;
    }
    .eventListSection .eventSilder .secList {
        margin: 0px;
    }
}
/* Event List Main Page End */
/* Speakers Section Css Start */
.slick-slide {
    height: auto;
}
.speakersSlider .card {
    box-sizing: border-box;
    background: #202020;
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 12px;
    position: relative;
    margin: 2px 15px;
    transition: 0.8s;
    overflow: hidden;
}
.speakersSlider .card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(68, 68, 68, 0.19) 100%);
    transition: 0.8s;
}
.speakersSlider .card .cardInner {
    position: relative;
}
.speakersSlider .card:hover::before {
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}
.speakersSlider .card .speakersDetails {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
    width: 45%;
}
.speakersDetails .name {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 5px;
}
.speakersDetails .info {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.12px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #fff;
}
.speakersSlider .socialIcons {
    display: inline-block;
    width: 100%;
    position: absolute;
    left: 20px;
    bottom: -40px;
    list-style: none;
    margin: 0px;
    padding: 0px;
    transition: 0.8s;
}
.speakersSlider .socialIcons li {
    display: inline-block;
    width: auto;
    margin-right: 5px;
}
.speakersSlider .socialIcons li a {
    display: inline-block;
    width: 24px;
    height: 24px;
}
.speakersSlider .socialIcons li a img {
    width: 100%;
    height: 100%;
}
.speakersSlider .speakersImg {
    text-align: right;
    padding-top: 15px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.speakersSlider .speakersImg::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10px;
    width: 190px;
    height: 190px;
    border-radius: 200px;
    background: linear-gradient(90deg, #63b5b6 0%, #6288c0 23.75%, #916a86 47.5%, #cab85c 71.25%, #69ad5b 95%);
    filter: blur(40px);
    opacity: 0;
    transition: 0.8s;
}
.speakersSlider .speakersImg img {
    text-align: right;
    max-width: 230px;
    margin: 0 0 0 auto;
    transition: 0.8s;
    z-index: 1;
    position: relative;
}
.speakersSlider .card:hover .speakersImg img {
    transform: scale(1.05);
}
.speakersSlider .card:hover .speakersImg::after {
    opacity: 0.8;
}
.speakersSlider .card .socialIcons {
    bottom: 20px;
}
.speakersSliderInner .speakersSlider .card {
    margin: 10px 0px;
    height: calc(100% - 20px);
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
    .speakersDetails .name {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 0px;
    }
    .speakersDetails .info {
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {
    .speakersSlider .socialIcons {
        bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .speakersDetails .name {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 0px;
    }
    .speakersDetails .info {
        font-size: 14px;
    }
}
/* Speakers Section Css End */

/* Tickets Section Start */
.tickets .cardTheme {
    display: inline-block;
    width: 100%;
    height: calc(100% - 30px);
    margin: 15px 0px;
}
.tickets .cardTheme .cardHeader {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px 5px 40px;
    position: relative;
    background: linear-gradient(285.92deg, #0d0d0d -10.88%, #171717 100.58%, #111111 139.64%);
    border: 1px solid #646464;
    border-bottom: 0px;
    border-radius: 20px 20px 0px 0px;
}
.ticket__divider {
    position: relative;
    height: 25px;
    margin-left: 0;
    margin-right: 0;
    background: linear-gradient(285.92deg, #0d0d0d -10.88%, #171717 100.58%, #111111 139.64%);
}
.ticket__notch {
    position: absolute;
    width: 25px;
    height: 25px;
    overflow: hidden;
}
.ticket__notch::after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    border: 1px solid #646464;
    border-radius: 50%;
}
.ticket__notch--left {
    left: 0px;
}
.ticket__notch--left::after {
    left: -0.5rem;
    border-left: 0px;
    background: #121212;
}
.ticket__notch--right {
    right: 0px;
}
.ticket__notch--right::after {
    right: -0.5rem;
    border-right: 0px;
    background: #151515;
}
.tickets .cardTheme .cardHeader::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0px;
    right: 0px;
    width: 95%;
    border-bottom: dashed 2px #4b4b4b;
    margin: 0 auto;
    z-index: 1;
}
.tickets .cardTheme .cardHeader .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 33.6px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #e3e3e3;
    margin-bottom: 0px;
}
.tickets .cardTheme .cardHeader .smallText {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #b3b3b3;
    margin-bottom: 0px;
}
.tickets .cardTheme .cardBody {
    padding: 5px 40px 20px 40px;
    background: linear-gradient(285.92deg, #0d0d0d -10.88%, #171717 100.58%, #111111 139.64%);
    border: 1px solid #646464;
    border-top: 0px;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    height: calc(100% - 80px);
    position: relative;
}
.tickets .cardTheme .cardBody::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 73px;
    height: 87px;
    background-image: url("/assets/images/2024/logo-shap.png");
    background-size: cover;
}
.tickets .cardTheme .cardBody .list {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #9f9f9f;
    margin: 0px;
    padding-left: 10px;
    flex: 1 auto;
    width: 70%;
}
.smallInfotext {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #606060;
}
.ticketsInner {
    padding-top: 100px;
}
.ticketsInner .ticketBox {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    background-clip: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 32px;
    transition: 0.5s;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    padding: 40px 15px;
}
.ticketsInner .ticketBox::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: -webkit-linear-gradient( 120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100% );
    transition: 0.5s;
}
.ticketsInner .ticketBox iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border: 0px !important;
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .tickets .cardTheme .cardHeader {
        padding: 15px 20px 5px 20px;
    }
    .tickets .cardTheme .cardBody {
        padding: 5px 20px 20px 20px;
    }

    .tickets .cardTheme .cardHeader .title {
        font-size: 22px;
        line-height: 28px;
    }
    .tickets .cardTheme .cardHeader .smallText {
        font-size: 18px;
        line-height: 24px;
    }
    .tickets .cardTheme .cardHeader::after {
        width: 92%;
    }
}
@media screen and (max-width: 1024px) {
    .tickets .cardTheme .cardHeader {
        padding: 15px 20px 5px 20px;
    }
    .tickets .cardTheme .cardHeader::after {
        width: 92%;
    }
    .tickets .cardTheme .cardHeader .title {
        font-size: 22px;
        line-height: 28px;
    }
    .tickets .cardTheme .cardHeader .smallText {
        font-size: 18px;
        line-height: 24px;
    }
    .tickets .cardTheme .cardBody {
        padding: 5px 20px 20px 20px;
    }
    .tickets .cardTheme .cardBody {
        display: inline-block;
        width: 100%;
    }
    .tickets .cardTheme .cardBody .list {
        width: 100%;
    }
}
/* Tickets Section End */

/* Sponsors Section Start */
.sponsorsSection .sponsorsInnerSection {
    margin-top: 90px;
}
.sponsorsInnerSection .card {
    background: #111111;
    border: 1px solid #777777;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 40px 50px 30px 50px;
}
.sponsorsInnerSection .card:last-child {
    margin-bottom: 0px;
}
.sponsorsInnerSection .header {
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
}
.sponsorsInnerSection .header .title {
    display: inline-block;
    width: auto;
    font-size: 36px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0px;
    background: -webkit-linear-gradient(40deg, rgba(255, 255, 255, 1) 7%, rgba(255, 255, 255, 0.5) 80%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
    position: relative;
}
.sponsorsInnerSection .header .title::before,
.sponsorsInnerSection .header .title::after {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 0px;
    width: 100px;
    height: 1.2px;
    margin: auto;
}
.sponsorsInnerSection .header .title::before {
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 100%);
    left: -115px;
}
.sponsorsInnerSection .header .title::after {
    background: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    right: -115px;
}
.sponsorsInnerSection .header .title img {
    display: inline-block;
    vertical-align: sub;
    margin-right: 8px;
}
.sponsorsInnerSection .brandImg {
    display: flex;
    width: 100%;
    border-radius: 8px;
    background: rgba(109, 109, 109, 0.1);
    margin: 10px 0px;
    height: calc(100% - 20px);
    padding: 15px 10px;
    text-align: center;
    justify-content: center;
    align-content: center;
}
.sponsorsInnerSection .brandImg img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
}
.sponsorsInnerSection .joinCard {
    display: flex;
    align-content: center;
    justify-content: space-between;
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 12px;
    position: relative;
    margin-top: 50px;
    box-shadow: 0px 0px 12px 0px rgba(99, 181, 182, 0.8);
    padding: 20px 40px;
}
.sponsorsInnerSection .joinCard::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
    transition: 0.8s;
}
.sponsorsInnerSection .joinCard .smallText {
    font-size: 18px;
    color: #fff;
    max-width: 80%;
    margin: 0px;
}
.joinCard .rightBtn {
    margin-top: 8px;
}
.sponsorsInnerSection .smallText {
    font-size: 18px;
    line-height: 30px;
    color: #e3e3e3;
    margin-bottom: 10px;
}
@media screen and (max-width: 1150px) {
    .sponsorsInnerSection .card {
        padding: 30px 20px;
    }
    .sponsorsSection .sponsorsInnerSection {
        margin-top: 50px;
    }
}
@media screen and (max-width: 768px) {
    .sponsorsInnerSection .header .title {
        font-size: 26px;
    }
    .sponsorsInnerSection .header .title img {
        width: 40px;
        margin-top: 5px;
    }
    .sponsorsInnerSection .header .title::before,
    .sponsorsInnerSection .header .title::after {
        width: 80px;
    }
    .sponsorsInnerSection .header .title::before {
        left: -90px;
    }
    .sponsorsInnerSection .header .title::after {
        right: -90px;
    }
    .sponsorsInnerSection .header {
        margin-bottom: 15px;
    }
    .sponsorsInnerSection .joinCard {
        display: inline-block;
        padding: 10px 15px;
        margin-top: 10px;
    }
    .sponsorsInnerSection .joinCard .smallText {
        font-size: 14px;
        max-width: 100%;
    }
    .sponsorsInnerSection .smallText {
        font-size: 16px;
        line-height: 22px;
    }
}
/* Sponsors Section End */

/* FAQs Section Start */
.faqSection .accordion .accordion-item {
    margin-bottom: 20px;
    border-bottom: dashed 2px #4b4b4b;
    background-color: transparent;
    border-radius: 0px;
}
.faqSection .accordion .accordion-button {
    background-color: transparent;
    box-shadow: none;
    color: var(--whiteColor);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 27px; /* 135% */
    letter-spacing: -0.4px;
    padding: 5px 0px;
    transition: 0.5s;
}
.faqSection .accordion .accordion-button.collapsed .innerHeading {
    padding: 10px 0px;
    background: transparent;
    transition: 0.5s;
}
.faqSection .accordion .accordion-button:hover .innerHeading {
    padding-left: 25px;
}
.faqSection .accordion .accordion-button .innerHeading {
    padding: 10px 25px;
    border-radius: 27px;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    transition: 0.5s;
    flex: 1 auto;
}
.faqSection .accordion .accordion-button.collapsed .innerHeading::after {
    opacity: 0;
}
.faqSection .accordion .accordion-button .innerHeading::after {
    content: "";
    position: absolute;
    left: -8px;
    width: 20px;
    height: 20px;
    background: url("/assets/images/2024/left-icon.png");
    top: 0px;
    bottom: 0;
    margin: auto;
    background-size: cover;
    transition: 0.5s;
}
.faqSection .accordion .accordion-button .icon {
    transition: transform 0.2s ease-in-out;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faqSection .accordion .accordion-button .icon img {
    width: 24px;
    height: 24px;
    display: block;
    opacity: 1;
}
.faqSection .accordion .accordion-button:not(.collapsed) .icon {
    transform: rotate(-180deg);
}
.faqSection .accordion .accordion-button::after {
    display: none;
}
.faqSection .accordion .accordion-body {
    padding: 15px 0px;
    color: #e3e3e3;
}
.faqSection .accordion .accordion-collapse.show .accordion-body {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.faqSection .accordion .accordion-body .smallText {
    color: #e3e3e3 !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}
.faqSection .accordion .accordion-body .smallText p {
    color: #e3e3e3 !important;
}
.faqSection .accordion .accordion-body .smallText a {
    color: #e3e3e3;
    font-size: 16px;
}
.faqSection .accordion .accordion-body .smallText:last-child {
    margin-bottom: 0px;
}
@media screen and (min-width: 767px) {
    .faqSection .mainTitle .themeTitle {
        width: 50%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 1024px) {
    .faqSection .accordion .accordion-button {
        font-size: 16px;
        line-height: 20px;
    }
    .faqSection .accordion .accordion-item {
        margin-bottom: 10px;
    }
    .faqSection .accordion .accordion-body .smallText {
        font-size: 14px;
        margin-bottom: 10px;
    }
}
/* FAQs Section End */
/* Terms And Conditions Section Start */
.termsAndConditionsMain p{
    margin: 0px;
    font-size: 14px;
    line-height: 20px;
}
.termsAndConditionsMain .link-white {
    color: #fff;
}
/* Terms And Conditions Section End */
/* Footer Section Start */
.themeFooter {
    padding-bottom: 100px;
}
.themeFooter .footerInner {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 32px;
    transition: 0.5s;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    padding: 60px 55px;
}
.themeFooter .footerInner::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: -webkit-linear-gradient( 120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.4) 100% );
    transition: 0.5s;
}
.themeFooter .row {
    z-index: 1;
    position: relative;
}
.themeFooter .waterLogo {
    position: absolute;
    overflow: hidden;
    top: 0;
}
.themeFooter .waterLogo::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    background: url("/assets/images/2024/footer-logo.png");
    width: 707px;
    height: 500px;
    bottom: -200px;
    background-size: cover;
    margin: 0 auto;
    background-position: center;
}
.theme .themeFooter .formCustom {
    width: 100%;
}
.waterLogo {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.themeFooter ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: inline-block;
    width: 100%;
}
.themeFooter .list {
    margin-bottom: 45px;
}
.themeFooter .list li {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}
.themeFooter .list li:last-child {
    margin-bottom: 0px;
}
.themeFooter .list li a {
    color: var(--whiteColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 168.75% */
    letter-spacing: -0.32px;
    text-decoration: inherit;
}
.themeFooter .link {
    font-size: 16px;
    color: var(--whiteColor);
    text-decoration: none;
    transition: 0.5s;
    position: relative;
    transition: 0.5s;
    padding-bottom: 10px;
}
.themeFooter .link::after {
    content: "";
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    bottom: 0px;
    background: #464646;
    transition: 0.5s;
}
.themeFooter .link:hover::after {
    transition: 0.5s;
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}
.themeFooter .hostedText {
    color: #9a9a9a;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}
.themeFooter .smallTitle {
    color: var(--whiteColor);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px; /* 135% */
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}
.theme .themeFooter .formCustom .form-control {
    margin-right: 10px;
}
.themeFooter .socialsList li {
    display: inline-block;
    width: auto;
}
.themeFooter .socialsList li a {
    display: inline-block;
    width: 33px;
    height: 33px;
}
.themeFooter .socialsList li a img {
    max-width: 100%;
    max-height: 100%;
}
.themeFooter .infoText {
    margin-top: 30px;
    margin-bottom: 0px;
    color: var(--whiteColor);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}
@media screen and (max-width: 1025px) and (max-width: 1350px) {
    .themeFooter .footerInner {
        padding: 50px 25px;
    }
}
@media screen and (max-width: 1024px) {
    .themeFooter .footerInner {
        padding: 40px 20px;
    }
    .themeFooter {
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 767px) {
    .themeFooter .footerInner {
        border-radius: 20px;
    }
    .themeFooter .waterLogo::after {
        width: 100%;
        height: 500px;
    }
    .themeFooter .list {
        margin-bottom: 25px;
    }
}
/* Footer Section End */
.line-through {
    text-decoration: line-through;
}

/* Thank you! Section Start */
.thankyouInner .thankyouBox {
    border-radius: 24px;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    background:  url("/assets/images/2024/thankyou-pattern.png") #000;
    background-repeat: repeat;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 1.5px transparent;
    padding: 140px 15px;
    background-size: cover;
    border-radius: 28px;
}
.thankyouInner .thankyouBox:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1.5px;
    border-radius: inherit;
    transition: 0.5s;
    background: linear-gradient(234.2deg, #FFF42F 2.35%, #FFA232 24.56%, #F450B2 40.88%, #3FCBFF 66.09%, #D0D81D 92.21%);
}
.thankyouInner .thankyouBox .themeTitle {
    font-size: 116px;
    line-height: 90px;
    letter-spacing: -0.02em;
    text-align: center;
}
 .thankyouBox .smallText{
    font-size: 24px;
    font-weight: 400;
    line-height: 33.84px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #B5B5B5;
    margin-bottom: 65px;
}
.thankyouBox .mainTitle .outerBorder {
    display: flex;
    margin-top: 30px;
}
.thankyouBox .mainTitle .outerBorder img {
    margin: 0 auto;
}

.thankyouBox  .btn-inner{
    padding: 10px 30px;
}
.thankyouBox .party{
    position: absolute;
}
.thankyouBox .party-one{
    left: 80px;
    top: 80px;
}
.thankyouBox .party-two{
    left: 250px;
    bottom: 50px;
}
.thankyouBox .party-three{
    right: 80px;
    top: 50px;
}
.thankyouBox .party-four{
    right: 150px;
    bottom: 150px;
}
@media screen and (max-width: 1201px) and (max-width: 1350px) {
    .thankyouInner .thankyouBox .themeTitle {
        font-size: 100px;
        line-height: 80px;
    }
    .thankyouBox .party-one{
        left: 40px;
        top: 40px;
    }
    .thankyouBox .party-two{
        left: 150px;
        bottom: 50px;
    }
    .thankyouBox .party-three{
        right: 50px;
        top: 25px;
    }
    .thankyouBox .party-four{
        right: 100px;
        bottom: 100px;
    }
}
@media screen and (max-width: 1025px) and (max-width: 1200px) {

    .thankyouBox .party-one{
        left: 30px;
        top: 40px;
    }
    .thankyouBox .party-two{
        left: 80px;
        bottom: 50px;
    }
    .thankyouBox .party-three{
        right: 50px;
        top: 25px;
    }
    .thankyouBox .party-four{
        right: 80px;
        bottom: 80px;
    }
}
@media screen and (max-width: 767px) {
    .thankyouInner .thankyouBox .themeTitle {
        font-size: 56px;
        line-height: 56px;
    }
    .thankyouBox .mainTitle .outerBorder {
        margin-top: 15px;
    }
    .thankyouInner .thankyouBox{
        padding: 100px 15px;
    }
    .thankyouBox .party-one{
        left: 10px;
        top: 10px;
    }
    .thankyouBox .party-two{
        left: 10px;
        bottom: 10px;
    }
    .thankyouBox .party-three{
        right: 10px;
        top: 10px;
    }
    .thankyouBox .party-four{
        right: 10px;
        bottom: 10px;
    }
    .thankyouBox .smallText {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 30px;
    }
}
/* Thank you! Section End */
/* Agenda Main Page Start */
.agendaInformation {
    display: flex;
    align-content: center;
    justify-content: space-between;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: solid 1px #717171;
    border-radius: 20px;
    box-shadow: none !important;
    position: relative;
    margin-top: 20px;
    padding: 20px 30px;
    z-index: 1;
}

.agendaInformation::before,
.agendaInformation::after {
    display: none !important;
    content: none !important;
    background: transparent !important;
}
.agendaInformation .smallText {
    font-size: 16px;
    line-height: 24px;
    flex: 1 auto;
}
.agendaInformation .rightBtn {
    min-width: 200px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.agendaInformation .rightBtn .btn {
    margin-right: 15px;
}
.agendaInformation .rightBtn .btn:last-child {
    margin-right: 0px;
}
.sideEventInformation .rightBtn {
    min-width: 400px;
}
.speaskersInformation .mainTitleText {
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
    text-transform: uppercase;
}
.speaskersInformation .btn .btn-inner {
    padding: 8px 20px;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    .speaskersInformation .mainTitleText {
        font-size: 32px;
        line-height: 35px;
    }
}
@media screen and (max-width: 768px) {
    .agendaInformation {
        display: inline-block;
        padding: 10px 15px;
    }
    .agendaInformation .smallText {
        font-size: 14px;
        line-height: 18px;
    }
    .agendaInformation .rightBtn {
        justify-content: flex-start;
    }
    .speaskersInformation .mainTitleText {
        font-size: 28px;
        line-height: 35px;
        margin-bottom: 5px;
    }
    .speaskersInformation .btn .btn-inner {
        font-size: 13px;
    }
}
.agendaSectionInner {
    display: inline-block;
    width: 100%;
    background: #111111;
    border: solid 1px #454545;
    border-radius: 20px;
    margin-top: 20px;
    padding: 30px;
    z-index: 1;
    position: relative;
}
.agendaSectionInner .leftSide {
    display: inline-block;
    width: 100%;
    padding: 0px 40px 0px 0px;
    margin: 0px;
    height: 100%;
    border-right: solid 1px #454545;
}
.agendaSectionInner .leftSide li {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}
.agendaSectionInner .leftSide li .fill {
    display: inline-block;
    width: 100%;
    border: solid 1px transparent;
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
    text-decoration: inherit;
    background-color: #111111;
    box-sizing: border-box;
    background-clip: border-box;
    position: relative;
    border: solid 1px transparent;
    transition: 0.5s;
}
.agendaSectionInner .leftSide li:last-child {
    margin-bottom: 0px;
}
.agendaSectionInner .leftSide li .fill::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: #454545;
    transition: 0.5s;
}
.agendaSectionInner .leftSide li .fill span {
    font-size: 16px;
    font-weight: 600;
    background: -webkit-linear-gradient(40deg, #ffffff 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.agendaSectionInner .leftSide li .fill:hover span,
.agendaSectionInner .leftSide li .fill:focus span,
.agendaSectionInner .leftSide li .fill.active span {
    background: -webkit-linear-gradient(40deg, #ffffff 23.08%, rgba(255, 255, 255, 1) 96.03%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.agendaSectionInner .leftSide li .fill:hover::before,
.agendaSectionInner .leftSide li .fill:focus::before,
.agendaSectionInner .leftSide li .fill.active::before {
    margin: -3px;
    background: linear-gradient(90deg, #63b5b6 0%, #6288c0 23.75%, #916a86 47.5%, #cab85c 71.25%, #69ad5b 95%);
}
.agendaSectionInner .rightSide {
    padding-left: 15px;
}
.agendaSectionInner .formCustom {
    margin-bottom: 25px;
}
.agendaSectionInner .formCustom .form-control {
    min-width: 350px;
    margin-right: 15px;
    padding: 7px 20px;
}
.agendaSectionInner .nav-tabs {
    white-space: nowrap;
    overflow: auto;
    flex-wrap: nowrap;
    border-bottom-color: #454545;
    margin-bottom: 30px;
}
.agendaSectionInner .nav-tabs .nav-item {
    margin: 0px 2px;
}
.agendaSection .nav-tabs .nav-item:first-child {
    margin-left: 0px;
}
.agendaSectionInner .nav-tabs .nav-link {
    margin: 0;
    border: 0px;
    padding: 13px 20px;
    border-radius: 0px;
    font-weight: 500;
    position: relative;
    background-color: transparent;
}
.agendaSectionInner .nav-tabs .nav-link span {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    background: -webkit-linear-gradient(40deg, #ffffff 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.agendaSectionInner .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 0px;
    height: 2px;
    background: linear-gradient(90deg, #63b5b6 0%, #6288c0 23.75%, #916a86 47.5%, #cab85c 71.25%, #69ad5b 95%);
    transition: 0.5s;
    margin: 0 auto;
}
.agendaSectionInner .nav-tabs .nav-link:hover::after,
.agendaSectionInner .nav-tabs .nav-item.show .nav-link::after,
.agendaSectionInner .nav-tabs .nav-link.active::after {
    width: 100%;
}
.agendaSectionInner .agendaBody {
    max-height: 550px;
    overflow: auto;
    padding-right: 16px;
}
.agendaSectionInner .agendaTable {
    margin: 0px;
}
.agendaSectionInner .agendaBody .mainTitle {
    margin-bottom: 50px;
    position: relative;
}
.agendaSectionInner .agendaBody .mainTitle .themeTitle {
    font-size: 32px;
    line-height: 40px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}
.agendaSectionInner .agendaTable td {
    padding: 15px 0px;
    border-color: #454545;
    width: 25%;
}
.agendaSectionInner .agendaTable .smallTitle {
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
}
.agendaSectionInner .agendaTable .smallText {
    font-size: 14px;
    line-height: 16px;
    color: #8f8f8f;
    font-weight: 400;
    margin-bottom: 5px;
    display: inline-block;
    width: 100%;
}
.agendaSectionInner .agendaTable .btn {
    /* padding: 8px 20px; */
    font-size: 14px;
}
.theme .btn-outline-secondary {
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    position: relative;
    animation: rotation 5s linear 0s infinite normal forwards;
    overflow: hidden;
    padding: 8px 25px;
}

.theme .btn-outline-secondary::before {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0px;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    z-index: -1;
    background: linear-gradient(112deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
    backdrop-filter: blur(11px);
    width: 100%;
    height: 136px;
}
.theme .btn-outline-secondary:hover {
    color: #000;
}
.theme .btn-outline-secondary:hover::before {
    top: 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .agendaSectionInner {
        padding: 20px;
    }
    .agendaSectionInner .leftSide {
        padding: 0px 20px 0px 0px;
    }
    .agendaSectionInner .rightSide {
        padding-left: 0px;
    }
    .agendaSectionInner .agendaTable .smallText {
        font-size: 13px;
    }
    .agendaSectionInner .agendaTable .smallTitle {
        font-size: 14px;
    }
    .agendaSectionInner .agendaTable .btn {
        /* padding: 5px 12px; */
        font-size: 13px;
    }
}
@media screen and (max-width: 767px) {
    .agendaSectionInner {
        padding: 20px 15px;
    }
    .agendaSectionInner .leftSide {
        padding: 0px;
        border-right: 0px;
        border-bottom: solid 1px #454545;
        height: auto;
        white-space: nowrap;
        overflow: auto;
        flex-wrap: nowrap;
        margin-bottom: 15px;
    }
    .agendaSectionInner .leftSide li {
        display: inline-block;
        width: auto;
        margin: 5px;
    }
    .agendaSectionInner .leftSide li .fill {
        border-radius: 6px;
        padding: 5px 8px;
    }
    .agendaSectionInner .leftSide li .fill span {
        font-size: 14px;
    }
    .agendaSectionInner .rightSide {
        padding-left: 0px;
    }
    .agendaSection .agendaTable .smallText {
        font-size: 13px;
    }
    .agendaSectionInner .agendaTable .smallTitle {
        font-size: 14px;
    }
    .agendaSectionInner .agendaTable .btn {
        /* padding: 5px 12px; */
        font-size: 14px;
    }
    .agendaSectionInner .formCustom .form-control {
        min-width: auto;
    }
    .agendaSectionInner .formCustom {
        margin-bottom: 10px;
    }
    .agendaSectionInner .nav-tabs {
        margin-bottom: 15px;
    }
    .agendaSectionInner .nav-tabs .nav-link {
        padding: 10px 15px;
    }
    .agendaSectionInner .agendaBody .mainTitle {
        margin-bottom: 30px;
    }
    .agendaSectionInner .agendaBody .mainTitle .themeTitle {
        font-size: 28px;
        line-height: 32px;
        max-width: 100%;
    }
    .agendaSectionInner .agendaTable td {
        padding: 10px 0px;
        display: inline-block;
        width: 100%;
    }
    .agendaSectionInner .agendaTable td.text-end {
        text-align: left !important;
    }
}
/* Agenda Main Page End */
/* Hackathons Main Page Start */
.hackathonsSection .card {
    margin: 15px 0px;
    border-radius: 16px;
    background-color: #111111;
    box-sizing: border-box;
    background-clip: border-box;
    position: relative;
    border: solid 1px transparent;
    transition: 0.5s;
}
.hackathonsSection .card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: #454545;
    transition: 0.5s;
}
.hackathonsSection .card:hover {
    box-shadow: 0px 0px 12px 0px rgba(99, 181, 182, 0.8);
}
.hackathonsSection .card:hover::before {
    margin: -3px;
    background: linear-gradient(to right, #63b5b6 0%, #6288c0 25%, #916a86 50%, #cab85c 75%, #69ad5b 100%);
}
.hackathonsSection .card .card-body {
    padding:35px 40px;
    position: relative;
    z-index: 1;
}
.hackathonsSection .card .firstCol .title{
    font-size: 34px;
    font-weight: 600;
    line-height: 36px;
    text-align: left;
    background: -webkit-linear-gradient(40deg, #ffffff 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    background-clip: border-box;
        background-clip: border-box;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 12px;
}
.hackathonsSection .card .firstCol .smallText{
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
}
.hackathonsSection .card .firstCol .smallText a{
    color: #fff;
}
.hackathonsSection .card  .secondCol .SponsoredBy{
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    margin-bottom: 15px;
}
.hackathonsSection  .card .secondCol .brandImg {
    display: inline-block;
    border-radius: 10px;
    background: rgba(109, 109, 109, 0.1);
    padding: 20px 30px;
  }
  .hackathonsSection  .card .secondCol .brandImg img {
    max-height: 50px;
    min-height: 30px;
    max-width: 100%;
    object-fit: contain;
  }
  .hackathonsSection  .card  .thiredCol .Prizes {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #fff;
  }
  .hackathonsSection  .card  .thiredCol  .pricesInfo{
    margin-bottom: 25px;
  }
  .hackathonsSection  .card  .thiredCol .amount{
    font-size: 36px;
    font-weight: 500;
    line-height: 40px;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
  }
  .hackathonsSection  .card  .thiredCol  .btn-inner{
    padding: 8px 25px;
  }

@media screen and (min-width: 993px) and (max-width: 1350px) {
    .hackathonsSection .card .card-body {
        padding: 25px 30px;
      }
      .hackathonsSection .card .firstCol .title {
        font-size: 32px;
        line-height: 36px;
    }
    .hackathonsSection .card .firstCol .smallText {
        font-size: 14px;
        line-height: 20px;
      }
      .hackathonsSection .card .thiredCol .amount {
        font-size: 30px;
      }
      .hackathonsSection .card .secondCol .brandImg {
        padding: 18px 20px;
      }
}

@media screen and (max-width: 992px) {
    .hackathonsSection .card .card-body {
        padding:15px;
      }
      .hackathonsSection .card .firstCol,
      .hackathonsSection .card .secondCol,
      .hackathonsSection .card .thiredCol {
            margin: 7px 0px;
        }
      .hackathonsSection .card .firstCol .title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 8px;
    }
    .hackathonsSection .card .firstCol .smallText {
        font-size: 14px;
        line-height: 20px;
      }

      .hackathonsSection .card .secondCol .SponsoredBy {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 5px;
      }
      .hackathonsSection .card .secondCol .brandImg {
        padding: 12px 20px;
      }
      .hackathonsSection .card .thiredCol {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .hackathonsSection .card .thiredCol .pricesInfo {
        margin-bottom: 0;
      }
      .hackathonsSection .card .thiredCol .Prizes {
        font-size: 15px;
        line-height: 14px;
      }
      .hackathonsSection .card .thiredCol .amount {
        font-size: 26px;
      }
      .hackathonsSection .card .thiredCol .btn-inner {
        padding: 6px 15px;
      }
}
/* Hackathons Main Page End */
/* Locations Main Page Start */
.image-container {
    position: relative;
    display: inline-block;
}
canvas {
    display: block;
    margin: 0 auto;}
.marker {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
}
/* Locations Main Page End */
/* Demo Day Section Start */
.demoDay .cardTheme {
    margin: 15px 0px;
    border-radius: 12px;
    background-color: #111111;
    box-sizing: border-box;
    background-clip: border-box;
    position: relative;
    border: solid 1px transparent;
    transition: 0.5s;
    height: calc(100% - 30px);
    margin: 15px 0px;
}

.demoDay .cardTheme::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 23.08%, rgba(255, 255, 255, 0.2) 96.03%);
    transition: 0.5s;
}

.demoDay .cardTheme .card-body {
    padding: 35px 30px;
}

.demoDay .cardTheme .title {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.demoDay .cardTheme .line {
    display: inline-block;
    width: 50px;
    height: 1px;
    background-image: linear-gradient(90deg, #63B5B6 0%, #6288C0 23.75%, #916A86 47.5%, #CAB85C 71.25%, #69AD5B 95%);
    margin-bottom: 20px;
}

.demoDay .cardTheme .smallText {
    font-size: 18px;
    color: #E3E3E3;
    margin-bottom: 0px;
}

.demoDay .cardTheme:hover {
    box-shadow: 0px 5px 12px 0px rgba(99, 181, 182, 0.5);
}
@media screen and (min-width: 993px) and (max-width: 1350px) {
    .demoDay .cardTheme .card-body {
        padding: 25px;
    }
    .demoDay .cardTheme .title {
        font-size: 26px;
        line-height: 26px;
    }
}
@media screen and (max-width: 992px) {
    .demoDay .cardTheme .card-body {
        padding: 25px 20px;
    }
    .demoDay .cardTheme .title {
        font-size: 24px;
        line-height: 24px;
    }
    .demoDay .cardTheme .smallText {
        font-size: 16px;
    }
    .demoDay .cardTheme .line {
        margin-bottom: 15px;
    }
    .demoDay .cardTheme {
        margin: 10px 0px;
        height: calc(100% - 20px);
    }
}
.teamBooking{
    text-align: center;
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    border: solid 1px transparent;
    border-radius: 12px;
    position: relative;
    margin: 50px 0px;
    box-shadow: 0px 0px 12px 0px rgba(99, 181, 182, 0.8);
    padding: 20px 40px;
    font-size: 20px;
    color: #fff;
    font-weight: 400;
}
.teamBooking a{
    color: #fff;
}
.teamBooking::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(to right, #63B5B6 0%, #6288C0 23.75%, #916A86 47.5%, #CAB85C 71.25%, #69AD5B 95%);
    transition: 0.8s;
}
/* Demo Day Section End */
/* Ticket New Box Section Start*/
.ticketNewBox {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    background-clip: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 32px;
    transition: 0.5s;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    padding: 80px 15px;
    text-align: center;

}
.ticketNewBox::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(105.77deg, #FFFFFF 23.08%, rgba(255, 255, 255, 0.5) 96.03%);
    border: 0.5px solid;
    transition: 0.5s;
}
.ticketNewBox .mainHeading{
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 30px;
}
.ticketNewBox  .mainBox{
    display: inline-block;
    margin: 0 auto 30px 0;
    border-radius: 12px;
    padding: 20px 30px;
    border: solid 1px #fff;
    text-align: left;
    list-style: none;
}
.ticketNewBox  .mainBox li{
    display: inline-block;
    width: 100%;
    margin-bottom: 5px;
}
.ticketNewBox  .mainBox li:last-child{
    margin-bottom: 0px;
}
.ticketNewBox  .mainBox li .label,
.ticketNewBox  .mainBox li .output{
    font-size: 22px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #fff;
}
.ticketNewBox  .smallText{
    font-size: 28px;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin: 0px;
}
@media screen and (min-width: 1025px) and (max-width: 1300px){
    .ticketsInner {
        padding-top: 50px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
    .ticketsInner {
        padding-top: 30px;
    }
}
@media screen and (max-width: 767px) {
    .ticketsInner {
        padding-top: 20px;
    }
    .ticketNewBox {
        padding: 40px 15px;
    }
    .ticketNewBox .mainHeading {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .ticketNewBox .mainHeading img{
        height: 30px;
    }
    .ticketNewBox .mainBox {
        margin: 0 auto 20px 0;
        padding: 15px 20px;
        width: 100%;
    }
    .ticketNewBox .mainBox li .label, .ticketNewBox .mainBox li .output {
        font-size: 18px;
    }
    .ticketNewBox .smallText {
        font-size: 20px;
        line-height: 28px;
    }
}
/* Ticket New Box Section End*/
/* Activations Section Start */
.activationsSection .title {
    display: inline-block;
    width: 100%;
    padding: 15px 8px;
    border-radius: 12px;
    font-size: 26px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    background: linear-gradient(91.29deg, #63B5B6 -0.07%, #6288C0 24.97%, #916A86 50.01%, #CAB85C 75.05%, #69AD5B 100.09%);
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.activationsSection .title::after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.activationsSection .infoText {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #FFFFFF;
    margin: 10px 0px 20px 0px;
}

.activationsSection .activationsCard {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    padding: 30px 20px;
    background: #111111;
    border: 1px solid #454545;
    border-radius: 12px;
    flex-flow: column;
}

.activationsSection .activationsCard.activationsHeight {
    height: calc(100% - 155px);
}

.activationsCard .list {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.activationsCard .list:last-child {
    margin-bottom: 0px;
}

.activationsCard .list .topSection {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
}

.activationsCard .imgList {
    display: inline-block;
    width: 68%;
    margin: 0px -2px;
}

.activationsCard .imgList img {
    max-width: 140px;
    margin: 2px;
}

.activationsCard .list .registerLink {
    display: inline-block;
    width: 30%;
    text-align: right;
}

.activationsCard .registerLink .link {
    display: inline-block;
    font-size: 17px;
    font-weight: 400;
    color: #FFFFFF;
    text-decoration: inherit;
    position: relative;
    white-space: nowrap;
}

.activationsCard .registerLink .link::after {
    content: '';
    position: absolute;
    left: 0px;
    width: 100%;
    height: 1px;
    bottom: -3px;
    background: linear-gradient(270deg, #FFF42F 7.14%, #FFA232 29.06%, #F450B2 45.18%, #3FCBFF 70.08%, #D0D81D 95.87%);
}

.activationsCard .smallText {
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
    text-align: left;
    color: #FFFFFF;
}

.activationsCard .small-Text {
    font-size: 16px;
    line-height: 22px;
}

.activationsCard .IBWCard {
    display: flex;
    justify-content: center;
}

.activationsCard .IBWCard .imgList {
    width: auto;
    margin-top: 5px;
}

.activationsCard .IBWCard .smallText {
    width: 25%;
    line-height: 20px;
    margin-left: 15px;
}
@media screen and (min-width: 993px) and (max-width: 1350px) {
    .activationsSection .activationsCard.activationsHeight {
        height: calc(100% - 175px);
    }
    .activationsCard .IBWCard .smallText {
        width: 40%;
    }
    .activationsSection .title {
        font-size: 22px;
        line-height: 22px;
    }
    .activationsSection .infoText {
        font-size: 14px;
        line-height: 22px;
        margin: 0px 0px 10px  0px;
    }
    .activationsSection .activationsCard{
        padding: 20px 15px;
    }
    .activationsCard .smallText {
        font-size: 18px;
        line-height: 18px;
    }
    .activationsCard .small-Text {
        font-size: 14px;
        line-height: 20px;
    }
    .activationsCard .registerLink .link {
        font-size: 16px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .activationsSection .title {
        font-size: 22px;
        line-height: 22px;
    }
    .activationsCard .registerLink .link {
        font-size: 14px;
    }
    .activationsCard .IBWCard .smallText {
        width: 40%;
    }.activationsCard .imgList {
        width: 65%;
    }
    .activationsSection .title {
        font-size: 20px;
        line-height: 20px;
    }
    .activationsSection .infoText {
        font-size: 14px;
        line-height: 22px;
        margin: 0px 0px 10px  0px;
    }
    .activationsSection .activationsCard{
        padding: 20px 15px;
    }
    .activationsCard .smallText {
        font-size: 18px;
        line-height: 18px;
    }
    .activationsCard .small-Text {
        font-size: 14px;
        line-height: 20px;
    }
    .activationsCard .registerLink .link {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .activationsSection .activationsCard.activationsHeight {
        height: auto;
        margin-bottom: 15px;
    }
    .activationsSection .activationsCard{
        padding: 20px 15px;
    }
    .activationsSection .title {
        font-size: 20px;
        line-height: 20px;
    }
    .activationsCard .registerLink .link {
        font-size: 16px;
    }
    .activationsSection .infoText {
        font-size: 14px;
        line-height: 22px;
        margin: 10px  0px;
    }
    .activationsCard .smallText {
        font-size: 18px;
        line-height: 18px;
    }
    .activationsCard .small-Text {
        font-size: 16px;
        line-height: 22px;
    }
    .activationsCard .IBWCard {
        flex-flow: column;
    }
    .activationsCard .IBWCard .smallText {
        width: 100%;
        line-height: 20px;
        margin-left: 0px;
        margin-top: 10px;
    }
}
/* Activations Section End */
/* what the world is saying about IBW 2024! Start */
.ibwTwitter .mainTitle .themeTitle {
    font-size: 50px;
    line-height: 60px;
}

@media screen and (min-width: 1025px) and (max-width: 1300px) {
    .ibwTwitter .mainTitle .themeTitle {
        font-size: 40px;
        line-height: 42px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ibwTwitter .mainTitle .themeTitle {
        font-size: 34px;
        line-height: 38px;
    }
}

@media screen and (max-width: 767px) {
    .ibwTwitter .mainTitle .themeTitle {
        font-size: 24px;
        line-height: 28px;
    }
}

.ibwTwitterGrid {
    position: relative;
}

.ibwTwitterGrid::after,
.ibwTwitterGrid::before {
    content: '';
    position: absolute;
    top: 0px;
    width: 150px;
    height: 100%;
    z-index: 1;
}

.ibwTwitterGrid::after {
    right: 0px;
    background: linear-gradient(-90deg, rgb(17, 17, 17,0.8) 6.11%, rgba(17, 17, 17, 0) 98.01%);
}

.ibwTwitterGrid::before {
    left: 0px;
    background: linear-gradient(90deg, rgba(17, 17, 17,0.8) 6.11%, rgba(17, 17, 17, 0) 98.01%);

}

.ibwTwitterGrid .customCard {
    display: inline-block;
    width: 100%;
    border: solid 1px rgba(255, 255, 255, .5);
    border-radius: 10px;
    padding: 16px;
    background-color: #111;
    margin-bottom: 15px;
}

.ibwTwitterGrid .customCard:last-child {
    margin-bottom: 0px;
}

.ibwTwitterGrid .customCard a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    color: #fff;
}

.ibwTwitterGrid .customCard .userImg {
    overflow: hidden;
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
}

.ibwTwitterGrid .customCard .userImg img {
    width: 100%;
    height: 100%;
}

.ibwTwitterGrid .customCard .userDetails {
    text-align: left;
}

.customCard .userDetails .userName {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
}

.customCard .userDetails .userName.f18 {
    font-size: 18px;
    font-weight: 600;
}

.customCard .userDetails .userId {
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    color: #828282;
}

.customCard .smallText {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.customCard .image {
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    max-height: 310px;
}

.customCard .image img {
    min-width: 100%;
    max-width: 100%;
    max-height: 100%;
}

.customCard .bigText {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #f9f9f9;
    padding: 15px 0px;
    margin-bottom: 10px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.theme .customCard .btn-inner {
    padding: 5px 20px;
}

.ibwTwitterGrid .flex-nowrap {
    -webkit-animation: scroll 10s linear infinite;
    animation: scroll 10s linear infinite;
}
.ibwTwitterGrid .flex-nowrap:hover{
    animation-play-state: paused;
}
@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-150px * 7))}
}


@media screen and (max-width: 1024px) {
    .ibwTwitterGrid::after, .ibwTwitterGrid::before {
        width: 50px;
    }

    .ibwTwitterGrid .customCard {
        padding: 10px;
    }

    .customCard .bigText {
        font-size: 14px;
        line-height: 18px;
    }

    .customCard .userDetails .userName.f18 {
        font-size: 14px;
    }
}

/* what the world is saying about IBW 2024! End */
.themeBannerIBW2024 {
    border-radius: 24px;
    box-shadow: 0px 0px 150px 0px rgba(0, 0, 0, 0.81);
    background: url("/assets/images/2024/banner-pattern.png") #000;
    background-repeat: repeat;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
}
.themeBannerIBW2024:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: -webkit-linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.4) 100%
    );
    transition: 0.5s;
}
.themeBannerIBW2024 .videoPlayIBW2024 {
    width: 70%;
    margin: 0 auto;
}

.themeBannerIBW2024 .videoPlayIBW2024 video,
.themeBannerIBW2024 .videoPlayIBW2024 img {
    max-width: 100%;
    height: auto;
}

.themeBannerIBW2024 .bannerInfoIBW2024 {
    margin-top: -40px;
    text-align: center;
    padding-bottom: 60px;
}
