@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-color: #111111;
}

.theme .formCustom {
    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.4);
    background: linear-gradient(111.5deg, #262626 0%, #1A1A1A 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));

    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: 15px;
    line-height: normal;
    font-weight: 500;
    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: 2px;
    animation: rotation 5s linear 0s infinite normal forwards;
}

.theme .btn-inner {
    background: linear-gradient(180deg, #151313 0%, #1C1818 100%);
    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: 68px;
    font-weight: 600;
    line-height: 70px;
    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;
    display: inline-block;
}

.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: 54px;
        line-height: 54px;
    }

    .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: 30px;
        line-height: 30px;
    }

    .mainTitle {
        margin-bottom: 40px;
    }
}

.visitLinks {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.visitLinks .visit-link {
    background: linear-gradient(90deg, rgba(69, 69, 69, 0) 0%, rgba(69, 69, 69, 0.6) 100%);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    padding: 18px 35px;
    text-decoration: inherit;
    border-right: solid 1px #fff;
    transition: 0.5s;
    position: relative;

}

.visitLinks .visit-link span {
    position: relative;
    z-index: 1;
}

.visitLinks .visit-link::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(99, 181, 182, 0) 0%, rgba(98, 136, 192, 0.2) 25%, rgba(145, 106, 134, 0.4) 50%, rgba(202, 184, 92, 0.6) 75%, #69AD5B 100%);
    border-radius: inherit;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.visitLinks .visit-link:hover::after {
    opacity: 1;
}

.visitLinks .visit-link:last-child {
    border-right: 0px;
    background: linear-gradient(-90deg, rgba(69, 69, 69, 0) 0%, rgba(69, 69, 69, 0.6) 100%);
}

.visitLinks .visit-link:last-child::after {
    background: linear-gradient(-90deg, rgba(99, 181, 182, 0) 0%, rgba(98, 136, 192, 0.2) 25%, rgba(145, 106, 134, 0.4) 50%, rgba(202, 184, 92, 0.6) 75%, #69AD5B 100%);
}

@media screen and (max-width: 767px) {
    .visitLinks .visit-link {
        font-size: 14px;
        padding: 13px 20px;
    }
}

/* Header Css Start */

.themeHeader .navbar {
    width: 100%;
    z-index: 5;
    margin: 20px 0px;
    padding: 10px 25px;
    transition: 0.5s;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.7) 0%, rgba(20, 17, 17, 0.7) 100%);
    box-shadow: 9.001px 9.001px 77.149px 0px rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5.2px);
    position: absolute;
    left: 0px;
}

.themeHeader .container-lg {
    position: relative;
}

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

.themeHeader.fixed-header .navbar {
    margin-top: 15px;
    position: inherit;
}

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

.themeHeader .navbar-brand img {
    height: 40px;
}

.themeHeader .d-flex .btn {
    font-size: 16px;
}

.themeHeader .d-flex .btn .btn-inner {
    padding: 6px 25px;
}

.themeHeader .navbar-nav .nav-item {
    margin: 0px 3px;
}

.themeHeader .navbar-nav .nav-link,
.themeHeader .nav-item .dropdown-menu .dropdown-item {
    font-size: 14px;
    color: var(--whiteColor);
    font-weight: 500;
    transition: 0.5s;
    padding: 6px 25px;
    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/2025/new-down-icon-8a66d25bfd179db6126f0f4e42be8a34197c42bc88054859ae2325740dc94ab3.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    margin-left: 5px;
}

.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 (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: 65px;
        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: 10px 0px;
        border: 0px;
        position: inherit;
        border-radius: 0px;
    }

    .themeHeader.fixed-header .navbar {
        margin-top: 0px;
    }

    .themeHeader.fixed-header .navbar {
        padding: 12px 0px;
    }

    .themeHeader .navbar-brand img {
        height: 34px;
    }

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

    .themeHeader .nav-item .dropdown-menu li .dropdown-item {
        text-align: left;
    }
}

