@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/** {
    font-family: "Quicksand", serif;
}*/
.lora {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
body {
    margin-bottom: 0px;
    font-family: "Catamaran", sans-serif;
    height: 100vh;
}

.header {
    padding: 10px 0px;
    background: #fff;
}

.navbar {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.navbar-brand img {
    margin-top: 5px;
}
li.nav-item {
    margin: 0px 15px;
}
.nav-link {
    padding: 0px !important;
    color: #fff;
    position: relative;
    font-family: "Catamaran", sans-serif;
    font-size: 15px;
    font-weight:500;
}
.nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #4285f4;
    left: 0px;
    bottom: -5px;
    transition: 0.3s ease;
    border-radius: 20px;
}
.nav-link:hover::before {
    width: 100%;
}
.nav-link:hover {
    color: #fff;
}
.navbar-toggler-icon {
    background-image: url('../images/download.svg');
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

.nav-item::hover {
    background: #c29747 !important;
}

.dropdown-menu {
    padding: 10px !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
    border-top: 2px solid #4285f4;
    color: #000;
}

.dropdown-menu li a {
    font-size: 14px !important;
    font-weight: 600;
    color: #000;
}

.dropdown-menu li {
    border-bottom: 1px dashed #5959592e;
}

.dropdown-item {
    padding: 8px !important;
    color: #182b63;
    position: relative;
}

    .dropdown-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #182b63;
        z-index: -1;
        transition: 0.3s ease;
    }

    .dropdown-item:hover::before {
        width: 100%;
    }

    .dropdown-item:focus, .dropdown-item:hover {
        color: #fff;
        background-color: transparent;
    }

.bg-purple .nav-link {
    padding: 10px 0.7em !important;
    color: #fff;
    font-weight: 500;
}

    .bg-purple .nav-link:hover {
        color: #fff;
    }

.bg-purple .dropdown-menu {
    padding: 10px !important;
    background-color: #822b6a;
    background-clip: padding-box;
    border: 0;
    border-radius: 0;
    border-top: 2px solid #c29747;
}

    .bg-purple .dropdown-menu li a {
        font-size: 14px !important;
        font-weight: 600;
    }

.bg-purple .dropdown-item {
    padding: 8px !important;
    color: #fff;
    position: relative;
}

    .bg-purple .dropdown-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #c29747;
        z-index: -1;
        transition: 0.3s ease;
    }

    .bg-purple .dropdown-item:hover::before {
        width: 100%;
    }

    .bg-purple .dropdown-item:focus, .bg-purple .dropdown-item:hover {
        color: #fff;
        background-color: transparent;
    }

.top-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-group {
    margin-bottom: 10px;
    position: relative;
}

    .form-group .form-control {
        height: 45px;
        padding-left: 45px;
        border: 1px solid #4285f4;
    }

input::placeholder {
    font-style: italic !important;
}

.icon {
    width: 65px;
    height: 65px;
    background: #182b630d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #4285f4;
}

.icon-group {
    position: absolute;
    width: 45px;
    height: 45px;
    top: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4285f4;
    border-radius: 5px 0px 0px 5px;
    font-size: 18px;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
}

.form-check-label {
    color: #000;
    font-weight: 400 !important;
    font-size: 14px;
}

.heading {
    font-size: 28px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
}

.title {
    flex: 1;
}

.login p {
    color: #fff;
}

.login-form {
    padding: 15px 25px;
    border-radius: 20px;
    border: 4px solid #4285f4a3;
    background: #fff;
}

    .login-form h3 {
        font-size: 20px;
        color: #182b63;
        font-weight: 600;
        margin-bottom: 0px;
    }

    .login-form p {
        color: #595959;
    }

.hr-line {
    margin: 1rem 0;
    color: #c29747;
    background-color: #c29747;
    border: 0;
    opacity: .25;
}

.hr-white {
    width: 90%;
    height: 1px;
    margin: 1rem 0;
    background-color: #ffffff70;
    position: relative;
}

    .hr-white::before {
        content: "";
        width: 80px;
        height: 5px;
        background: #c29747;
        position: absolute;
        top: -2px;
        left: 0;
        border-radius: 10px;
    }

