﻿@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

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

:root {
    --color-primary: #666666;
    --color-secondary: #00100B;
    --color-white: #fff;
    --color-black: #111111;
    --color-black-2: #000000;
    --color-bg: #00000078;
    --color-primary-bg: #36A3E8;
    --color-border: #D9D9D933;
    --color-para: #D7D7D7;
    --color-purple: #842AEF;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: Anton;
}

p {
    font-family: Inter;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

ul,
li {
    list-style: none;
}

body {
    overflow-x: hidden;
}

.post,
.page {
    margin: 0px;
}

/* common-btn  */

.common-btn {
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, var(--color-purple) 100%);
    width: auto;
    height: 55px;
    padding-left: 28px;
    padding-right: 28px;
    border-radius: 70px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 42px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: var(--color-white) !important;
    position: relative;
    z-index: 1;
    border: none;
    transition: background 0.4s ease, box-shadow 0.3s ease;
}

.common-btn:hover {
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-primary-bg) 100%);
    box-shadow: 0 8px 15px rgba(128, 0, 255, 0.3);
}

.white-btn {
    background: var(--color-white);
    color: var(--color-black) !important;
    border: none;
}

.white-btn::before {
    display: none;
}

.white-btn:hover {
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, var(--color-purple) 100%) !important;
    box-shadow: 0 8px 15px rgba(128, 0, 255, 0.3);
    color: var(--color-white) !important;
}

.white-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(140deg) brightness(104%) contrast(101%);
}


.white-btn img {
    filter: brightness(0) saturate(100%)
}

.common-btn img {
    width: 13px !important;
    height: 13px;
    margin-left: 11px;
}

/* .common-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, var(--color-purple) 100%);
    border-radius: 70px;
    -webkit-mask:
        linear-gradient(var(--color-white) 0 0) content-box,
        linear-gradient(var(--color-white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
} */

.common-btn br {
    display: none;
}

/* common-hero  */
.common-hero .iner-img-back {
    background-color: var(--color-bg);
    padding-top: 312px;
    padding-bottom: 227px;
}

.common-hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.common-hero::before {
    content: "";
    position: absolute;
    width: 87px;
    height: 90px;
    background-image: url(../images/shape-hero.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 30%;
    left: -10px;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 87px;
    height: 90px;
    background-image: url(../images/shape-hero1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 20%;
    left: -10px;
}

.common-hero h2 {
    font-family: Anton;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    color: var(--color-white);
    vertical-align: middle;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

/* navbar  */
.navbar-toggler {
    color: var(--color-white);
    background-color: var(--color-white);
}

.navbar-collapse.show {
    width: 100%;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 10px;

}

.navbar-collapse.show .nav-link {
    color: var(--color-black-2) !important;
}

.navbar .navbar-collapse.show {
    border-bottom: none;
}

.navbar {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid var(--color-border);
}

.navbar-brand img {
    width: 195px;
    height: 101px;
}

.nav-link {
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-white) !important;
    position: relative;
}

.current-menu-item .nav-link::before,
.nav-link:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    width: 20px;
    background-color: var(--color-primary-bg);
    transition: height 0.3s ease;
    z-index: 1;
    transform: translateX(-50%);
}

#menu-footermenu .current-menu-item .nav-link::before,
#menu-footermenu .nav-link:hover::before {
    display: none;
}

.navbar-expand-lg .navbar-nav {
    gap: 60px;
}

.nav-link:focus,
.nav-link:hover {
    color: var(--color-primary-bg) !important;
}

ul.navbar-nav.ms-auto.mb-2.mb-lg-0 {
    margin-right: 60px;
}

.navbar-nav .current-menu-item .nav-link,
.navbar-nav .nav-link.show {
    color: var(--color-primary-bg) !important;
}

/* hero  */
.iner-img-back {
    background-color: var(--color-bg);
    padding-top: 295px;
    padding-bottom: 205px;
}

.hero-section {
    position: relative;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-section h2 {
    font-weight: 400;
    font-size: 110px;
    line-height: 156%;
    text-align: center;
    vertical-align: middle;
    font-variant: small-caps;
    margin-top: 0px;
    margin-bottom: 0px;
    color: var(--color-white);
    position: relative;
}

.hero-section h3 {
    font-weight: 400;
    font-size: 66px;
    line-height: 156%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    font-variant: small-caps;
    color: var(--color-white);
    margin-top: 0px;
    margin-bottom: 20px;
}

.hero-section p {
    font-family: Inter;
    font-weight: 500;
    font-size: 31px;
    line-height: 170%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--color-white);
    margin-top: 0px;
    margin-bottom: 41px;
}

