@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    transition: all .15s ease;
}

.cursor-pointer{
    cursor: pointer;
}

body {
    font-family: 'Poppins', sans-serif;
}

html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        display: none;
    }

title {
    text-transform: uppercase;
}

.separator {
    margin-top: 10px;
    border-left: 1px solid #d0d0d0;
    height: 20px;
}

.navbar-nav,
.mr-auto {
    flex: 1;
    margin: auto !important;
    display: flex;
    justify-content: space-between;
}

    .navbar-nav > li:hover a {
        color: #101010 !important;
        cursor: pointer;
    }

    .navbar-nav > li > a {
        color: #5f5f5f !important;
    }

.applyButton {
    min-width: 80px;
    font-size: 11pt;
    padding: 0px;
    padding: 5px 7px;
}

#navbarNavLinkContainer ul li a.nav-link,
#navbarNavLinkContainer ul li a.nav-link:after,
#navbarNavLinkContainer ul li a.nav-link:before {
    transition: all .25s;
}

    #navbarNavLinkContainer ul li a.nav-link {
        position: relative;
    }

    #navbarNavLinkContainer ul li a.nav-link:after {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 0%;
        content: '.';
        color: transparent;
        background: rgba(200, 200, 200, 0.5);
        height: 1px;
    }

        #navbarNavLinkContainer ul li a.nav-link:hover:after {
            width: 100%;
        }

#joinUsText:hover {
    cursor: pointer;
}

.footer {
    background-color: #202020;
}

.footer-container {
    margin: auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
}

ul.navbar-nav,
.footer-col > ul {
    list-style: none;
}

.footer {
    background-color: #24262b;
    padding: 70px 0;
}

.footer-col {
    width: 33%;
    padding: 0 15px;
}

    .footer-col h4 {
        font-size: 18px;
        color: #ffffff;
        text-transform: capitalize;
        margin-bottom: 35px;
        font-weight: 500;
        position: relative;
    }

        .footer-col h4::before {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            background-color: #007bdd;
            height: 2px;
            box-sizing: border-box;
            width: 50px;
        }

    .footer-col ul li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        font-size: 16px;
        text-transform: capitalize;
        color: #ffffff;
        text-decoration: none;
        font-weight: 300;
        color: #bbbbbb;
        display: block;
        transition: all 0.3s ease;
    }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 8px;
        }

    .footer-col .social-links a {
        display: inline-block;
        height: 40px;
        width: 40px;
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0 10px 10px 0;
        text-align: center;
        line-height: 40px;
        border-radius: 50%;
        color: #ffffff;
        transition: all 0.5s ease;
    }

        .footer-col .social-links a:hover {
            color: #24262b;
            background-color: #ffffff;
        }

.footer-row > .navbar-info {
    color: #bbbbbb;
    font-size: 12pt;
}

.customFooter {
    background: #232930 !important;
}

@media only screen and (max-width : 991px) {
    .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(200, 200, 200, 0.5);
    }

    .nav-item:is(:last-child) {
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .separator {
        display: none;
    }
}

/*responsive*/
@media(max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media(max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}