.submit-btn {
    background: #822b6b;
    color: #fff;
    border: 1px solid transparent;
    padding: 6px 20px;
    border-radius: 5px;
}

    .submit-btn:hover {
        background: #4285f4;
    }

.account-heading {
    display: flex;
    align-items: center;
    justify-content: right;
}

.forgot-heading p {
    margin-bottom: 0px;
}

.account-heading p {
    margin-top: 10px;
    color: #595959;
    text-align: right;
    margin-bottom: 0px;
}

.account-heading span {
    color: #182b63;
    font-weight: 600;
}

.space-section.login {
    padding: 15px 0px 15px 0px;
    background: url(../images/bgimg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 500px !important;
    /* height: calc(100vh - 165px);*/
}

.get-start-btn {
    background: #c29747;
    border: 0px;
    padding: 10px 20px;
    color: #fff;
    border-radius: 30px;
}

.footer-logo li {
    display: inline-block;
    width: 150px;
    margin-right: 10px;
}

.footer {
    padding: 18px 5px;
    background: #fff;
    width: 100%;
}

    .footer ul {
        padding-left: 0px;
        margin-bottom: 0px;
        display: flex;
        align-items: center;
    }

.bg-grey {
    padding: 0.5rem 0rem;
    background: #d6d6d6;
    min-height: 400px !important;
}

.add-form {
    background: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.table-list thead th {
    background: #4285f4;
    font-size: 14px;
    color: #fff;
}
table.dataTable.no-footer {
     border-bottom: 0px solid rgba(0, 0, 0, 0.3); 
}

.table > :not(:last-child) > :last-child > * {
    border-bottom-color: #ccc !important;
}

.table-responsive {
    background: #fff;
    padding: 1px 1px;
    border-radius: 0px;
}

.table-list td {
    font-size: 14px;
    vertical-align: middle;
}

.pagination {
    justify-content: end;
}

    .pagination a {
        color: black;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
        transition: background-color .3s;
    }

        .pagination a.active {
            background-color: #4285f4;
            color: white;
        }

.action-icon {
    display: flex;
}

    .action-icon .edit {
        width: 28px;
        height: 28px;
        background: #4f813b;
        margin: 0px 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 10px;
        border:0px;
    }

    .action-icon .download {
        width: 28px;
        height: 28px;
        background: #476782;
        margin: 0px 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 10px;
    }

    .action-icon .delete {
        background: #822b6a !important;
        color: #fff !important;
        border: 0;
        border-radius: 2px;
    }

.table-responsive .table {
    padding-top: 5px !important;
    margin-top: 0px;
}

.bg-purple {
    background: #822b6a !important;
}

.add-records {
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 16px;
}

.bg-grey .form-group .form-control {
    padding-left: 15px;
}

.form-check {
    margin-right: 10px;
}

.add-record {
    background: #4f813b;
    color: #fff;
    border-radius: 5px;
    border: 0px;
    padding: 8px 15px;
}

.back-btn {
    background: #822b6a;
    color: #fff;
    border-radius: 5px;
    border: 0px;
    padding: 8px 15px;
    color: #fff;
}
.logo-right {
    text-align:right;
}
.tag-line {
    font-size: 12px;
    font-family: system-ui;
    margin-right: -45px;
    margin-bottom: 1px;
    margin-top: 0px;
    position: relative;
    top: -1px;
    text-align: end;
}
.footer p {
    margin-bottom:0px;
    text-align:left;
}
.logo-insight {
    text-align:center;
}
.logo-insight img{
    position:relative;
    left:20px;
}
.key-partner {
    margin-bottom: 0px;
    margin-top: 0px;
    padding-left: 0px;
}
.key-partner li{
    display: inline-block;
    width: 20%;
    margin-left: 30px;
}
.sub-header {
    padding: 20px 5px;
    background: #182b63;
    color: #fff;
}
.bg-light-blue {
    background: #e0e0e0;
}
.top-nav {
    margin-bottom: 0px;
    text-align: right;
}
.top-nav li {
    display: inline-block;
    padding: 0px 5px;
    font-size: 14px;
    position: relative;
}
.top-nav li a{
    color: #fff;
    text-decoration: none;
}
.top-nav li::before {
    content: "|";
    position: absolute;
    right: -4px;
}
.part-log {
    padding-left: 0px;
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}
.part-log li {
    display: inline-block;
    flex: 1;
    margin: 0px 10px;
}
.banner-section {
    background: url(../images/bg-2.webp);
    height: 520px;
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
}
.baner-content {
    color: #fff;
}
.banner-title {
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: bold;
}
.banner-title span{
    color: #4285f4;
}
.baner-content p{
    font-size: 16px;
    line-height: 30px;
}
.bg-light-grey {
    background: #fafafa;
}
.other-space {
    padding:25px 20px;
}
.accordion-item {
    border:0px !important;
}
.accordion-button {
    background: transparent !important;
    color: #000 !important;
    border-radius: 5px;
    border: 1px solid #182b6321;
    font-weight: 500;
    font-size: 16px;
}
.sub-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: "Lora", serif;
    color: #182b63;
    margin-top: 10px;
}
.accordion-header {
    margin-bottom: 10px;
}
.blog-box {
    border-bottom: 1px solid #80808054;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.blog-box h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4f813b;
    line-height:30px;
}
.blog-box h6 a {
    color: #4f813b;
    text-decoration:none;
}
.blog-box p{
    font-size:18px;
    line-height:25px;
}
.slide-banner {
    background: url('../images/banner-img-1.png');
    background-size: cover;
    background-position: 50% 50%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    text-align: left !important;
}
.slide-banner::before {
    content:"";
    opacity: 0.40;
    background: linear-gradient(92deg, var(--theme-palette-color-4, #000000) 30%, rgba(0, 0, 0, 0.3) 68%);
    width:100%;
    height:100%;
    position:absolute;
    top:0px;
    left:0px;
}
.btn-learn-more {
    background: #fff;
    position: relative;
    z-index: 1;
    transition:0.3s ease-in;
}
    .btn-learn-more:hover {
        background: #822b6a;
        color:#fff;
    }
    .baner-title {
    font-size: 58px;
    line-height: 1.3em;
    text-shadow: 1px 1px 5px rgba(3, 3, 12, 0.49);
    color: #fff;
    font-family: "Lora", serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.baner-sub-title {
    margin-bottom: 26px;
    font-size: 28px;
    line-height: 1.4em;
    font-weight: 600;
    font-family: Catamaran;
    text-shadow: 1px 1px 5px rgba(3, 3, 12, 0.5);
    color:#fff;
    position:relative;
    z-index:1;
}
p {
    line-height: 34px;
    font-size: 20px;
    font-weight: 400;
    text-align: justify;
}
.navbar-toggler {
    background: #ffffff;
    z-index: 1;
}
.counter-box p {
    text-align: center;
}
th, td {
    font-size: 14px;
    vertical-align: middle;
}
th {
    background-color: #15245f !important;
    color: #fff;
}
.footer1-column p {
    text-align: unset;
}
.hr-line-faq {
    background-color: rgb(220 220 220 / 36%);
    opacity: 1;
    margin: 0.8rem 0;
}
.light-grey-strip {
    background: #E0E0E0 !important;
    padding: 45px 0px 5px;
}
.text-purple {
    color: #822b6a;
}
.fill-btn {
    background: #822b6a !important;
    color: #fff !important;
    border: 1px solid #822b6a;
}
.fill-btn:hover {
    background: #ffff !important;
    color: #000 !important;
}
.hero {
    background: linear-gradient(180deg, rgb(255 255 255 / 88%) 0%, rgb(255 255 255 / 50%) 50%), url("../images/banner-img-1.png") no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10px;
    margin-bottom:0px;
}
.hero .home-title {
    font-size: 30px;
    font-weight: 700;
}
.latest-videos {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.video-card {
    background: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    display: block;
}

.video-info {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-size: 16px;
    color: #822b6a;
}
.partner-logo img {
    width: 50%;
    margin-bottom: 16px;
}
.partner-logo h6{
    margin-bottom:20px;
}
.w-60 {
    width:60% !important;
}
.btn-section .btn-default {
    background: #fff;
    color: #000;
    margin: 0px 5px;
    width: 190px;
    padding: 10px 12px;
    border: 2px solid #fff;
    transition: 0.2s ease-in;
    margin-bottom: 10px;
}
.btn-section .btn-default:hover {
    background:transparent;
    color:#fff;
}
.space-pad {
    padding: 45px 15px 20px;
}
.btn-section {
    padding: 15px 5px;
}
.testimonial-box {
    background: #ffffff96;
    padding: 15px;
    border-radius: 5px;
    margin-bottom:15px;
}
.insight-box {
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    position: relative;
    min-height: 160px;
}
.insight-box::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 20px;
    border-top: 15px solid #fff;
    border-bottom: 12px solid #ff000000;
    border-left: 12px solid #ff000000;
    border-right: 12px solid #ff000000;
}
.insight-box p {
    margin-bottom: 0px;
    line-height: 22px;
    font-size: 16px;
}
.user-detail {
    display: flex;
    margin-top:25px;
    align-items:center;
}
.user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-right: 20px;
    background: #fff;
    border: 5px solid #fff;
}
.user-description h5 {
    font-size:20px;
    font-weight:600;
    margin-bottom:4px;
    color:#822b6a;
}
.user-description p {
    font-size:16px;
    margin-bottom:0px;
    line-height:unset !important;
}
.insight-box h5 {
    color: #822b6a;
    font-weight: 600;
}

.footer-bottom p {
    margin-bottom:0px;
    font-size:16px;
}
.footer1 {
    background-color: #15245f;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer1-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer1-column {
    flex: 1;
    min-width: 200px;
}

.footer1-column h4 {
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    font-family: "Catamaran", sans-serif;
}

.footer1-column p {
    font-family: "Catamaran", sans-serif;
    font-weight: 600;
    font-size: 16px;
    font-weight: 700;
}

.footer1-column ul {
    list-style: none;
    padding: 0;
}

.footer1-column ul li {
    margin-bottom: 5px;
    font-family: "Catamaran", sans-serif;
    font-weight: 600;
}

.footer1-column ul li a {
    color: #ffffff;
    text-decoration: none;
}

.footer1-column ul li a:hover {
    color: #e1b03d;
}

.connect form {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}
.connect label {
    margin-bottom: 5px;
    font-family: "Catamaran", sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.connect span {
    font-size: 0.8rem;
    font-style: italic;
}
.connect input {
    padding: 8px;
    border: none;
    border-radius: 3px;
    margin-bottom: 10px;
}
.connect button {
    width: fit-content;
    padding: 8px 16px;
    background-color: #822b6a;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    border: 2px solid #dfe4eb00;
    font-family: "Catamaran", sans-serif;
}
.connect button:hover {
    background-color: transparent;
    border: 2px solid #fff !important
}
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: white;
}
.footer1-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.9rem;
}
.footer1-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}
.footer1-bottom a:hover {
    text-decoration: underline;
}
.footer-bottom {
    display: flex;
    padding: 10px 10px 5px;
}
.footer-bottom a {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
}
.wide-band {
    padding:75px 10px !important;
}
.counter-nums {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #822b6a;
    line-height: 28px;
    margin-bottom: 20px;
}
.name-title {
    font-size:16px;
}
.user-description {
    flex: 1;
}
.fmc-align {
    position: relative;
    top: -10px;
    width: 55% !important;
}
.mt-10{
    margin-top: 10px;
}
.owl-item {
    display:flex;
}
button.owl-prev, button.owl-next {
    width: 35px;
    height: 35px;
    background: #822b6a !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    border-radius: 3px;
    position:relative;
}
button.owl-prev span, button.owl-next span {
    color: #fff !important;
    font-size: 40px !important;
}
.owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 41%;
}
button.owl-prev {
    left:-24px;
}
button.owl-next {
    left: 24px;
}
.carousel-control-next, .carousel-control-prev {
    top: 50% !important;
    background: #822b6a;
    height: 50px;
    width: 50px;
    opacity:1;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 1rem;
    height: 1rem;
}
.carousel-inner {
    border: 4px solid #e0e0e05c;
    padding: 5px;
    margin-top:20px;
}