.hero-section .border {
    border: 1px solid var(--color-white) !important;
    margin-bottom: 34px;
    width: 266px;
    margin: auto;
    margin-bottom: 44px;
}

.hero-section .content-wrap {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.hero-section .content-wrap p {
    max-width: 1191px;
    margin-bottom: 0px;
}

/* about  */
.about-section {
    padding-top: 130px;
    padding-bottom: 310px;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 142px;
    background-image: url(../images/shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 34px;
    top: 321px;
}


.about-section h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 25px;
    text-align: center;
}

.about-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-primary);
    text-align: center;
    margin: auto;
    margin-top: 0px;
    margin-bottom: 25px;
    max-width: 1276px;
}

.about-section p:last-child {
    margin-bottom: 50px;
}

/* milestone  */
.milestone {
    background-color: var(--color-secondary);
    padding-bottom: 94px;
    padding-top: 600px;
    position: relative;
    z-index: -1;
}

.milestone::before {
    position: absolute;
    content: url(../images/shape1.png);
    bottom: -6px;
}

.mile-images {
    margin-bottom: -853px;
}

.mile2-img {
    margin-top: 130px;
    margin-left: 40px;
}

.milestone-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1282px;
    margin: auto;
    gap: 72px;
}

.milestone-box img {
    margin: auto;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: 0px;
    margin-bottom: 33px;
}

.milestone-box h5 {
    color: var(--color-white);
    font-weight: 400;
    font-size: 28px;
    line-height: 36.4px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 16px;
}

.milestone-box p {
    color: var(--color-white);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* event  */
.our-event {
    padding: 130px 0px;
    position: relative;
}


.our-event::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 142px;
    background-image: url(../images/shape2.png);
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 69px;
}

.our-event h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-black);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
}

.our-event .event-box {
    position: relative;
    background-image: url(../images/event-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.our-event .event-box .content {
    padding: 345px 50px 50px 50px;
}

.our-event .event-box h2 {
    color: var(--color-white);
    text-align: left;
    margin-top: 0px;
    margin-bottom: 12px;
}

.our-event .event-box h6 {
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-para);
    margin-top: 0px;
    margin-bottom: 35px;
}

.our-event .event-box .content-wrap {
    display: flex;
    justify-content: space-between;
}

.our-event .event-box p {
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: var(--color-white);
    max-width: 1052px;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* attend  */
.why-attend {
    padding: 100px 0px;
    background-color: var(--color-secondary);
    position: relative;
}

.why-attend::before {
    bottom: -6px;
    content: "";
    position: absolute;
    width: 113px;
    height: 137px;
    background-image: url(../images/shape1.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.why-attend h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 25px;
    text-align:center;
}

.why-attend p {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-para);
    margin-top: 0px;
    margin-bottom: 0px;
    text-align:center;
}

.why-attend ul {
    padding-left: 0px;
    margin-left: 0px;
}
.why-attend .row{
    margin-top:50px;
}
.why-attend ul li {
    /*display: flex;*/
    align-items: center;
    margin-bottom: 20px;
    color:#fff;
    list-style:disc;
    margin-left:60px;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: var(--color-para);
    margin-top: 0px;
    margin-bottom: 25px;
}
.why-attend ul{
        margin-bottom:20px !important;
    }
.why-attend-list{
    display:flex;
    align-items:center;
    margin-bottom:10px;
}
.why-attend-list p{
    font-weight:700;
    text-align:left;
}
.why-attend ul li span {
    font-size: 18px;
    color: var(--color-white);
}

.why-attend ul li p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-para);
    margin-top: 0px;
    margin-bottom: 0px;
}

.why-attend ul li:last-child {
    margin-bottom: 0px;
}

.why-attend img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.key-themes .why-box {
    margin-left: 30px;
}

/* Key Themes & Disciplines  */
.key-themes {
    padding-top: 130px;
    padding-bottom: 177px;
}

.key-themes h2 {
    font-family: Anton;
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 25px;
}

.key-themes p {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: var(--color-primary);
    margin-top: 0px;
    margin-bottom: 30px;
}

.key-themes ul {
    padding-left: 0px;
    margin-left: 0px;
}

