@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
    background: #fafbfe;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /*font-family: 'Verdana';*/
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/verdana.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #525ca3;
    --theme-color-light: #a3aade;
    --sidebar-width: 320px;
}

::-webkit-scrollbar {
    width: 7px;
    border-radius: 25px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    width: 7px;
    border-radius: 25px;
    background: var(--theme-color-light);
}

.rx-hide {
    display: none;
}

.white-space-normal {
    white-space: normal !important;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 295px;
    height: 100%;
    background-color: #525ca3;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    z-index: 999;
}

.sidebar-content {
    height: calc(100vh - 110px);
    overflow-x: auto;
    padding-bottom: 20px;
}

.sidebar-content::-webkit-scrollbar {
    width: 3px;
    background: #525ca3;
    border-radius: 20px;
}

.sidebar-content::-webkit-scrollbar-thumb {
    width: 3px;
    background: #a3aade;
    border-radius: 20px;
}

.sidebar-content-wrap ul {
    margin-bottom: 0;
}

.sidebar-content-wrap ul li {
    list-style: none;
}

.sidebar-content-wrap a {
    text-decoration: none;
}

.sidebar-header {
    padding: 15px 25px;
    height: 110px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.plus-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
}

.plus-icon::before,
.plus-icon::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.plus-icon::before {
    width: 70%;
    height: 2px;
}

.plus-icon::after {
    width: 2px;
    height: 70%;
}

.dd-link.active .plus-btn .plus-icon::after {
    display: none;
}

.dropdown-content {
    display: none;
}

.nav-list-ul .nav-link {
    padding: 10px 25px;
}

.nav-list-ul .nav-link.active {
    background: #465099;
}

.nav-list-ul .dropdown-container.active > .dropdown-btn-wrap > .arrow-btn,
.nav-list-ul .dd-link.active > .dropdown-btn-wrap > .arrow-btn {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-list-ul .nav-link > .dropdown-btn-wrap > .dropdown-label a {
    text-transform: none;
    cursor: pointer;
}


.nav-list-ul .nav-link > .dropdown-btn-wrap:hover > .dropdown-label a {
    color: #fff;
}

.nav-list-ul .nav-link > .dropdown-btn-wrap:hover > .dropdown-label a img,
.nav-list-ul .nav-link.active > .dropdown-btn-wrap > .dropdown-label a img {
    opacity: 1;
}

.nav-list-ul .nav-link.menu-open > .dropdown-btn-wrap > .dropdown-label a,
.nav-list-ul .nav-link.active > .dropdown-btn-wrap > .dropdown-label a {
    color: #fff;
    font-weight: 500;
}

.nav-list-ul .nav-link .dropdown-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.nav-list-ul .nav-link > .dropdown-btn-wrap {
    min-height: 50px;
    margin-bottom: 0;
}

/*.nav-list-ul .nav-link .lvl1-dropdown .dropdown-btn-wrap {
    min-height: 40px;
}*/

.nav-list-ul .dropdown-btn-wrap.r-s-arrow {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav-list-ul .nav-link .dropdown-label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 85%;
    flex: 0 1 85%;
}

.nav-list-ul .nav-link .dropdown-label a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: #acc0e2;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.nav-list-ul .nav-link .dropdown-label a .nav-icon {
    margin-right: 10px;
    width: 30px;
    opacity: 0.7;
}