/* Header Css End */
/* banner Css Start */
.themeBanner {
    width: 100%;
    position: relative;
    height: 100svh;
}

.themeBanner::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-image: url(/assets/2025/banner-shadow-2ccae4a2ef8d0554c4d3e9a2696c710c770639c38ef6ccfbcc632a8f1e471e06.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.themeBanner video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
}

.themeBanner .banner-content {
    position: absolute;
    bottom: 180px;
    z-index: 2;
    width: 100%;
}

.themeBanner .banner-content .main-title {
    width: auto;
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.themeBanner .banner-content .edition {
    position: absolute;
    right: 0px;
    top: 15px;
    width: 50%;
    text-align: center;
}

.themeBanner .banner-content .edition .first-img {
    position: relative;
    z-index: 1;
}

.edition .border-shadow {
    position: absolute;
    bottom: -20px;
    overflow: hidden;
}

.edition .border-shadow .elipse-animation {
    position: absolute;
    animation-name: roll;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-delay: 1s;
}

@keyframes roll {

    /* Basic move left and right*/
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }

    0% {
        transform: translateX(0);
    }
}

.themeBanner .banner-content .main-title img {
    max-width: 100%;
    height: auto;
}

.themeBanner .banner-content .small-text {
    font-size: 30px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--whiteColor);
}

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

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

.countdown .innerCount:first-child {
    margin-left: 0px;
}

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

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

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

@media screen and (max-width: 1150px) {
    .countdown .innerCount .label {
        font-size: 16px;
    }

    .countdown .innerCount span {
        font-size: 30px;
        line-height: 34px;
    }

    .countdown .innerCount.dot {
        font-size: 30px;
    }
}

@media screen and (min-width:1081px) and (max-width: 1380px) {
    .themeBanner .banner-content .main-title {
        width: 450px;
    }
}

@media screen and (min-width:768px) and (max-width: 1080px) {
    .themeBanner .banner-content .main-title {
        width: 350px;
    }
}

@media screen and (min-width:768px) and (max-width: 1380px) {
    .themeBanner .banner-content {
        bottom: 70px;
    }

    .themeBanner .banner-content .small-text {
        font-size: 18px;
        line-height: 100%;
        margin-bottom: 0px;
    }

    .themeBanner .banner-content .edition {
        width: 50%;
        top: 3px;
    }

    .edition .border-shadow {
        bottom: -15px;
    }

    .countdown .innerCount span {
        font-size: 30px;
        line-height: 34px;
    }

    .countdown .innerCount.dot {
        font-size: 30px;
    }
}

@media screen and (max-width: 767px) {
    .themeBanner {
        height: 500px;
        position: relative;
    }

    .themeBanner::after {
        background-image: url(/assets/2025/banner-shadow-mobile-40a7dd0b0d1a69181c2b69a38f1204380f539775aed6bf00b56c489a8530d541.png);
        background-position: bottom center;
    }

    .themeBanner .banner-content {
        top: 0px;
        bottom: 0px;
        display: flex;
        align-items: flex-end;
        height: 100%;
    }

    .themeBanner .banner-content .col-lg-8 {
        text-align: center;
    }

    .themeBanner .banner-content .main-title {
        width: 250px;
        margin-bottom: 8px;
    }

    .themeBanner .banner-content .edition .first-img {
        height: 15px;
    }

    .themeBanner .banner-content {
        bottom: 60px;
    }

    .themeBanner .banner-content .small-text {
        font-size: 14px;
        line-height: 100%;
        margin-bottom: 35px;
        font-weight: 500;
    }

    .countdown {
        margin-bottom: -50px;
        padding: 15px 10px;
        width: 100%;
        border-radius: 12px;
        border: solid 1px #B1B1B1;
        justify-content: center;
        background-image: url(/assets/2025/count-bg-6ad755539f6d0377d7f0840d29fb9bb72fef1216efaea6b4c2090627a21260c0.png);
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        box-sizing: border-box;
        background-clip: padding-box !important;
    }

    .countdown:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        margin: -1px;
        border-radius: inherit;
        background: linear-gradient(0deg, rgba(188, 188, 188, 0) -25.86%, #F9F9F9 61.48%, #B1B1B1 89%);
        transition: 0.5s;
    }

    .countdown .innerCount span {
        font-size: 26px;
        line-height: 34px;
    }

    .countdown .innerCount.dot {
        font-size: 20px;
    }

    .countdown .innerCount .label {
        font-size: 12px;
    }

    .themeBanner .banner-content .edition {
        top: 0px;
    }

    .edition .border-shadow {
        bottom: -10px;
    }
}