.key-themes ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.key-themes ul li img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.key-themes ul li p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #505559;
    margin-top: 0px;
    margin-bottom: 0px;
}

.key-themes ul li p strong {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
}

/* sponsor  */
.sponsor {
    background: var(--color-white);
    padding: 80px 0px;
}

.sponsor h2 {
    font-family: Anton;
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-black);
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 30px;
}

.sponsor p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-primary);
    text-align: center;
    margin-top: 0px;
    margin-bottom: 25px;
}

.sponsor .last-para {
    margin-bottom: 60px;
}

.sponsor p span {
    font-weight: 700;
    /* background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: var(--color-purple);
}

.sponsor p strong a {
    font-weight: 700;
    color: var(--color-purple);
}

.sponsor p strong a:hover {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

span.gradient-text,
.gradient-text {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* footer  */
.footer-section {
    background: var(--color-black-2);
    padding-top: 73px;
}

.footer-section h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 84px;
    line-height: 110px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 50px;
    color: var(--color-white);
}

.footer-section h2 span {
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary-bg);
}

.footer-section .content-wrap-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-section button {
    margin-bottom: 54px;
}

.footer-section .logo-img {
    width: 195px;
    height: 101px;
    position: relative;
    display: inline-block;
    margin: 0 20px;
    margin-bottom: 45px;
}

.footer-section .logo-img::before,
.footer-section .logo-img::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 451px;
    height: 3px;
    transform: translateY(-50%);
    z-index: 0;
}

.footer-section .logo-img::before {
    left: -540px;
    background: linear-gradient(270deg, var(--color-primary-bg) 0%, rgba(132, 42, 239, 0) 100%);
}

.footer-section .logo-img::after {
    right: -540px;
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, rgba(132, 42, 239, 0) 100%);
}

.footer-navbar {
    display: flex;
    gap: 90px;
    list-style: none;
}

.footer-navbar li a {
    font-family: Inter;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: var(--color-white);
    margin-top: 0px;
    margin-bottom: 67px;
}

.footer-section .border {
    border: 1px solid #FBFBFB !important;
    margin-bottom: 25px;
    opacity: 20%;
}

.footer-section h3 {
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: var(--color-white);
    text-align: center;
    margin-top: 0px;
    padding-bottom: 25px;
}

/* table  */
tr.table-head th:first-child {
    text-align: left;
}

tr.table-head th {
    background: #842AEF1F;
    font-family: Anton;
    font-weight: 400;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    padding: 17px 30px 17px 30px;
    text-align: center;
}

tr.table-row th {
    padding: 22px 30px 22px 30px;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: var(--color-primary);
    border-bottom: 0px;
    border-right: 1px solid #D9D9D9;
}

tr.table-row td {
    padding: 22px 30px 22px 30px;
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    color: var(--color-primary);
    border-bottom: 0px;
    border-right: 1px solid #D9D9D9;
    text-align: center;
}

table {
    table-layout: fixed;
    width: 100%;
}

.table-row th,
.table-row td {
    width: 50%;
    vertical-align: top;
    word-wrap: break-word;
}

.table-row th p,
.table-row td p {
    word-break: break-word;
}

tr.table-row td img {
    width: 28px;
    height: 28px;
}

tr.table-row td:last-child {
    border-right: none;
}

.table-striped>tbody>tr:nth-of-type(even)>* {
    --bs-table-color-type: var(--color-primary);
    --bs-table-bg-type: #842AEF05;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-color-type: var(--color-primary);
    --bs-table-bg-type: var(--color-white);
}

tr.table-btn-row th {
    border: none;
}

tr.table-btn-row td {
    border: none;
    text-align: center;
}

tr.table-btn-row .common-btn {
    width: 266px;
    height: 70px;
    font-family: Inter;
    font-weight: 700;
    font-size: 23px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

/* about-us  */

.about-company {
    padding: 130px 0px;
    position: relative;
}

.about-company::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 142px;
    background-image: url(../images/shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 17px;
    bottom: 184px;
}

.about-company img {
    width: 100%;
}

.about-company h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-top: 0px;
    margin-bottom: 25px;
}

.about-company p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: var(--color-primary);
    margin-top: 0px;
    margin-bottom: 20px;
}

.about-company h3 {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-top: 0px;
    margin-bottom: 20px;
}

.about-company p:nth-of-type(2) {
    margin-bottom: 20px;
}

