/* Fonts */

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* Custom Html elements */

body {
    max-width: 100vw !important;
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: whitesmoke;
    overflow-x: hidden !important;
}

p {
    font-family: Poppins Regular, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 34px;
}

footer {
    position: relative;
    bottom: 0;
    max-width: 100vw !important;
    min-height: 20vh;
    color: white;
}

footer img {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    object-position: center;
}

.footer-link-left {
    padding-left: 0;
    padding-right: 2rem;
}

.footer-link-right {
    padding-right: 0;
    padding-left: 2rem;
}

.nav-partner-link {
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px); /* Apply the blur effect */
    margin-left: 1px;
    margin-right: 1px;
    transition: 0.3s ease-in-out;
}

.nav-partner-link:hover {
    background-color: rgba(60, 23, 182, 0.5);
    box-shadow: 0 2px 100px 0 rgba(100, 59, 238, 0.50);
}

.main-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
}

.btn-green {
    min-width: 100px;
    max-width: 235px;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    text-align: center;
    background: #643BEE;
    transition: 0.3s ease-in-out;
    color: white;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    gap: 20px;
    padding: 10px 40px;
    flex-shrink: 0;
}

.btn-green:hover {
    background-color: rgba(60, 23, 182, 0.5);
    box-shadow: 0 2px 100px 0 rgba(100, 59, 238, 0.50);
    color: white;
}

.btn-transparent {
    min-width: 100px;
    max-width: 235px;
    height: 60px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    text-align: center;
    transition: 0.3s ease-in-out;
    color: white;
    border-radius: 100px;
    backdrop-filter: blur(5px);
    gap: 20px;
    padding: 10px 40px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-transparent:hover {
    background-color: #00000050;
    box-shadow: 0 2px 100px 0 rgba(0, 0, 0, 0.5);
    color: white;
}

.secondary {
    min-width: 50px !important;
    max-width: 200px !important;
    height: 50px !important;
    gap: 3px !important;
    padding: 5px 20px !important;
}

.nav-link {
    color: white !important;
    transition: 0.3s ease-in-out;
}

.nav-link:hover {
    color: #643BEE !important;
}

.intro-img {
    margin-left: 5rem;
}

.stats-div {
    position: relative;
    bottom: 30%;
    left: 10%;
}

.stats-div-mobile {
    position: relative;
    bottom: 10%;
    left: 0;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    max-width: 1440px; /* Set the maximum width as per your design */
    margin: 0 auto;
    padding: 20px;
    background: #fff; /* Optional background color */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px; /* Optional rounded corners */
}

.event-details {
    list-style-type: none;
    padding: 0;
}

.event-details li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.event-details li::before {
    content: '●';
    color: #643BEE;
    font-weight: bold;
    font-size: 23px;
    display: inline-block;
    width: 20px;
    margin-right: 10px;
}

/* Container sizes */

.vh-10 {
    height: 10vh;
}

.min-vh-70 {
    min-height: 70vh;
}

.min-vh-40 {
    min-height: 40vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.project {
    min-height: 210px;
    border: 1px solid #33404A;
    background: #000;
    transition: 0.3s ease-in-out;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: inline-flex;
}

.project:hover {
    box-shadow: 0 2px 100px 0 rgba(100, 59, 238, 0.50);
}

@media(max-width: 756px) {
    .project {
        min-height: 80px !important;
    }
}

/* Colors */

.transparent {
    background-color: transparent !important;
}

.white {
    color: white;
}

.green {
    color: #643BEE;
}

.gray {
    color: #cac9d3;
}

.whitesmoke {
    color: whitesmoke;
}

.not-white {
    color: #FEFEFE;
}

.not-white-transparent {
    color: rgba(254, 254, 254, 0.3);
}

.asteria-light {
    color: #643BEE;
}

.asteria-dark {
    color: #3C17B6;
}

.dark-gray {
    color: #212121;
}

.bg-transparent-black-navbar {
    backdrop-filter: blur(7px); /* Apply the blur effect */
}

.bg-whitesmoke {
    background-color: whitesmoke;
}

.bg-green {
    background-color: #643BEE;
}

.bg-dark-gradient {
    background: linear-gradient(to bottom, #212121, #585858);
}

.bg-transparent-white {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Apply the blur effect */
}

.bg-transparent-white {
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-transparent-black {
    background-color: rgba(33, 33, 33, 0.87);
}

.bg-transparent-asteria-light {
    background-color: rgba(100, 59, 238, 0.90);
}

.bg-asteria-dark {
    background: #010012;
}

.bg-asteria-light {
    background: #022743;
}

/* Spacing */

.ml-5 {
    margin-left: 5rem !important;
}

.mr-05 {
    margin-right: 0.5rem !important;
}

.p-1 {
    padding: 1rem !important;
}

/* Text */

.uppercase {
    text-transform: uppercase !important;
}

.h-mega {
    font-size: 60px;
    font-weight: bold;
    line-height: 76px;
    z-index: 50 !important;
    position: relative;
}

.h-mega-phone {
    font-size: 36px;
    font-weight: 600;
    font-style: normal;
    line-height: 42px;
    z-index: 50 !important;
    position: relative;
}

.intro-p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.stats-p {
    font-size: 8px;
    font-weight: bold;
    line-height: normal;
}

.partnership-p {
    font-size: 10px;
    line-height: 16px;
}

/* Other */

.horizontal-overflow-hidden {
    overflow-x: hidden !important;
}

.navbar-toggler {
    border: 0 !important;
}

.z-1 {
    z-index: 1;
}

.img-mobile {
    width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 5% !important;
}

table {
    width: 100%;
    text-align: center;
    font-size: 14px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 30px;
}

thead {
    background-color: #643BEE;
    color: white;
}

th, td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

th {
    background-color: rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.1);
}

.highlight {
    background-color: rgba(255, 255, 255, 0.2);
}

table thead tr:first-child th:first-child {
    border-top-left-radius: 30px;
}

table thead tr:first-child th:last-child {
    border-top-right-radius: 30px;
}

table tbody:last-child tr:last-child td:first-child {
    border-bottom-left-radius: 30px;
}

table tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 30px;
}

.blog-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

a {
    text-decoration: none !important;
}

.material-card {
    transition: transform 0.3s ease, box-shadow 0.25s ease;
    border: 1px solid #ffffff;
    border-radius: 20px;
    overflow: hidden; /* 🔑 This is crucial */
}

.material-card img.card-img-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    object-fit: cover;
}

.material-card .card-body {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.material-card:hover {
    box-shadow: 0 2px 100px 0 rgba(100, 59, 238, 0.50);
}