/* banner Css End */
/* Ibw 2025 conference section start */
.ibw2025Conference {
    margin-top: -150px;
    position: relative;
    z-index: 1;
}

.ibw2025Conference .theme-card {
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box !important;
    border: solid 2px transparent;
    border-radius: 24px;
    background: linear-gradient(90deg, #141414 0%, #141111 100%);
    margin-bottom: 20px;
    box-shadow: 2px 8px 19px 0px rgba(0, 0, 0, 0.102);
}

.ibw2025Conference .theme-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(0deg, rgba(188, 188, 188, 0) -25.86%, #F9F9F9 61.48%, #B1B1B1 89%);
    transition: 0.5s;
}

.ibw2025Conference .theme-card .card-body {
    padding: 50px;
}

.ibw2025Conference .theme-card .left-side {
    text-align: center;
}

.ibw2025Conference .theme-card .left-side img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.ibw2025Conference .theme-card .left-side .date {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--whiteColor);
    position: relative;
}

.ibw2025Conference .theme-card .left-side .date span {
    background-color: #141414;
    padding: 0px 10px;
    position: relative;
    z-index: 2;
}

.ibw2025Conference .theme-card .left-side .date::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    margin: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
}

.ibw2025Conference .theme-card .left-side .small-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: var(--whiteColor);
}

.ibw2025Conference .theme-card .right-side .small-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #D2D2D2;
}

.ibw2025Conference .theme-card .right-side .formCustom .input-btn {
    display: flex;
    align-items: center;
}

.ibw2025Conference .thankyou{
    font-size: 20px;
    color: #fff;
    margin-top: 45px;
}

.ibw2025Conference .thankyou .link{
    color: #fff;
}

.indiaBlockchain .videoCard {
    display: inline-block;
    width: 100%;
    border-radius: 24px;
    background: #1e1e1e;
    border: 1px solid #777;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.251);
    overflow: hidden;
}

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

.indiaBlockchain .card {
    border-radius: 24px;
    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;
    text-align: center;
}

.indiaBlockchain .card .card-body .infoText strong {
    font-weight: 600;
}

