@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html,
body {
    height: 100%;
    font-family: 'Inter', sans-serif;
}

.body-wrap {
    background-color: #fafaff;
    height: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

nav.mobile-menu button {
    display: none;
}

header {
    line-height: 23px;
    font-weight: 500;
    top: 0;
    background-color: #fff;
    width: 100%;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    position: relative;
    z-index: 99999;
    padding: 15px 0;
}

.logo-wrap img {
    max-width: 200px;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

header ul li {
    display: inline-block;
}

header ul li a {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    display: block;
    position: relative;
    -webkit-transition: opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, background-color 0.4s ease-in-out;
    padding: 0 15px;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 70px 0;
}

footer .icon-wrap {
    padding-right: 10px;
}

footer h4 {
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
}

footer h3,
footer p {
    font-size: 14px;
    color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-bottom: 0;
}

footer .news-form {
    margin-top: 25px;
}

footer .news-form input.form-control {
    max-width: 300px;
    box-sizing: border-box;
    padding: 10px;
    display: inline-block;
    border: 1px solid #ddd;
    background-color: #f4f4f4;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0;
}

footer .news-form button#button-addon2 {
    box-sizing: border-box;
    display: inline-block;
    padding: 10px;
    border: 1px;
    border-color: #ddd;
    background-color: #444;
    background-image: none;
    text-shadow: none;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    border-radius: 0;
    margin: 0;
}

.social-icons-wrap i {
    width: 32px;
    height: 32px;
    line-height: 31px;
    text-align: center;
    margin-right: 5px;
}

i.fa.fa-facebook {
    background-color: #3b5998 !important;
}

i.fa.fa-instagram {
    background: #ea2c59 !important;
}

i.fa.fa-twitter {
    background: #00aced !important;
}

i.fa.fa-youtube {
    background: #a82400 !important;
}

.login-wrap {
    padding: 70px 0;
}

.login-wrap label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0;
}

.login-wrap input {
    font-size: 15px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 8px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 0;
}

.login-wrap input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.login-wrap .btn.btn-primary {
    background: #29467b;
    border: 1px solid #29467b;
    border-radius: 0;
    padding: 5px 25px;
}

.login-wrap .btn.btn-primary:focus {
    outline: none !important;
    box-shadow: none !important;
}

.box-wrap {
    background: #fff;
    padding: 50px;
}

.step-icon {
    background: #bbd3ff;
    width: 100px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    border-radius: 100px;
    color: #29467b;
    font-size: 40px;
    margin: 0 auto 30px;
}

.dashboard-cont-wrap {
    padding: 70px 0;
}

.dashboard-cont-wrap th {
    font-size: 16px;
    font-weight: 700;
    padding: 10px;
    text-transform: capitalize;
}

.dashboard-cont-wrap td {
    font-size: 16px;
    font-weight: 300;
    padding: 10px;
    text-transform: capitalize;
}

.dashboard-cont-wrap .table-responsive {
    border: 2px solid #EEEEEE;
    border-radius: 10px;
    padding: 10px;
}

.btn-td {
    margin: 0 5px;
}

html body .btn.btn-primary {
    background: #29467b;
    border: 1px solid #29467b;
    border-radius: 0;
    padding: 5px 25px;
    text-transform: capitalize;
    transition: 0.3s;
}

html body .btn.btn-primary:hover {
    opacity: 0.8;
}

a:hover {
    color: #29467b;
}

/*Responsive Styles*/

@media screen and (max-width: 1399px) {}

@media screen and (max-width: 1199px) {}

@media screen and (max-width: 991px) {
    .footer-det-wrap.d-flex {
        margin-top: 25px;
    }

    table.table {
        min-width: 1000px;
    }

    nav.mobile-menu ul {
        /* display: none; */
        height: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.3;
        position: absolute;
        background: #fff;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        top: 63px;
        width: 50%;
        z-index: 9;
    }

    nav.mobile-menu.open ul {
        /* display: block; */
        height: auto;
        opacity: 1;
        visibility: visible;
    }

    nav.mobile-menu button {
        display: inline-block;
        border: none;
        outline: none !important;
        box-shadow: none !important;
        background: transparent;
    }

    header {
        position: relative;
    }

    header ul li {
        display: block;
    }

    .logo-wrap img {
        max-width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .box-wrap {
        background: #fff;
        padding: 50px 25px;
    }
}

@media screen and (max-width: 575px) {
    .box-wrap {
        background: #fff;
        padding: 50px 0;
    }

    .ver-wrap-fieleds.d-flex .mb-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }
}