.about-company p:last-child {
    margin-bottom: 0px;
}

/* about-milestone  */
.black-bg {
    background-color: #000000CC;
}

.about-milestone .black-bg {
    padding: 92px 0px;
}

.about-milestone {
    position: relative;
    background-image: url('./images/milestone.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-milestone::before {
    position: absolute;
    content: url(../images/shape1.png);
    bottom: -6px;
}

.about-milestone .milestone-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1282px;
    margin: auto;
    gap: 72px;
}

.about-milestone .milestone-box img {
    margin: auto;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: 0px;
    margin-bottom: 33px;
}

.about-milestone .milestone-box h5 {
    color: var(--color-white);
    font-weight: 400;
    font-size: 28px;
    line-height: 36.4px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 16px;
}

.about-milestone .milestone-box p {
    color: var(--color-white);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

/* team  */
.team {
    padding: 130px 0px;
    position: relative;
}

.team::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 142px;
    background-image: url(../images/team-shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 56px;
    bottom: 30px;
}

.team .row {
    row-gap: 50px;
    margin-bottom: 50px;
}

.team h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-black);
    text-transform: uppercase;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 20px;
}

.team p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 50px;
}

.team-box {
    background-color: #fff;
    height: 100%;
    position: relative;
}

.team-box img {
    width: 100%;
    margin-bottom: 19px;
}

.speaker {
    position: absolute;
    bottom: 100px;
    right: 33px;
    background: #FFFFFF;
    display: flex;
    gap: 3px;
    padding: 12px 19px 12px 20px;
    border-radius: 942px;
    align-items: center;
}

.speaker img {
    width: 38px;
    height: 38px;
    margin-bottom: 0px;
}

.speaker h3 {
    font-family: Inter;
    font-weight: 400;
    font-size: 21.2px;
    line-height: 27.56px;
    color: var(--color-secondary);
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

.team-box h5 {
    font-weight: 400;
    font-size: 22px;
    line-height: 33.92px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-top: 0px;
    margin-bottom: 10px;
}

.team-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #666666;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: left;
}

.team-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* event-detail  */
.event-detail {
    padding: 130px 0px;
}

.event-detail h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 24px;
}

.event-detail p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 0px;
    margin-bottom: 49px;
}

.event-detail img {
    width: 100%;
    /* border: 1px solid #000000; */
}

.event-detail .event-box {
    background-color: #1076580D;
    padding: 22px 35px;
}

.event-detail .event-box h5 {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 16px;
}

.event-detail .event-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 0px;
    margin-bottom: 15px;
}

.event-detail .event-box p:last-child {
    margin-bottom: 0px;
}

/* .event-detail .event-box button {
    margin-top: 15px;
} */

.event-detail .event-box button img {
    width: 13px;
    height: 13px;
    margin-left: 11px;
}

.event-detail .event-box p span {
    font-weight: 600;
    color: #111111;
}

.event-detail .event-box p strong {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-detail .event-box.box1 {
    margin-bottom: 30px;
}

.event-sponsor {
    padding: 100px 0px;
    background-color: #1076580D;
}

.event-sponsor h2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 10px;
}

.event-sponsor p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 0px;
}

.event-sponsor p span {
    font-weight: 700;
    color: #842AEF;
}

.event-sponsor p span:hover {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.black-text {
    color: #000000 !important;
    font-weight: 600 !important;
}

.event-sponsor .p1 {
    margin-bottom: 25px;
}

.event-sponsor .p2 {
    margin-bottom: 45px;
}

.event-sponsor :is(button, a) {
    margin-bottom: 50px;
}

.event-sponsor h5 {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #111111;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 15px;
}

.event-sponsor .p3 {
    margin-bottom: 12px;
}

.event-sponsor .p4 {
    margin-bottom: 30px;
}

.event-sponsor .p5 {
    margin-bottom: 45px;
}

.event-table {
    margin-bottom: 59px;
}

.event-table th div div {
    margin-bottom: 0px;
    text-align: center;
}

.event-table th.event-row {
    text-align: center;
}

.table-row p {
    margin: 0 !important;
}

.table-row th,
.table-row td {
    vertical-align: baseline;
}

.event-table .table-row .gradient-text {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 35px;
}

.event-table tr.table-head th:first-child {
    text-align: center;
}

.contact-box {
    background-color: #FFFFFF;
    padding: 61px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    height: 100%;
}

.contact-box .contact-img {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    padding: 20px;
    border-radius: 100%;
    margin-bottom: 36px;
}

.contact-form-inner {
    margin-left: 30px;
}

.contact-box img {
    width: 33px;
    height: 33px;
}

.contact-box .phone {
    width: 33px;
    height: 33px;
}

.contact-box h6 {
    font-family: Inter;
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #000000;
    text-transform: capitalize;
    margin-top: 0px;
    margin-bottom: 20px;
}

.contact-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
    max-width: 288px;
}

