@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --inter: "Inter", serif;
    --prime-color: #00B2FF;
    --prime-border-color: #00B2FF;
    --text-color: #fff;
    --banner-bg-color: #111111;
    --nav-bg: #000;
    --course-bg-color: #050505;
    --course-card-bg: #141414;
    --about-us-bg: #050505;
    --language-bg: #fff;
    --highlight-bg: #050505;
    --hightlight-card: #141414;
    --course-vdo: #141414;
    --light-grey: #A5A5A5;
}

body.light {
    --prime-color: #00B2FF;
    --text-color: #000;
    --banner-bg-color: #F7F7FF;
    --nav-bg: #F7F7FF;
    --course-bg-color: #F7F7FF;
    --course-card-bg: #fff;
    --about-us-bg: #F7F7FF;
    --language-bg: #fff;
    --highlight-bg: #F7F7FF;
    --hightlight-card: #fff;
    --course-vdo: #fff;
    --light-grey: #606060;
}

.sign_in {
    border: 1px solid var(--prime-border-color);
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter);
    color: var(--text-color);
    transition: .3s ease-in-out;
}

.sign_up {
    border: none;
    background-color: var(--prime-color);
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter);
    transition: .3s ease-in-out;
    color: #fff;
}

.signupmob {
    border: none;
    background-color: var(--prime-color);
    padding: 10px 40px 10px 40px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter);
    transition: .3s ease-in-out;
    color: #fff;
}

.connectt {
    border: none;
    background-color: transparent;
    border: 1px solid var(--prime-border-color);
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--inter);
    transition: .3s ease-in-out;
    color: var(--text-color);
}

.sign_in:hover,
.sign_up:hover {
    transform: translateY(-5px);
}

.nav-link {
    font-size: 15px !important;
    color: var(--text-color) !important;
    font-family: var(--inter);
}

.nav-link:hover {
    color: var(--prime-color) !important;
}

.nav-link.active {
    color: var(--prime-color) !important;
}

.offcanvas-body .nav-link button {
    background-color: transparent;
    border: none;
}

.navbar {
    background-color: var(--nav-bg) !important;
}

/*Banner*/

.banner_sec {
    background-color: var(--banner-bg-color);
    height: 100vh;
    background-image: url(images/banner_bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}

.banner_sec h1 {
    color: var(--text-color);
    font-size: 60px;
    font-weight: 700;
    font-family: var(--inter);
}

.banner_sec h1 span {
    color: var(--prime-color);
}

.banner_sec p {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--inter);
    letter-spacing: .72px;
    line-height: 33px;
    margin: 2rem 0 0;
}

.banner_sec button {
    background-color: var(--prime-color);
    padding: .5rem 1rem;
    border: none;
    border-radius: 6px;
    margin: 2rem 0 0;
    color: #fff;
    font-size: 18px;
    font-family: var(--inter);
    transition: .3s ease-in-out;
}

.banner_sec button:hover {
    transform: translateY(-5px);
}

/*course_vdo*/
.course_vdo {
    background-color: var(--course-bg-color);
    padding: 3rem 0;
    position: relative;
}

.course_vdo .left_vdo_indicator {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.course_vdo .right_vdo_indicator {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.course_vdo_container {
    background-color: var(--course-vdo);
    padding: 3rem 6rem;
    border-radius: 8px;
}

.course_vdo_container h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--inter);
    color: var(--text-color);
}

.course_vdo_container p {
    font-family: var(--inter);
    font-size: 16px;
    margin: 2rem 0;
    color: var(--text-color);
}

.course_vdo_container .contract {
    font-family: var(--inter);
    font-size: 16px;
    margin: 2rem 0;
    color: var(--text-color);
    font-weight: 600;
}

.course_vdo_container label {
    font-family: var(--inter);
    font-size: 16px;
    background-color: var(--prime-color);
    padding: 5px 10px;
    color: #fff;
    border-radius: 6px;
}

/*courses*/