@media screen and (min-width: 768px) and (max-width: 1380px) {
    .ibw2025Conference {
        margin-top: -50px;
    }

    .ibw2025Conference .theme-card .card-body,
    .indiaBlockchain .card .card-body {
        padding: 40px 20px;
    }

    .ibw2025Conference .theme-card .right-side .small-text,
    .indiaBlockchain .card .card-body .infoText {
        font-size: 16px;
        line-height: 28px;
    }

    .ibw2025Conference .theme-card .left-side img {
        height: 80px;
    }

    .ibw2025Conference .theme-card .right-side .small-text,
    .ibw2025Conference .theme-card .left-side .date,
    .ibw2025Conference .theme-card .left-side .small-text {
        font-size: 16px;
    }

    .theme .ibw2025Conference .theme-card .right-side .btn-inner {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 992px) {
    .indiaBlockchain .card {
        height: auto;
        margin-top: 20px;
    }

    .ibw2025Conference .theme-card .right-side .small-text {
        font-size: 14px;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .ibw2025Conference {
        margin-top: 65px;
    }

    .ibw2025Conference .theme-card .card-body {
        padding: 30px 15px;
    }

    .ibw2025Conference .theme-card .left-side img {
        height: 70px;
    }

    .ibw2025Conference .theme-card .left-side .date,
    .ibw2025Conference .theme-card .left-side .small-text {
        font-size: 16px;
    }

    .indiaBlockchain .videoCard,
    .ibw2025Conference .theme-card {
        border-radius: 12px;
    }

    .indiaBlockchain .card {
        border-radius: 12px;
        margin-top: 20px;
        height: auto;
    }

    .indiaBlockchain .card .card-body {
        padding: 30px 15px;
    }

    .ibw2025Conference .theme-card .right-side .formCustom .input-btn {
        margin-top: 10px;
        justify-content: center;
    }

    .theme .ibw2025Conference .theme-card .right-side .btn-inner {
        padding: 6px 12px;
    }

    .indiaBlockchain .card .card-body .infoText {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 400px) {
    .theme .ibw2025Conference .theme-card .right-side .btn-inner {
        font-size: 14px;
    }
}

/* Ibw 2025 conference section end */

/* ibw Conference Section Css End */
.ibwConference .card {
    border-radius: 24px;
    position: relative;
    box-sizing: border-box;
    background-clip: padding-box !important;
    background: linear-gradient(90deg, #141414 0%, #141111 100%);
    box-shadow: 2px 8px 19px 0px rgba(0, 0, 0, 0.102);
}

.ibwConference .card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(0deg, rgba(188, 188, 188, 0) -25.86%, #F9F9F9 61.48%, #B1B1B1 89%);
    transition: 0.5s;
}

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

.ibwConference .card .card-body .infoText {
    font-weight: 300;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #E3E3E3;
    margin-bottom: 10px;
}

.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: 14px;
        line-height: 22px;
        margin-bottom: 15px;
    }
}

/* ibw Conference Section Css 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;
}

.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 .speakersImg {
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px rgba(255, 255, 255, .05);
    height: 260px;
}
.speakersSlider .speakersImg a{
    display: block;
    width: 100%;
    height: 100%;
}
.speakersSlider .speakersImg::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0px;
    margin: auto;
    width: 160px;
    height: 160px;
    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 {
    max-height: 100%;
    z-index: 1;
    position: relative;
    object-fit: cover;
    margin: auto;
}


.speakersSlider .card:hover .speakersImg::after {
    opacity: 0.8;
}

.speakersSliderInner .speakersSlider .card {
    margin: 10px 0px;
    height: calc(100% - 20px);
}

.speakersSlider .card .speakersDetails {
    padding: 15px 10px;
    width: 100%;
}

.speakersDetails .name {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: left;
    text-transform: uppercase;
    color: var(--whiteColor);
    margin-bottom: 0px;
}

.speakersDetails .info {
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.02em;
    text-align: left;
    color: var(--whiteColor);
    margin: 4px 0px;
}

.speakersSlider .socialIcons {
    display: flex;
    width: 100%;
    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%;
}

@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) {
    .speakersSlider .card {
        margin: 2px 10px;
    }

    .speakersDetails .name {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 0px;
    }

    .speakersDetails .info {
        font-size: 14px;
    }
    .speakersSlider .speakersImg {
        height: 200px;
    }
}

/* Speakers Section Css Start */

/*  Recap of IBW 2024 Section Start */
.ibw2024 .cardTheme {
    position: relative;
    box-sizing: border-box;
    background: #222222;
    background-clip: padding-box;
    border: solid 2px transparent;
    border-radius: 14px;
    transition: 0.5s;
}

.ibw2024 .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;
}

.ibw2024 .cardTheme .images {
    border-radius: 14px;
    overflow: hidden;
    height: 280px;
}

.ibw2024 .cardTheme .images::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 34, 34, 1) 0%, rgba(34, 34, 34, 1) 20%, rgba(34, 34, 34, 0) 100%);
    border-radius: 14px;
}