.contact-location {
    padding: 130px 0px;
}

.contact-location .contact-box {
    background-color: #1076580D;
    margin-top: 0px;
    transition: box-shadow 0.3s ease;
}

/* 
.contact-location .contact-box:hover {
    box-shadow: 0 8px 15px rgb(114 30 255 / 8%);
} */

.contact-location .contact-box .contact-img {
    padding: 20px;
    border-radius: 100%;
    margin-bottom: 36px;
}

.contact-location .contact-box h6 {
    font-family: Anton;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #111111;
    text-transform: uppercase;
}

.contact-form {
    padding: 130px 0px;
    padding-top: 130px;
    position: relative;
}

.contact-form .contact-form-box {
    padding: 30px;
    box-shadow: 0px 4px 44px 0px #0000000D;
    background-color: #fff;
}

.contact-form .contact-form-box img {
    width: 100%;
}

.contact-form .contact-form-box button img {
    width: 13px;
    height: 13px;
}

.contact-form::before {
    content: "";
    position: absolute;
    width: 135px;
    height: 142px;
    background-image: url(../images/shape.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 117px;
    bottom: 66px;
    z-index: -1;
}

.contact-form .contact-form-box h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 11px;
}

.contact-form .contact-form-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    margin-top: 0px;
    margin-bottom: 30px;
}

label.form-label {
    font-family: Inter;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #272727;
    margin-bottom: 13px;
    margin-top: 0px;
    text-align: left;
}

label.form-label strong {
    font-weight: 600;
}

form .mb-3 p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    width: 100%;
    line-height: 30px;
    color: #666666;
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 100%;
    margin: auto;
    margin-top: 0px;
}

span.wpcf7-form-control-wrap[data-name="phone-code"] {
    max-width: 90px;
}

.wpcf7-form-control-wrap {
    width: 100%;
}

.form-control {
    height: 60px;
    padding-left: 20px !important;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #666666 !important;
    vertical-align: middle;
    text-transform: capitalize;
    border-radius: 6px !important;
    border: 1px solid #E4E4E4 !important;
}

.input-group p {
    display: flex;
    align-items: center;
    margin-left: 0px !important;
    gap: 10px;
}


select.form-select {
    height: 60px;
}

.form-check {
    padding: 0px;
    margin: 0px;
}

textarea.form-control {
    padding-top: 22px;
    height: 127px;
}

label.form-check-label {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: capitalize;
    color: #666666;
}

.form-check-input[type=radio] {
    border-radius: 50%;
    border: 1px solid #111111;
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

/* .form-check-input:checked::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid #418CBD;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.form-check-input:checked {
    background: linear-gradient(90deg, #36A3E8 0%, #842AEF 100%);
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
} */
.select-drop {
    position: relative;
}

.select-drop .drop-icon {
    position: absolute;
    right: 8px;
    top: 29px;
    transform: translateY(-50%);
    pointer-events: none;

}

.select-drop .drop-icon i {
    width: 16px;
    height: 9px;
}

.form-control#message {
    height: 170px;
    padding: 20px;
}

.form-control::placeholder {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #666666;
    vertical-align: middle;
    text-transform: capitalize;
}

select.form-select {
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    vertical-align: middle;
    text-transform: capitalize;
}

form .mb-3 {
    margin-bottom: 30px !important;
}

form .mb-3 br {
    display: none;
}

.common-btn.form-btn::before {
    display: none;
}

/* Register  */
.register-form {
    padding: 130px 0px;
}

.register-form-box {
    padding: 71px 50px 80px 50px;
    box-shadow: 0px 4px 44px 0px #0000000D;
}

.register-form-box h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: var(--color-secondary);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 11px;
    margin-top: 0px;
}

/* .register-form-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #666666;
    text-align: center;
    max-width: 722px;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 0px;
}

.register-form-box p:last-child {
    margin-bottom: 0px;
} */