.courses {
    background-color: var(--course-bg-color);
    background-image: url(images/course_bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100% 90%;
}

.courses_inner {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.courses_inner p {
    color: var(--prime-color);
    font-weight: 600;
    font-size: 14px;
    font-family: var(--inter);
}

.courses_inner h3 {
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
    font-family: var(--inter);
}

.courses_inner .nav-pills {
    margin: 1.5rem 0;
}

.courses_inner .nav-link {
    font-size: 20px !important;
    border: 1px solid var(--prime-border-color);
    color: var(--text-color) !important;
    font-family: var(--inter);
}

.courses_inner .nav-link.active {
    background-color: var(--prime-color) !important;
    color: #fff !important;
}

.courses_inner .course_details {
    background-color: var(--course-card-bg);
    border-radius: 6px;
    box-shadow: var(--prime-border-color) 0px 3px 8px -2px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.courses_inner .course_details:hover {
    transform: scale(1.02);
}

.course_details span:first-child {
    background-color: var(--prime-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--inter);
}

.course_details span:last-child {
    color: var(--text-color);
    font-family: var(--inter);
    font-size: 12px;
}

.course_details .description {
    text-align: left;
    margin-top: 1rem;
    color: var(--text-color);
    font-family: var(--inter);
    font-size: 16px;
}

.course_details .price {
    text-align: left;
    color: var(--text-color);
    font-family: var(--inter);
    font-size: 20px;
}

.course_details .price span {
    font-size: 16px;
    text-decoration: line-through;
    color: #c3c3c3;
    background-color: transparent;
}


.courses_inner .explore {
    margin: 2rem 0 !important;
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--prime-border-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-family: var(--inter);
}

.course_left {
    font-size: 30px;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -40px;
}

.course_right {
    font-size: 30px;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
}

.arrow_fun i {
    font-size: 30px;
    cursor: pointer;
}


/*about-us*/

.about_us {
    background-color: var(--about-us-bg);
    padding: 2rem 0;
}

.about_us h3 {
    color: var(--prime-color);
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 600;
}

.about_us h2 {
    color: var(--text-color);
    font-size: 32px;
    font-weight: 600;
    font-family: var(--inter);
    margin: 1rem 0;
}

.about_us p {
    font-family: var(--inter);
    font-size: 16px;
    color: var(--text-color);
}

/* .about_us .lang_dropdown{
    background-color: transparent;
    color: var(--text-color);
    padding: 1rem 3rem;
    border: 1px solid var(--prime-border-color);
    border-radius: 6px;
}

.about_us .lang_dropdown option{
    color: #000;
} */


/*languages*/

.languages {
    background-color: var(--language-bg);
    padding: 3rem 0;
}

.languages h6 {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--prime-color);
}

.languages h2 {
    font-family: var(--inter);
    font-size: 36px;
    color: #000;
    font-weight: 600;
}

.languages .lang_div {
    border: 1px solid #C3C3C3;
    padding: 2.5rem 0;
    border-radius: 5px;
    margin: 1rem 0;
}

.languages .lang_div h3 {
    color: var(--prime-color);
    font-family: var(--inter);
    font-size: 48px;
    font-weight: 600;
}

.languages .lang_div p {
    font-size: 20px;
    font-family: var(--inter);
    font-weight: 600;
}

.languages .lang_div.more_lang {
    background-color: var(--prime-color);
    color: #fff;
}

.languages .lang_div.more_lang h3 {
    color: #fff;
}

/*certificate*/

.certificate {
    background-color: var(--highlight-bg);
    padding: 3rem 0;
    position: relative;
}

.certificate .bg-box {
    width: 50%;
    height: 250px;
    background-color: var(--prime-color);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translatey(-50%);
    border-radius: 40px 0 0 40px;
    z-index: 1;
}

.certificate h6 {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--prime-color);
}

.certificate h2 {
    font-family: var(--inter);
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
    margin: 2rem 0;
}

.certificate p {
    font-size: 14px;
    font-family: var(--inter);
    text-align: left;
    color: var(--text-color);
}

.certificate img {
    position: relative;
    z-index: 99;
}

/*highlights*/

.highlights {
    background-color: var(--highlight-bg);
    padding: 3rem 0;
}

.highlights h6 {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--prime-color);
}

.highlights h2 {
    font-family: var(--inter);
    font-size: 36px;
    color: var(--text-color);
    font-weight: 600;
    margin: 2rem 0;
}

