@font-face {
    font-family: HelveticaNeueRoman;
    src: url('./assets/fonts/HelveticaNeueRoman.otf');
}

@font-face {
    font-family: HelveticaNeueMedium;
    src: url('./assets/fonts/HelveticaNeueMedium.otf');
}



:root {
    /* Colors */
    --color-bg: #1A1A1A;
    --color-primary: #F73378;
    --color-secondary: #292929;
    --color-white: #FFFFFF;
    --color-text: #B9B9B9;
    --color-heading: #F5F5F5;
    /* Fonts */
    --font-regular: HelveticaNeueRoman;
    --font-medium: HelveticaNeueMedium;
}


/* Helvetica Neue */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-regular);
}


.section-container {
    width: 100%;
    /* padding: 100px 0; */
    padding: 50px 0;
    height: auto;
}

.section-container .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 100%;
}

.heading {
    color: var(--color-heading);
    font-size: 42px;
}

.text {
    color: var(--color-text);
    font-size: 20px;
}

.content-container {
    max-width: 850px;
    margin: 0 auto;
}


.btn {
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 40px;
    padding: 10px 26px;
    color: var(--color-white);
    font-family: var(--font-regular);
    font-size: 16px;
}

/* Tooltip */

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    position: absolute;
    right: -112px;
    top: -31px;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}






/* Sidebar */

.slider-container {
    transition: all 0.5s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.slider-container.home {
    z-index: -1;
}

.slider-container.active {
    z-index: 10;
}

/* slider-container */

.sidebar {
    background-color: black;
    position: absolute;
    left: -100%;
    z-index: 10;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 38px 33px;
    transition: all 0.5s ease-in-out;
    position: relative;
}

.sidebar.active {
    left: 0;
}

.sidebar .logo {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar {
    flex-direction: row;
    gap: 30px;
    height: 80px;
    background: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
}

.navbar .logo {
    max-height: 100%;

}

.navbar .logo img {
    height: 50px;
    width: 50px;
}

.navbar .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10;
    position: relative;
    height: 20px;
    width: 30px;
    justify-content: space-between;
}

.navbar .hamburger .bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 10px;
}

/* Slider menu */
.slider-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 80px;
}

.slider-menu li.menu-item {
    list-style: none;
    color: var(--color-white);
    transition: all 0.5s ease-in-out;

}

.menu-item svg {
    stroke: var(--color-white);
    transition: all 0.5s ease-in-out;

}

.slider-menu li.menu-item.active svg,
.slider-menu li.menu-item:hover svg {
    stroke: var(--color-primary);
}

.slider-menu li.menu-item.active,
.slider-menu li.menu-item:hover {
    color: var(--color-primary);
    stroke: var(--color-primary);
}

.slider-menu li a {
    text-decoration: none;
    font-family: var(--font-regular);
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;

}


/* Social links  */

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    bottom: 38px;
    left: 33px;
    position: absolute;
}

.main-container {
    /* min-height: 200vh; */
    width: 100%;
    top: 80px;
    position: absolute;
}






/* VC section */



.vc-section .content-container img {
    max-width: 1000px;
}

.vc-section .content-container h1 {
    text-align: center;
    max-width: 800px;
    margin-top: 25px;
}

.vc-section .content-container p {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 25px;
}


/* Video section */
.video-section .video-section {
    max-width: 1000px;
    position: relative;
}

.video-section .video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100px;
    cursor: pointer;
}

.video-section .content-container p {
    text-align: center;
    margin-top: 25px;
}

/* join us section */



.section-banner {
    /* height: 562px; */
    height: auto;
    width: 100%;
    background-color: var(--color-secondary);
    border-radius: 26px;

    padding: 0 100px;
    /* padding: 20px; */
}

.section-banner .section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.section-banner .content .sub-heading {
    color: var(--color-primary);
    font-family: var(--font-regular);
    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0em;
    text-align: left;
}

.join-section .button-wrapper {

    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
}



.join-section .pitch-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
}

.join-section .pitch-wrapper .text {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;

}