.ibw2024 .cardTheme .images img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    filter: #000;
    -webkit-filter: grayscale(1);
    object-fit: cover;
}

.ibw2024 .cardTheme .infoText {
    padding: 30px;
    position: absolute;
    width: 100%;
    z-index: 2;
}

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

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

.ibw2024 .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;
}

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

.ibw2024 .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;
}

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

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

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

.ibw2024 .cardTheme:hover .card-body::after {
    opacity: 0.5;
}

.ibw2024 .cardTheme:hover .images img {
    filter: none;
    -webkit-filter: grayscale(0);
}

.ibw2024 .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) {
    .ibw2024 .cardTheme .infoText {
        padding: 30px 20px;
    }

    .ibw2024 .cardTheme .count {
        font-size: 40px;
        line-height: 45px;
    }

    .ibw2024 .cardTheme .smallText {
        font-size: 16px;
        line-height: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .ibw2024 .cardTheme {
        margin-bottom: 20px;
    }

    .ibw2024 .cardTheme .card-body {
        padding: 30px 20px;
    }

    .ibw2024 .cardTheme .count {
        font-size: 50px;
        line-height: 50px;
    }

    .ibw2024 .cardTheme .smallText {
        margin-bottom: 10px;
    }

    .ibw2024 .cardTheme .images {
        height: 220px;
    }
}

@media screen and (max-width: 767px) {
    .ibw2024 .cardTheme {
        margin-bottom: 20px;
    }

    .ibw2024 .cardTheme .infoText {
        padding: 20px 15px;
    }

    .ibw2024 .cardTheme .count {
        font-size: 40px;
        line-height: 45px;
    }

    .ibw2024 .cardTheme .smallText {
        font-size: 16px;
        line-height: 20px;
    }

    .ibw2024 .cardTheme .images {
        height: 180px;
    }
}

/*  Recap of IBW 2024 Section End */
/* IBW 2024 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: 0px;
    z-index: -1;
}

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

.highlightSection .highlightMain .title {
    font-size: 140px;
    line-height: 130px;
    font-style: normal;
    font-weight: 600;
    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: 90px;
        line-height: 90px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .highlightSection .highlightMain {
        top: 0px;
    }

    .highlightSection .highlightMain .title {
        font-size: 80px;
        line-height: 80px;
    }
}

@media screen and (max-width: 767px) {
    .highlightSection .highlightMain {
        top: 0px;
    }

    .highlightSection .highlightMain .title {
        font-size: 70px;
        line-height: 70px;
    }

    .highlightSection .revistBtn {
        margin-top: 20px;
    }

    .highlightSection .highlightMain::before {
        display: none;
    }
}

/* IBW 2024 HIGHLIGHTs Section End */
/* IBW2024 Overview  Section Start */
.ibw2024-overview {
    position: relative;
}

.ibw2024-overview::after {
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 150px;
    bottom: 0px;
    width: auto;
    height: 100%;
    background-repeat: no-repeat;
    background-image: url(/assets/2025/overview-banner-e4d03c87c64f5db214db6d867480d1d34bb20ea55961f8ff55bd697bb369f115.svg);
}

.ibw2024-overview .cardTheme {
    border-radius: 24px;
    background: #1D1D1D;
    box-sizing: border-box;
    background-clip: padding-box;
    border: solid 1px transparent;
    transition: 0.5s;
    position: relative;
    margin: 10px 0px;
    height: calc(100% - 20px);
}

.ibw2024-overview .cardTheme: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;
}

.ibw2024-overview .first-card .cardTheme .card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 100%;
}

.ibw2024-overview .first-card .count {
    font-weight: 600;
    font-size: 50px;
    line-height: 120%;
    letter-spacing: 0%;
}

