/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
    src: url("../fonts/DroidSerif.ttf") format("truetype");
    font-family: "Droid";
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    transition: 0.3s all;
}

html,
body {
    overflow: auto;
    scrollbar-width: none;
}

html {
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

:root {
    --primary: white;
    --secondary: black;
}

a {
    text-decoration: none !important;
}
.navbar {
    position: fixed;
    z-index: 100;
    width: 100%;
}
.navbar > .container-fluid {
    padding: 0px 70px;
}

.navbar-brand > img {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}
.nav-link,
.lang {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.6))
        drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}
.navbar-nav {
    align-items: center;
    li {
        margin-left: 5px;
        select {
            border-radius: 3px;
            background: transparent;
            color: var(--primary);
            border: none;
            padding: 5px;
            outline: none;
            option {
                color: var(--primary);
            }
        }
        a {
            color: var(--primary);
            &:hover {
                color: var(--primary);
            }
        }
        .lang {
            padding: 8px;
            border-radius: 7px;
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);

            &.active {
                background: var(--primary);
                color: var(--secondary);
                border: 1px solid var(--primary);
            }
        }
    }
}

.navbar-toggler,
.navbar-toggler-icon {
    border: none;
    outline: none;
    &:active,
    &:hover {
        border: none;
        outline: none;
    }
}

.legal {
    cursor: pointer;
    position: relative;
    color: var(--primary);
    margin: 0 !important;

    &:hover {
        color: var(--primary);
    }
}

.legal-menu {
    position: absolute;
    background: #f0f0f0;
    display: none;
    border-radius: 7px;
    padding: 5px 10px;
    a {
        color: black !important;
        padding: 5px 10px;
        display: block;
        background: none !important;
        border: none !important;
        outline: none !important;
    }
}

.legal-menu.active {
    display: block;
}

.hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 70px;
    max-width: 900px;
    margin-top: 70px;
    color: var(--primary);
    position: relative;
    .video {
        position: fixed;
        height: calc(100% + 70px);
        top: -70px;
        left: 0;
        z-index: -6;
        width: 100dvw;
        video {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    }
    h1 {
        font-size: 50px;
        font-weight: 350;
        line-height: 50px;
        line-height: 50px;
        span {
            font-family: Droid !important;
        }
    }
    p {
        font-size: 20px;
        line-height: 22px;
    }
    h2 {
        font-weight: 100;
        font-style: italic;
    }
    input {
        border: 1px solid var(--primary);
        outline: none;
        border-radius: 100px;
        background: transparent;
        padding: 10px;
        width: 320px;
        &::placeholder {
            color: var(--primary);
            opacity: 0.8;
        }
    }
    button {
        background: var(--primary);
        border-radius: 100px;
        outline: none;
        border: none;
        padding: 10px;
        width: 300px;
    }
}

.offer {
    padding: 70px;
    background: var(--primary);
    h1,
    h2 {
        font-size: 50px;
        font-weight: 350;
        line-height: 50px;
        line-height: 50px;
        margin-bottom: 40px;
        text-align: center;
        #brand {
            font-family: "Droid" !important;
        }
        span {
            font-weight: bold;
            font-style: italic;
        }
    }
    h2 {
        text-align: start;
        font-size: 30px;
    }
    .card-container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        .card {
            position: relative;
            border: none;
            .card-content {
                width: 80%;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: var(--primary);
                h1 {
                    font-family: "Droid";
                    font-style: italic;
                }
                p {
                    text-align: center;
                    font-size: 20px;
                }
                button {
                    background: var(--primary);
                    border-radius: 100px;
                    outline: none;
                    border: none;
                    padding: 10px;
                    width: 100%;
                }
            }
            .card-img {
                overflow: hidden;
                border-radius: 20px;
            }
            &:hover img {
                filter: brightness(0.5);
                scale: 1.1;
            }

            &:hover h1 {
                scale: 0.8;
            }
        }
    }
}

.courses {
    .ex-heading {
        display: flex;
        justify-content: space-between;
        div {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        img {
            width: 20px;
        }
    }
    width: 100%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    background: var(--primary);
    h1,
    h2 {
        font-size: 50px;
        font-weight: 350;
        line-height: 50px;
        line-height: 50px;
        margin-bottom: 40px;
        text-align: start;
        #brand {
            font-family: "Droid" !important;
        }
        span {
            font-weight: bold;
            font-style: italic;
        }
    }
    .course-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        .course {
            width: 330px;
            padding: 10px;
            display: flex;
            flex-grow: 1;
            flex-direction: column;
            gap: 0;
            .course-img {
                width: 100%;
                aspect-ratio: 2/1;
                border-radius: 20px;
                overflow: hidden;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
            p {
                margin: 0;
            }
            .course-module {
                font-style: italic;
                font-weight: bold;
            }
            .course-speaker > p {
                color: rgb(0, 234, 255);
            }
            .course-rating {
                display: flex;
                gap: 3px;
                color: grey;
                img {
                    width: 20px;
                    height: 20px;
                }
            }
        }
    }
}
.experts {
    .ex-heading {
        display: flex;
        justify-content: space-between;
        div {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        img {
            width: 20px;
        }
    }
    width: 100%;
    padding: 70px;
    display: flex;
    flex-direction: column;
    background: var(--primary);
    h1,
    h2 {
        font-size: 50px;
        font-weight: 350;
        line-height: 50px;
        line-height: 50px;
        margin-bottom: 40px;
        text-align: start;
        #brand {
            font-family: "Droid" !important;
        }
        span {
            font-weight: bold;
            font-style: italic;
        }
    }
    .expert-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        .expert {
            width: 330px;
            flex-grow: 1;
            padding: 10px;
            display: flex;
            flex-direction: column;
            gap: 0;
            .expert-img {
                width: 100%;
                height: 80%;
                border-radius: 20px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                img {
                    border-radius: 20px;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    filter: grayscale(1);
                }
            }
        }
    }
}



.cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 70px;

    img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
    }

    .content {
        position: relative;
        color: var(--primary);
        text-align: center;
        z-index: 1;

        h1 {
            span {
                font-weight: bold;
                font-style: italic;
            }
        }

        h2 {
            font-family: "Droid", sans-serif;
        }

        input {
            border: 1px solid var(--primary);
            outline: none;
            border-radius: 100px;
            background: transparent;
            padding: 10px;
            width: 320px;
            &::placeholder {
                color: var(--primary);
                opacity: 0.8;
            }
        }
        button {
            background: var(--primary);
            border-radius: 100px;
            outline: none;
            border: none;
            padding: 10px;
            width: 150px;
        }
    }
}

.footer {
    background: #f0f0f0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.11);
    padding: 70px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    .sub-footer {
        width: 100%;
        max-width: 280px;
        img {
            filter: invert(1);
            margin-bottom: 20px;
        }
        p {
            font-size: 14px;
        }
        h6 {
            letter-spacing: 4px;
        }
        a {
            font-size: 14px;
            display: block;
            color: var(--secondary);
        }
        .icons {
            display: flex;
        }
    }
}

.end-footer {
    padding: 20px 70px;
    background: #f0f0f0;
}

.toc-pp {
    margin-top: 70px;
    padding: 70px;
    p {
        max-width: 800px;
    }
}

.pricing {
    background: var(--primary);
    color: var(--secondary);
    padding: 100px 70px;
    text-align: center;
}

.pricing h1 {
    font-size: 50px;
    font-weight: 350;
    line-height: 55px;
    margin-bottom: 10px;
    font-family: "Inter", sans-serif;
}

.pricing p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 60px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.pricing-card h2 {
    font-family: "Droid", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 5px;
}

.pricing-card h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0.7;
}

.pricing-card .price {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0 !important ;
}

.pricing-card ul li {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.pricing-card button {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    border-radius: 100px;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-card button:hover {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.no-tiers {
    font-size: 18px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .pricing {
        padding: 70px 30px;
    }
    .pricing h1 {
        font-size: 36px;
        line-height: 42px;
    }
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        max-width: 90%;
    }
}

.signup {
    background: var(--primary);
    color: var(--secondary);
    padding: 100px 70px;
    text-align: center;
}

.signup h1 {
    font-size: 50px;
    font-weight: 350;
    margin-bottom: 10px;
}

.signup p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 60px;
}

.signup form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.signup .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.signup label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.signup input,
.signup select {
    border: 1px solid var(--secondary);
    border-radius: 100px;
    padding: 12px 18px;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: var(--secondary);
}

.signup input::placeholder {
    opacity: 0.7;
    color: var(--secondary);
}

.signup select {
    appearance: none;
    background-color: transparent;
    color: var(--secondary);
}

.signup .stripe-element {
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 15px;
    background: transparent;
}

.signup button {
    background: var(--secondary);
    color: var(--primary);
    border-radius: 100px;
    border: none;
    padding: 14px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.signup button:hover {
    background: transparent;
    border: 1px solid var(--secondary);
    color: var(--secondary);
}

.signup .divider {
    margin: 40px auto;
    font-weight: 400;
    opacity: 0.6;
    position: relative;
    width: 100%;
    text-align: center;
}

.signup .divider::before,
.signup .divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.signup .divider::before {
    left: 0;
}

.signup .divider::after {
    right: 0;
}

.signup .google-signup a {
    display: inline-block;
    background: #db4437;
    color: white;
    border-radius: 100px;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.signup .google-signup a:hover {
    background: #c33b2f;
}

.signup .error {
    color: crimson;
    font-size: 14px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .signup {
        padding: 70px 30px;
    }
    .signup h1 {
        font-size: 36px;
    }
} */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@font-face {
    src: url("../fonts/DroidSerif.ttf") format("truetype");
    font-family: "Droid";
}
* {
    font-family: "Inter";
    transition: all 0.2s;
}


.para-1 {
    font-size: clamp(16px, 2.5vw, 20px);
}
.para-2 {
    font-size: clamp(14px, 2vw, 16px);
}

.heading-1 {
    font-size: clamp(30px, 5vw, 50px);
}

.heading-2 {
    font-size: clamp(26px, 4vw, 40px);
}

.heading-3 {
    font-size: clamp(18px, 3.5vw, 30px);
}

h1,
h2 {
    line-height: clamp(28px, 6vw, 48px);
    span {
        font-family: "Droid";
    }
    b {
        font-style: italic;
    }
}

p {
    line-height: 22px;
}

.font-2 {
    font-family: "Droid";
}
.font-1 {
    font-family: "Inter";
}

button > span {
    font-weight: bold;
    font-style: italic;
}
.nav.scrolled {
    background-color: white;
}

.nav.scrolled {
    .brand {
        svg {
            filter: invert(1);
        }
    }
    .menu {
        filter: invert(0) !important;
    }

    .lang {
        button {
            &.active {
                background: black;
                color: white;
            }
            &:not(.active) {
                background: white;
                color: black;
                outline: 2px solid black;
            }
        }
    }

    .legal-dropdown {
        color: black;
        .legal-dropdown-options {
            color: white;
        }
    }
}