.join-section .banner-section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    padding: 50px 0;
}

.join-section .join-us-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* partners section */

.partners-section .section-banner {
    background-image: url('./assets/images/partners-bg.png');
    min-height: 818px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    position: relative;
    padding: 100px 10px;
}

.partners-section .section-banner .heading {
    max-width: 710px;
    text-align: center;
}

.partners-logos {
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 90px;
    row-gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
    position: absolute;
    bottom: 40px;
    left: 0;
}

.partners-logos .logo {
    width: 100px;
}

.partners-section .button-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}


.partners-section .pitch-wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.partners-section .pitch-wrapper .text {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
}


/* profile-section */
.profile-section .profile-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
}

.profile-wrapper .content-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.profile-wrapper .content-container .btn {
    border-radius: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    text-transform: uppercase;
    padding: 10px 25px;
}


.profile-section .action-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 10px;
    max-width: 250px;
    margin: 0 auto;
}

.profile-section .action-icons .action-icon {
    width: 55px;
    height: 55px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.profile-section .action-icons .action-icon:hover {
    transform: scale(1.1);
}

/* footer section */

.footer-section .container {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    margin-bottom: 20px;
}

.footer-section .footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.footer-section .footer-content img {
    cursor: pointer;
}

.footer-section .footer-menu {
    display: flex;
    gap: 20px;
}

.footer-section .footer-menu li {
    cursor: pointer;
    color: var(--color-white);
}

/* Small screens and up (sm) */
@media (min-width: 640px) {
    .sidebar {
        width: 100%;
        left: -100%;
        /* top: 80px; */
        min-height: calc(100vh - 80px);
    }

    .sidebar.active {
        left: 0;
    }

    .navbar {
        display: flex;
        width: 100vw;
    }



}

/* Medium screens and up (md) */
@media (min-width: 768px) {

    .section-container {
        padding: 70px 0;
    }

    .sidebar {
        width: 300px;
        left: -300px;
        /* top: 0; */
    }


    .footer-section .footer-content {
        flex-direction: row;
        gap: 20px;
    }



    .profile-section .action-icons {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
    }

    .partners-logos .logo {
        width: auto;
    }

    .partners-section .section-banner {
        justify-content: center;
    }



}

/* Large screens and up (lg) */
@media (min-width: 1024px) {
    .section-container {
        padding: 100px 30px;
    }

    .sidebar {
        display: flex;
        width: 300px;
        top: 0;
        height: 100vh;
        left: 0;
    }


    .navbar {
        display: none;
    }


    .main-container {
        width: calc(100% - 300px);
        top: 0;
    }


}

/* Extra large screens and up (xl) */
@media (min-width: 1280px) {

    .section-banner {
        height: 562px;
        /* height: auto; */
        flex-direction: row;
        padding: 50px 30px;
    }

    .join-section .banner-section-content {
        flex-direction: row;
    }

    .join-section .join-us-banner-container {
        width: 50%;
        justify-content: flex-end;
    }

    .join-section .content {
        width: 50%;
    }


    .section-banner .join-us-banner {
        /* width: 320px; */
    }


    .profile-section .profile-wrapper {
        flex-direction: row;
    }

    .profile-section .action-icons {
        /* grid-template-columns: repeat(1, 1fr); */
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* .main-container.scroll-container {
        width: 100%;
    } */
}

/* 2x extra large screens and up (2xl) */
@media (min-width: 1536px) {}

/* Home Scrollable */

.scroll-container {
    overflow-y: auto;
    height: 100vh;
    scroll-snap-type: y mandatory;
    position: fixed;
    right: 0;
    scroll-behavior: smooth;

}

.scroll-section {
    scroll-snap-align: start;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--color-black);
}

.heading .trademark {
    font-size: 0.5em;
    font-weight: lighter;
    margin-left: -8px;
    position: relative;
    bottom: 10px;
    vertical-align: super; 
}

.heading .registered{
    font-size: 0.7em;
    font-weight: lighter;
    vertical-align: super;
    margin-left: -8px;
}