.nav-list-ul .nav-link .dropdown-btn {
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

.nav-list-ul .nav-link .dropdown-btn:hover {
    background: #465099;
}

.nav-list-ul .lvl1-dropdown .dropdown-btn {
    margin-right: 5px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
}

.nav-list-ul .nav-link .dd-link a {
    color: #fff;
}

.dd-link.active > .dropdown-content.lvl3-dropdown li.active a,
.dd-link.submenu-open > .dropdown-btn-wrap > .dropdown-label a,
.dd-link.active > .dropdown-btn-wrap > .dropdown-label a,
.nav-list-ul .nav-link .dd-link a:hover {
    color: #b3ba38;
    font-weight: 500;
}

.nav-list-ul .nav-link > .lvl1-dropdown > .dd-link {
    padding-left: 34px;
}

.nav-list-ul .nav-link .lvl2-dropdown > .dd-link {
    padding-left: 25px;
    margin-bottom: 5px;
}

.nav-list-ul .nav-link > .lvl1-dropdown > .dd-link .dropdown-label a {
    font-size: 16px;
}

.nav-list-ul .lvl3-dropdown {
    padding-left: 25px;
}

.nav-list-ul .dropdown-content.list-menu a {
    padding: 7px 7px 7px 20px;
    display: block;
    color: #fff;
    position: relative;
}

.nav-list-ul .dropdown-content.list-menu a::before {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    top: 13px;
    left: 5px;
}

.dd-link.active > .dropdown-content,
.dropdown-container.active > .dropdown-content {
    display: block;
}

/* Sidebar End */

/* Mobile Header */
.m-header,
.sidebar-close {
    display: none;
}

.m-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: var(--theme-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 995;
}

.m-header-logo a {
    display: block;
}

/*.m-header-logo a img {
    width: calc(100% - 30px);
}*/

.sidebar-toggle-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
}

.toggle-btn-wrap .icon-bar {
    display: block;
    width: 30px;
    height: 4px;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 25px;
}

.toggle-btn-wrap .icon-bar:last-of-type {
    margin-bottom: 0;
}

.toggle-btn-wrap .icon-bar:first-of-type,
.toggle-btn-wrap .icon-bar:last-of-type {
    width: 22px;
}

.sidebar-close-wrap img {
    width: 20px;
}