.ibw2024-overview .first-card .small-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--whiteColor);
}

.ibw2024-overview .cardTheme::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(/assets/2025/new-shadow-1-1d405239bd305fe579787483fbd7f0d3e4a87775d6a1a8cb5ca60d8bb98963c5.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    transition: 0.5s;
    filter: blur(2px);
    opacity: 0;
}

.ibw2024-overview .first-card .cardTheme::after {
    background-image: url(/assets/2025/new-shadow-1-1d405239bd305fe579787483fbd7f0d3e4a87775d6a1a8cb5ca60d8bb98963c5.svg);
}

.ibw2024-overview .sec-card .cardTheme::after {
    background-image: url(/assets/2025/new-shadow-2-3039587b7514367b5301f5d22925eb97aa68e125519bf96146d21517775fa373.svg);
}

.ibw2024-overview .thired-card .cardTheme::after {
    background-image: url(/assets/2025/new-shadow-3-d1835ceabb9c77ed725146675162432d01f2b0df102a48f7c37e97c371c8bd1b.svg);
}

.ibw2024-overview .four-card .cardTheme::after {
    background-image: url(/assets/2025/new-shadow-4-b9ec7620abff9d3d78b685eaa3b9056c7f39233004c28296acec17f71240965e.svg);
}

.ibw2024-overview .cardTheme:hover {
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 1);
}

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

.ibw2024-overview .cardTheme:hover::after {
    opacity: 1;
}

.ibw2024-overview .cardTheme .mainTitle .themeTitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 18px;
    color: #FFFFFF;
    background: transparent;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    display: inline-block;
    width: auto;
}

.ibw2024-overview .cardTheme .card-body {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.ibw2024-overview .cardTheme .mainTitle {
    margin-bottom: 40px;
}

.ibw2024-overview .cardTheme ul {
    display: flex;
    width: 100%;
    margin: 0px;
    padding: 0px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ibw2024-overview .cardTheme ul li {
    display: inline-block;
    width: auto;
}

.ibw2024-overview .cardTheme ul li img {
    max-width: 100%;
    filter: #000;
    -webkit-filter: grayscale(1);
    transition: 0.5s;
}

.ibw2024-overview .cardTheme:hover ul li img,
.ibw2024-overview .five-card .cardTheme ul li img {
    filter: inherit;
}

@media (min-width: 992px) {
    .first-card {
        height: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .ibw2024-overview .cardTheme {
        border-radius: 18px;
    }

    .ibw2024-overview .cardTheme .card-body {
        padding: 40px 15px;
    }
}

@media screen and (min-width: 767px) and (max-width: 1350px) {
    .ibw2024-overview .first-card .count {
        font-size: 38px;
    }

    .ibw2024-overview .first-card .small-text {
        font-size: 16px;
    }

    .ibw2024-overview .cardTheme .card-body {
        position: relative;
        z-index: 1;
        padding: 40px 0px;
    }

}

@media screen and (max-width: 767px) {
    .ibw2024-overview .cardTheme .card-body {
        padding: 25px 15px;
    }

    .ibw2024-overview .cardTheme .mainTitle {
        margin-bottom: 22px;
    }

    .ibw2024-overview .first-card .count {
        font-size: 34px;
    }

    .ibw2024-overview .first-card .small-text {
        font-size: 14px;
    }

    .ibw2024-overview .cardTheme ul li img {
        height: 35px;
    }

    .ibw2024-overview .cardTheme .mainTitle .themeTitle {
        font-size: 18px;
    }

    .ibw2024-overview .sec-card .cardTheme ul li img,
    .ibw2024-overview .thired-card .cardTheme ul li img {
        height: 30px;
    }
}

/* IBW2024 Overview  Section End */
/* PAST Sponsors Section Start */
.past-sponsors .brandImg {
    display: flex;
    width: 100%;
    border-radius: 8px;
    background: rgba(109, 109, 109, 0.1);
    margin: 10px 0px;
    height: calc(100% - 20px);
    padding: 0px;
    text-align: center;
    justify-content: center;
    align-content: center;
}

.past-sponsors .brandImg img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* PAST Sponsors Section End */

/* Apply For IBW2025 Section Start */
.ibw2025 .card {
    position: relative;
    box-sizing: border-box;
    background: #111111;
    background-clip: padding-box;
    border: solid 1px transparent;
    border-radius: 20px;
    transition: 0.5s;
    border-radius: 20px;
    height: calc(100% - 20px);
    margin: 10px 0px;
    transition: 0.5s;
}

.ibw2025 .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(90deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 1) 100%);
    transition: 0.5s;
}


.ibw2025 .card .carImg {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

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

.ibw2025 .card .carImg .cardInfo {
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 1;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.03) 0%, rgba(20, 17, 17, 0.5) 100%);
    backdrop-filter: blur(5px);
}