.highlights .highlights_card {
    background-color: var(--hightlight-card);
    padding: 16px;
    border-top: 2px solid var(--prime-border-color);
    height: 100%
}

.highlights .icon {
    padding: 14px;
    background-color: var(--prime-color);
    width: max-content;
    border-radius: 5px;
}

.highlights_card h4 {
    color: var(--text-color);
    margin: 1rem 0;
    text-align: left;
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 600;
}

.highlights_card p {
    font-size: 14px;
    font-family: var(--inter);
    text-align: left;
    color: var(--text-color);
}

.highlights .get_started {
    background-color: #141414;
    color: #fff;
    margin: 6rem 0 1rem;
}

.highlights .get_started div:first-child {
    padding: 2rem 4rem;
}

.get_started p:first-child {
    font-size: 14px;
    font-family: var(--inter);
    font-weight: 600;
}

.get_started h3 {
    font-size: 36px;
    font-family: var(--inter);
    font-weight: 600;
    margin: 1.5rem 0;
}

.get_started p:not(:first-child) {
    font-size: 14px;
    font-family: var(--inter);
}

.get_started a button {
    margin: 2rem 0;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    color: #fff;
}

.placeholder_4 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/*cac*/

.cac {
    background-color: var(--highlight-bg);
    background-image: url(images/cac_bg.png);
    background-position: bottom;
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 3rem 0;
}

.cac h2 {
    font-family: var(--inter);
    font-size: 40px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 3rem;
}