.sidebar.nav-open {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

/* Mobile Header End */

/* Content Section */
.main-section {
    width: calc(100% - var(--sidebar-width));
    min-height: calc(100vh - 85px);
    margin-left: var(--sidebar-width);
}

/* Hero Image Section */

.section-hero-image {
    height: 224px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.content-section-header-wrap {
    padding: 10px 20px;
}

.section-title h1 {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    margin: 0;
}

.g-search-input {
    position: relative;
}

.g-search-result {
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0px 60px rgba(0, 0, 0, 0.3);
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 99;
}

.g-search-result li {
    list-style: none;
    display: block;
    padding: 5px;
    border-bottom: 1px solid rgb(121, 119, 119, 0.1);
}

.g-search-result li a {
    text-decoration: none;
    font-size: 15px;
    color: #3c3c3c;
    display: block;
    padding: 5px;
}

.g-search-result li:hover {
    background: #eee;
}

.g-search-result li:hover a {
    color: var(--theme-color);
}

.g-search-input {
    display: inline-block;
    position: relative;
}

.g-search-input input {
    border-radius: 30px;
    width: 270px;
    padding: 10px 65px 10px 20px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #fff;
    height: calc(2.25rem + 10px);
    color: #fff !important;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;
}

.g-search-input input:focus {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.g-search-input input::-webkit-input-placeholder {
    color: #fff;
}

.g-search-input input:-ms-input-placeholder {
    color: #fff;
}

.g-search-input input::placeholder {
    color: #fff;
}

.g-search-input .search-icon {
    position: absolute;
    top: 9px;
    right: 20px;
}

.g-search-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    padding: 6px 20px;
    color: #fff;
    border-radius: 30px;
    background: rgb(0, 0, 0, 0.3);
    font-size: 15px;
    outline: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.g-search-btn:hover,
.g-search-btn:focus {
    background: rgb(0, 0, 0, 0.8);
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Hero Image Section End */

/* Breadcrumb Section */

.breadcrumb-wrap {
    padding: 10px 15px;
}

.breadcrumb-wrap ul li {
    list-style: none;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 7px;
    padding-left: 0px;
    font-weight: 500;
    font-size: 15px;
    color: #525ca3;
}

.breadcrumb-wrap ul li a {
    text-decoration: none;
    color: #acabab;
}

.breadcrumb-wrap ul li a:hover {
    color: #525ca3;
}

.breadcrumb-wrap ul li::before {
    font-family: 'FontAwesome';
    content: '\f105';
    font-size: 16px;
    font-weight: 600;
    color: #b3ba38;
    /*position: absolute;
    left: 0px;*/
	padding-right: 10px;
}

.breadcrumb-wrap ul li:first-of-type {
    margin: 0;
    padding: 0;
}

.breadcrumb-wrap ul li:first-of-type::before {
    display: none;
}

/* Breadcrumb Section End */

.data-section {
    background: #fafbfe;
    -webkit-box-shadow: 0 -10px 17px rgba(0, 0, 0, 0.1);
    box-shadow: 0 -10px 17px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    min-height: calc(100vh - 344px);
}

/* Home Section */
.home-page--links a {
    text-decoration: none;
    color: #fff;
}

.home-page--links .card-block {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 20px;
    overflow: hidden;
    min-height: 200px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .5s ease;
    transition: .5s ease;
    margin-bottom: 15px;
}

.home-page--links .card-block:hover {
    -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.home-page--links .card-header {
    border-bottom: 0;
    background: transparent;
    padding: 1rem 1.25rem 0;
}

.home-page--links .card-content {
    padding: .75rem 1.25rem;
    max-height: 120px;
    overflow: hidden;
}

.home-page--links .card-content p {
    font-size: 15px;
    margin: 0;
}

.home-page--links .card-header h4 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding: 5px 0 12px;
    margin: 0;
    font-size: 20px;
}

.home-page--links .card-block a {
    text-decoration: none;
    color: #fff;
}

.home-page--links .card-block.what-we--link {
    background: #b2bb1c;
}

.home-page--links .card-block.how-we--link {
    background: #cfab7a;
}

.home-page--links .card-block.our-partners--link {
    background: #4a63ae;
}

.card-placeholder-img {
    position: absolute;
    right: -14px;
    bottom: -58px;
    width: 150px;
    pointer-events: none;
}

/* Home Section Ends */

/* Book Demo Section */

.demo-form-container {
    padding: 0 60px;
}

.demo-form .form-group {
    margin-bottom: 2rem;
}

.demo-form .row .col-md-6:nth-child(2n+1) {
    padding-right: 30px;
}

.demo-form .row .col-md-6:nth-child(2n) {
    padding-left: 30px;
}

.control-label {
    font-size: 15px;
    color: #818181;
}

.form-input {
    height: calc(2.25rem + 10px);
    background: #f1efef;
    border-radius: 0;
}

.form-input:hover,
.form-input:focus {
    border: 1px solid #b3ba38;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f1efef;
}

.submit-btn {
    border-radius: 2px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    background: var(--theme-color);
    color: #b3ba38;
    width: 320px;
    margin: auto;
    height: calc(2.25rem + 10px);
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.submit-btn:hover,
.submit-btn:focus {
    background: #404dab;
}

.pp-content {
    font-size: 16px;
    color: #909090;
}

.pp-content a {
    color: #b3ba38;
}

/* Book Demo Section End */

/* Colleague Working */
.rx-card.card-block {
    border: 0;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}

.rx-card.card-block:hover {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.rx-card.card-block .card-content {
    padding: 1.25rem .9rem .7rem;
}

.rx-card.card-block .card-content h5 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 18px;
}

.rx-card.card-block .card-content p {
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rx-card.card-block .card-link {
    text-decoration: none;
    color: inherit;
}

.rx-card.card-block .card-img {
    padding: 0;
    height: 200px;
    background-color: #fff !important;
    /*background-size: auto !important;*/
    border: 8px solid #fff;
}

.rx-card.card-block .card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.rx-card.card-block .card-details {
    height: 75px;
    margin-bottom: 10px;
    overflow: hidden;
}

.rx-card.card-block .card-details p {
    margin: 0;
}

.view-btn {
    width: 100%;
    background: #b3ba38;
    border-radius: 2px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 0;
    z-index: 1;
}

.view-btn::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
    transform: translate(-50%, -50%) scale(0.1);
    background: rgba(255, 255, 255, 0.3);
    -webkit-transition: width .7s ease, height .7s ease, -webkit-transform .7s ease;
    transition: width .7s ease, height .7s ease, -webkit-transform .7s ease;
    transition: transform .7s ease, width .7s ease, height .7s ease;
    transition: transform .7s ease, width .7s ease, height .7s ease, -webkit-transform .7s ease;
    border-radius: 50%;
}

.view-btn:hover::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    width: 400px;
    height: 400px;
    opacity: 1;
}

.view-btn:hover,
.view-btn:focus {
    /*    background: #a6af0b;*/
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.section-desc {
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.section-desc h4 {
    color: var(--theme-color);
}

.section-desc p {
    font-size: 15px;
}

.section-heading {
    color: var(--theme-color);
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 15px;
}

/* Colleague Working End */

/* Login Popup */
.modal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: auto;
}

.modal-popup-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-popup-container {
    background: #fff;
    border: 2px solid #fff;
    border-radius: 15px;
    width: 400px;
    margin: 0 auto;
    overflow: hidden;
}

.modal-popup-header {
    background: var(--theme-color);
    padding: 30px 20px;
    text-align: center;
}

.login-form-wrap {
    padding: 30px 40px;
}

.login-form-wrap .control-label {
    font-weight: 500;
    color: #000;
}

.login-form-wrap .login-btns .btn {
    margin-left: 10px;
    border: 1px solid #ccc;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    opacity: 0.8;
}

.login-form-wrap .login-btns .btn:hover {
    opacity: 1;
}

.login-form-wrap .login-btns .login-btn {
    background: #448bc7;
}

/* Login Popup End */

/* Footer Code */
.footer-section {
    background: #f5f5f5;
    padding: 15px 30px;
    height: 80px;
    border-top: 1px solid #dadada;
}

.footer-section p {
    font-size: 15px;
}

/* Footer Code End */

.table-wrap table {
    border-collapse: separate;
    border-spacing: 0;
}

.table-wrap table td a {
    color: #3a3a3a;
}

.table-wrap tbody:before {
    content: "@";
    display: block;
    line-height: 18px;
    text-indent: -99999px;
}

.table-wrap .table thead th,
.table-wrap .table td,
.table-wrap .table th {
    border: 0;
    font-size: 15px;
}

.table-wrap .table thead th {
    font-size: 17px;
}

.table-wrap .table thead {
    background: #b3ba38;
    color: #fff;
    font-size: 16px;
}

.table-wrap .table thead th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 180px;
}

.table-wrap .table thead th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.table-wrap .table td,
.table-wrap .table th {
    max-width: 350px;
    padding: .8em 1em;
}

.table-wrap .table tbody tr:first-child td {
    border-top: 2px solid #cebb99;
}

.table-wrap .table tbody tr:last-child td {
    border-bottom: 2px solid #cebb99;
}

.table-wrap .table tbody td:first-child {
    border-left: 2px solid #cebb99;
}

.table-wrap .table tbody td:last-child {
    border-right: 2px solid #cebb99;
}

.table-wrap .table tbody tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

.table-wrap .table tbody tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

.table-wrap .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.table-wrap .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.external-link-cards .rx-card.card-block .card-content p {
    -webkit-line-clamp: 5;
}

.external-link-cards .rx-card.card-block .card-details {
    min-height: 132px;
}

.external-link-cards.min-h-110 .rx-card.card-block .card-details {
    min-height: 110px;
}
/* Content Section End */


/*latest code update start*/
.img-sec-mob {
    display: none;
}

.video-wrap {
    width: 100%;
}

/*latest code update end*/

/* Privacy Policy */
.privacy-policy-content h2 {
    font-size: 1.6rem;
}

.privacy-policy-content p {
    font-size: 15px;
    line-height: 24px;
}
/* Privacy Policy End */

/* Google search UI */
.gsc-control-cse {
    background-color: transparent !important;
    border: transparent !important;
    position: relative;
    top: -5px;
    left: -15px;
    color: #fff;
}

.gsc-input-box {
    border: none !important;
    background: transparent !important;
}

.g-search-box {
    border-radius: 30px;
    width: 270px;
    padding: 10px 65px 10px 20px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #fff;
    height: calc(2.25rem + 10px);
    color: #fff !important;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;

}

.gsc-control-cse.gsc-control-cse-en {
    padding: 0px;
}

.input.gsc-input {
    background: transparent !important;
    color: #fff;
}

input.gsc-input {
    background: transparent !important;
    color: #fff !important;
}

.gsc-search-button-v2 {
    position: absolute !important;
    right: -73px !important;
    padding: 6px 20px !important;
    color: #fff !important;
    border-radius: 30px !important;
    background: rgb(0, 0, 0, 0.3) !important;
    font-size: 15px !important;
    outline: none !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    top: 16px !important;
    border: none !important
}

.gsc-control-wrapper-cse {
    width: 116% !important;
}

/* Google search UI */