/* slider  */
.our-sponsor {
    padding: 100px 0px;
    position: relative;
    background: #1076580D;
}

.our-sponsor h2 {
    font-weight: 400;
    font-size: 46px;
    line-height: 62.4px;
    color: #111111;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 30px;
}

.sponsor-client-container::before {
    content: "";
    position: absolute;
    left: 0;
    width: 192px;
    height: 125px;
    z-index: 999;
    background: linear-gradient(270deg, rgba(243, 248, 247, 0.819) -17.24%, rgba(243, 248, 247, 0.9) 100%);
}

.sponsor-client-container::after {
    content: "";
    position: absolute;
    right: 0;
    width: 192px;
    height: 125px;
    z-index: 999;
    top: 46%;
    background: linear-gradient(270deg, rgba(243, 248, 247, 0.819) -17.24%, rgba(243, 248, 247, 0.9) 100%);
}

.sponsor-client-container figure img {
    width: 101px;
    height: 101px;
    margin-left: 47px;
}

.sponsor .partner-btn {
    display: flex;
    justify-content: center;
}

.down-icon {
    position: relative;
}

/* date icon   */
.date-wrapper {
    position: relative;
}

.date-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}

.date-wrapper .form-control {
    text-transform: uppercase;
}

/* Custom calendar icon */
.date-icon::after {
    content: "";
    position: absolute;
    top: 35px;
    right: 10px;
    transform: translateY(-74%);
    width: 20px;
    height: 20px;
    background: url('../images/calendar-icon.png') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 1;
}

.date-icon {
    position: relative;
}

.phone-box .intl-tel-input.separate-dial-code input,
.phone-box .intl-tel-input.separate-dial-code input[type=text] {
    padding-left: 100px !important;
}

.phone-box .intl-tel-input.separate-dial-code .selected-flag {
    background-color: #fff;
    border: 1px solid #E4E4E4;
}

.phone-box .intl-tel-input.separate-dial-code .selected-dial-code {
    padding-left: 22px;
}

.about-company-content {
    margin-left: 40px;
}

.wpcf7 form .wpcf7-response-output {
    border: 2px solid var(--color-purple) !important;
    padding: 1.2em 1em;
    font-size: 16px;
}



.register-form-box input[type="submit"] {
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, var(--color-purple) 100%);
    width: auto;
    height: 55px;
    padding: 0 59px 0 28px;
    padding-right: 28px;
    border-radius: 70px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 42px;
    color: var(--color-white) !important;
    border: none;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    min-width: 170px;
    text-align: left;
    position: relative;
    
}
.btn-wrap::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    background-image: url('https://www.nextgenleaders.co/wp-content/themes/nextgen-leaders/assets/images/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    left: 130px;
    top: 21px;
    z-index: 9;
}

.btn-wrap {
    width: fit-content;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
}


.wpcf7-checkbox input[type="checkbox"] {
    width: 15px;
    height: 15px;
    margin-top: 6px;
}

.wpcf7-checkbox label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
}
.contact-form-inner input[type="submit"] {
    text-transform: capitalize;
    background: linear-gradient(90deg, var(--color-primary-bg) 0%, var(--color-purple) 100%);
    width: auto;
    height: 55px;
    padding: 0 59px 0 28px;
    padding-right: 28px;
    border-radius: 70px;
    font-family: Inter;
    font-weight: 600;
    font-size: 16px;
    line-height: 42px;
    color: var(--color-white) !important;
    border: none;
    transition: background 0.4s ease, box-shadow 0.3s ease;
    min-width: 170px;
    text-align: left;
    position: relative;
}
/* ===============================
   Terms and Conditions Page Styles
   =============================== */


.terms-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
}

.terms-main {
  padding: 0;
}

.terms-article {
  line-height: 1.7;
}

.terms-content {
  font-size: 1.125rem;
}

.terms-content h2,
.terms-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #111;
}

.terms-content ul,
.terms-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.terms-content p {
  margin-bottom: 1.5rem;
}

.terms-content a {
  color: #0066cc;
  text-decoration: underline;
}

.terms-content a:hover {
  color: #004d99;
  text-decoration: none;
}

 .terms-content ol, ul {
    /*padding: 0!important;*/
    margin: 0 !important;
}
 .terms-content ul li {
    list-style: disc;
}

 .terms-content h5.wp-block-heading {
    padding: 20px 0px;
}