.ibw2025 .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;
}

.ibw2025 .card .smallText {
    color: var(--whiteColor);
    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;
}

.theme .ibw2025 .card .btn-inner {
    background: linear-gradient(180deg, #4F453E 0%, #504541 100%);
}

@media screen and (min-width: 767px) and (max-width: 1024px) {
    .ibw2025 .card .smallText {
        max-width: 100%;
        min-height: 80px;
        margin-bottom: 0px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .ibw2025 .card .title {
        font-size: 26px;
    }

    .ibw2025 .card .carImg,
    .ibw2025 .card {
        border-radius: 14px;
    }
}

/* Apply For IBW2025 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 .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/2025/left-icon-f0ea12be46ec85d187abebea76afcedfc98e4a1c2e421443b7807c975f31aab7.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;
}

.faqSection .accordion .accordion-button:not(.collapsed) .icon {
    transform: rotate(-180deg);
}

.faqSection .accordion .accordion-button::after {
    display: none;
}

.faqSection .accordion .accordion-body {
    padding: 15px 0px;
}

.faqSection .accordion .accordion-body .smallText {
    color: #e3e3e3;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.8px;
    margin-bottom: 15px;
}

.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 */

/* 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/2025/footer-logo-232cacb6c83c06454b01c0b4a08ee9c8b96c83e96f94b9dc666a3a78f81cf768.png);
    width: 707px;
    height: 500px;
    bottom: -220px;
    background-size: cover;
    margin: 0 auto;
    background-position: center;
}

.theme .themeFooter .formCustom {
    display: flex;
    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: 22px;
    /* 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: 50px;
    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;
    }


    .themeFooter .infoText {
        margin-top: 30px;
    }
}

/* Footer Section End */
/* social right fixed Section */
.social-side {
    position: fixed;
    bottom: 40px;
    z-index: 5;
    right: 0px;
}

.social-side-inner {
    position: relative;
    background-color: #111111;
    border-radius: 8px 0px 0px 8px;
    box-sizing: border-box;
    background-clip: padding-box;
    display: flex;
    flex-flow: column;
    padding: 8px;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.251);
}

.social-side .social-side-inner:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -1px;
    border-radius: inherit;
    background: linear-gradient(90deg, #63B5B6 0%, #6288C0 23.75%, #916A86 47.5%, #CAB85C 71.25%, #69AD5B 95%);
    transition: 0.5s;
}

.social-side .more-social {
    background-color: transparent;
    border: 0px;
    padding: 0;
    transition: 0.5s;
}

.social-side .more-social.active {
    opacity: 0.5;
}

.social-show {
    display: inline-block;
    width: 100%;
    margin: 0px;
    padding: 0px;
    list-style: none;
    transition: 0.5s;
}

.social-show li {
    padding: 5px 0px;
    text-align: center;
}

/* social right fixed Section */