.cac .unity {
    background-color: var(--course-vdo);
    padding: 3rem 1rem;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cac .unity h3 {
    text-align: left;
    color: var(--light-grey);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 600;
}

.cac .unity h2 {
    text-align: left;
    /* background: linear-gradient(to right, #eee, #333); */
    color: var(--text-color);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 900;
}

.cac .unity p {
    text-align: left;
    margin: 2rem 0 .8rem;
    font-family: var(--inter);
    font-size: 18px;
    color: var(--text-color);
}

.cac .unity li {
    text-align: left;
    font-size: 18px;
    color: var(--text-color);
    font-family: var(--inter);
}


.cac .edu {
    background-color: var(--course-vdo);
    padding: 3rem 0;
    border-radius: 8px;
    margin: 0 0 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cac .edu h3:first-child {
    color: var(--light-grey);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 600;
}

.cac .edu h2 {
    /* background: linear-gradient(to right, #eee, #333); */
    color: var(--text-color);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 900;
    margin: 2rem 0;
}

.cac .edu p {
    font-size: 18px;
    font-family: var(--inter);
    color: var(--text-color);
}

.cac .listing {
    background-color: var(--course-vdo);
    padding: 3rem 1rem;
    border-radius: 8px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cac .listing h3:first-child {
    color: var(--light-grey);
    font-family: var(--inter);
    font-size: 20px;
    font-weight: 600;
}

.cac .listing h2 {
    /* background: linear-gradient(to right, #eee, #333); */
    color: var(--text-color);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 900;
    margin: 2rem 0;
}

.cac .listing li,
.cac .listing p {
    color: var(--text-color);
    font-family: var(--inter);
    font-size: 18px;
}




/*footer*/

.footer {
    background-color: #141619;
    color: #fff;
    font-family: var(--inter);
}

.footer div:first-child {
    padding: 1rem;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style: none;
    margin: 8px 0;
    font-size: 14px;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

.footer h6 {
    font-size: 15px;
    margin: 0 0 2rem;
}

.footer .connect a {
    text-decoration: none;
    color: #fff;
}

.carousel-indicators [data-bs-target] {
    width: 4px !important;
    height: 4px !important;
    border: 0 !important;
    border-radius: 50px;
    background-color: var(--text-color) !important;
}

.carousel-indicators .active {
    scale: 1.4;
}

/* Flip card container */
.card-container {
    position: relative;
    width: 300px;
    /* Adjust width as needed */
    height: 100%;
    /* Adjust height as needed */
    perspective: 1000px;
    /* Adds depth to the flip effect */
}

/* Card wrapper */
.cards {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Front and back faces */
.cards .front,
.cards .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Hide the back when facing away */
    transition: transform 0.6s ease-in-out;
    /* Smooth flip transition */
    top: 0;
    left: 0;
}

.course_details {
    perspective: 1000px;
    /* Enables the 3D effect */
}

.flip-card {
    width: 70px;
    height: 30px;
    position: relative;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.course_details:hover .flip-card-inner {
    transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /* Adjust as needed */
    font-weight: bold;
}

.flip-card-front {
    background-color: var(--prime-color);
    padding: 4px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--inter);
}

.flip-card-back {
    background-color: var(--prime-color);
    padding: 4px 40px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: var(--inter);
    transform: rotateX(-180deg);
}

.user_detail p {
    margin: 0;
}

.user_name {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.user_id {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
}

.arrow_down {
    color: var(--text-color);
    cursor: pointer;
}

.explore_all {
    border: 1px solid var(--prime-border-color);
    background-color: transparent;
    color: var(--text-color);
    padding: 1rem 2rem;
    border-radius: 8px;
}

#more_course,
#more_course_cc,
#more_course_bc {
    display: none;
}

.buy_now {
    background-color: var(--prime-color);
    padding: 7px;
    border: none;
    border-radius: 8px;
    color: #fff
}

.buttonn {
    padding: 0.5rem 1rem;
    color: var(--text-color);
    background-color: transparent;
    border: 1px solid #00B2FF;
    border-radius: 8px;
    margin: 1rem 0;
}

.modal-header {
    border: none !important;
}

.signUp_popup .modal-body {
    text-align: center;
    padding: 1rem 2.5rem !important;
}

.signUp_popup .modal-body h2 {
    font-size: 32px;
    font-family: var(--inter);
    font-weight: 600;
}

.signUp_popup .modal-body p {
    font-size: 14px;
    font-family: var(--inter);
    color: #2F2F2F;
}

.signUp_popup .modal-body input {
    border: 1px solid #C5C5C5;
    font-family: var(--inter);
    color: #2F2F2F;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
}

.signUp_popup .modal-body select {
    border: 1px solid #C5C5C5;
    font-family: var(--inter);
    color: #2F2F2F;
    padding: 10px;
    border-radius: 8px;
}

.signUp_popup .modal-body input[type="checkbox"] {
    width: max-content;
    accent-color: var(--prime-color);
}

.signUp_popup .modal-body label {
    font-family: var(--inter);
    font-size: 14px;
}

.signUp_popup .modal-body #course_lang_error {
    display: none;
}

.signUp_popup .modal-body button {
    font-family: var(--inter);
    font-size: 14px;
    background-color: var(--prime-color);
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 8px;
    color: #fff;
}

.signUp_popup .modal-body input::placeholder {
    font-size: 14px;
}

.signUp_popup .modal-body input:focus {
    outline: 3px solid var(--prime-color);
}

.signUp_popup .modal-body select:focus {
    outline: 3px solid var(--prime-color);
}

.signUp_popup .modal-body input[type="checkbox"]:focus {
    outline: none;
}

.contract {
    display: flex;
    border: 1px solid var(--prime-border-color);
    align-items: center;
    border-radius: 8px;
    width: max-content;
    margin: 2rem 0 1rem;
}

.contract label {
    background-color: var(--prime-color);
    color: #fff;
    padding: 8px;
    font-size: 12px;
    font-family: var(--inter);
    border-radius: 7px 0 0 7px;
}

.contract input {
    margin: 0 10px;
    font-size: 14px;
    font-family: var(--inter);
    background-color: transparent;
    color: var(--text-color);
    border: none;
}

.contract input:focus {
    outline: none;
}

.contract i {
    margin: 8px;
    color: var(--text-color);
    cursor: pointer;
    font-size: 14px;
}

.referral {
    margin: 3rem 0;
}

.referral .level .ref_icon {
    background-color: var(--prime-color);
    padding: 15px 20px;
    width: max-content;
    border-radius: 10px 10px 10px 0px;
    position: relative;
    margin: 0 auto;
}

.referral .level {
    background-color: var(--hightlight-card);
    padding: 2rem 10px;
    height: 100%;
    border-radius: 8px;
}


.referral .level h6 {
    margin: 2rem 0 1rem;
}

.referral .level p {
    color: var(--text-color);
    font-size: 16px;
    font-family: var(--inter);
}

.referral .ref_icon.ref_l2 {
    padding: 15px 20px;
}

.referral .ref_icon.ref_l3 {
    padding: 15px 20px;
}

.contract input{
    width: 310px;
}



@media screen and (min-width: 320px) and (max-width: 767px) {
    .banner_sec {
        height: max-content;
        background-position: bottom;
    }

    .banner_sec h1 {
        font-size: 24px;
    }

    .banner_sec p {
        font-size: 13px;
    }

    .banner_sec button {
        font-size: 13px;
        padding: .5rem 1rem;
    }

    .course_vdo .left_vdo_indicator {
        left: 10px;
        z-index: 99;
        color: var(--text-color);
    }

    .course_vdo .right_vdo_indicator {
        right: 10px;
        z-index: 99;
        color: var(--text-color);
    }

    .course_vdo_container {
        padding: 2rem;
    }

    .course_vdo_container h3 {
        font-size: 18px;
    }

    .course_vdo_container p {
        font-size: 13px;
    }

    .courses_inner p {
        font-size: 12px;
    }

    .courses_inner h3 {
        font-size: 24px;
    }

    .courses_inner .nav-link {
        font-size: 13px !important;
        border: 1px solid var(--prime-border-color);
        color: var(--text-color) !important;
        font-family: var(--inter);
        padding: 6px;
    }

    .courses_inner .course_details {
        margin: 1rem 0;
    }

    .courses_inner .course_details img {
        width: 100% !important;
    }

    .course_left {
        left: 0;
        top: 0;
    }

    .course_right {
        right: 0;
        top: 0
    }

    .about_us h3 {
        font-size: 12px;
    }

    .about_us h2 {
        font-size: 18px;
    }

    .about_us p {
        font-size: 13px;
    }

    .languages h6 {
        font-size: 12px;
    }

    .languages h2 {
        font-size: 18px;
    }

    .languages .lang_div h3 {
        font-size: 30px;
    }

    .languages .lang_div p {
        font-size: 18px;
    }

    .certificate .bg-box {
        display: none;
    }

    .certificate img {
        margin-top: 2rem;
        width: 100% !important;
    }

    .certificate h6 {
        font-size: 13px;
    }

    .certificate h2 {
        font-size: 24px;
    }

    .certificate p {
        font-family: 13px;
    }

    .highlights h6 {
        font-size: 12px;
    }

    .highlights h2 {
        font-size: 18px;
    }

    .highlights .icon {
        padding: 9px;
    }

    .highlights .icon img {
        width: 30px;
    }

    .highlights_card h4 {
        font-size: 16px;
    }

    .highlights_card p {
        font-size: 13px;
    }

    .highlights .get_started img {
        display: none;
    }

    .highlights .highlights_card {
        margin-top: 1rem;
    }

    .get_started h3 {
        font-size: 20px;
    }

    .get_started p:first-child {
        font-size: 13px;
    }

    .get_started a button {
        padding: .5rem 1rem;
    }

    .about_us {
        padding: 0;
    }

    .cac h2 {
        font-size: 24px;
    }

    .cac .unity h3 {
        font-size: 18px;
    }

    .cac .unity h2 {
        font-size: 24px;
    }

    .cac .unity p {
        font-size: 15px;
    }

    .cac .unity li {
        font-size: 15px;
    }

    .cac .edu h3:first-child {
        font-size: 18px;
    }

    .cac .edu h2 {
        font-size: 24px;
    }

    .cac .edu p {
        font-size: 15px;
    }

    .cac .listing h3:first-child {
        font-size: 18px;
    }

    .cac .listing h2 {
        font-size: 24px;
    }

    .cac .listing li,
    .cac .listing p {
        font-size: 18px;
    }

    .footer h6 {
        font-size: 14px;
    }

    .footer ul li {
        font-size: 13px;
    }

    .connect p {
        font-size: 13px;
    }

    .signUp_popup .modal-body h2 {
        font-size: 18px;
    }

    .signUp_popup .modal-body p,
    .signUp_popup .modal-body select,
    .signUp_popup .modal-body label,
    .signUp_popup .modal-body button,
    .signUp_popup .modal-body input {
        font-size: 13px;
    }

    .contract input{
        width: max-content;
    }

    .referral .level p {
        font-size: 13px;
    }

}