.dropdown,
.dropdown-center {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
    margin-left: 0;
}
.dropdown-menu {
    --bs-dropdown-zindex: 1000;
    --bs-dropdown-min-width: 10rem;
    --bs-dropdown-padding-x: 0;
    --bs-dropdown-padding-y: 0.5rem;
    --bs-dropdown-spacer: 0.125rem;
    --bs-dropdown-font-size: 1rem;
    --bs-dropdown-color: #212529;
    --bs-dropdown-bg: #ffffff;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-border-radius: 0.375rem;
    --bs-dropdown-border-width: 1px;
    --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-divider-margin-y: 0.5rem;
    --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --bs-dropdown-link-color: #212529;
    --bs-dropdown-link-hover-color: #1e2125;
    --bs-dropdown-link-hover-bg: #e9ecef;
    --bs-dropdown-link-active-color: #ffffff;
    --bs-dropdown-link-active-bg: #161616;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-item-padding-x: 1rem;
    --bs-dropdown-item-padding-y: 0.25rem;
    --bs-dropdown-header-color: #6c757d;
    --bs-dropdown-header-padding-x: 1rem;
    --bs-dropdown-header-padding-y: 0.5rem;
    position: absolute;
    z-index: var(--bs-dropdown-zindex);
    display: none;
    min-width: var(--bs-dropdown-min-width);
    padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
    margin: 0;
    font-size: var(--bs-dropdown-font-size);
    color: var(--bs-dropdown-color);
    text-align: left;
    list-style: none;
    background-color: var(--bs-dropdown-bg);
    background-clip: padding-box;
    border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
    border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: var(--bs-dropdown-spacer);
}
.dropdown-menu-start {
    --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0;
}
.dropdown-menu-end {
    --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto;
}
@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-sm-end {
        --bs-position: end;
    }
    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}
@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }
    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-md-end {
        --bs-position: end;
    }
    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}
@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }
    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0;
    }
    .dropdown-menu-lg-end {
        --bs-position: end;
    }
    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto;
    }
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    clear: both;
    font-weight: 400;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: var(--bs-dropdown-link-disabled-color);
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--bs-dropdown-header-color);
    white-space: nowrap;
}
.dropdown-item-text {
    display: block;
    padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
    color: var(--bs-dropdown-link-color);
}
.dropdown-menu-dark {
    --bs-dropdown-color: #dee2e6;
    --bs-dropdown-bg: #343a40;
    --bs-dropdown-border-color: var(--bs-border-color-translucent);
    --bs-dropdown-link-color: #dee2e6;
    --bs-dropdown-link-hover-color: #ffffff;
    --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
    --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
    --bs-dropdown-link-active-color: #ffffff;
    --bs-dropdown-link-active-bg: #161616;
    --bs-dropdown-link-disabled-color: #adb5bd;
    --bs-dropdown-header-color: #adb5bd;
}
.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}
.dropdown-toggle-split::after {
    margin-left: 0;
}
.btn-sm + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-color: var(--bs-link-color);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    --bs-nav-link-disabled-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .nav-link {
        transition: none;
    }
}
.nav-link:focus,
.nav-link:hover {
    color: var(--bs-nav-link-hover-color);
}
.nav-link.disabled {
    color: var(--bs-nav-link-disabled-color);
    pointer-events: none;
    cursor: default;
}
.navbar {
    --bs-navbar-padding-x: 0;
    --bs-navbar-padding-y: 0.5rem;
    --bs-navbar-color: rgba(0, 0, 0, 0.55);
    --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
    --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
    --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-padding-y: 0.3125rem;
    --bs-navbar-brand-margin-end: 1rem;
    --bs-navbar-brand-font-size: 1.25rem;
    --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
    --bs-navbar-nav-link-padding-x: 0.5rem;
    --bs-navbar-toggler-padding-y: 0.25rem;
    --bs-navbar-toggler-padding-x: 0.75rem;
    --bs-navbar-toggler-font-size: 1.25rem;
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
    --bs-navbar-toggler-border-radius: 0.375rem;
    --bs-navbar-toggler-focus-width: 0.25rem;
    --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
    color: var(--bs-navbar-brand-hover-color);
}
.navbar-nav {
    --bs-nav-link-padding-x: 0;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-color: var(--bs-navbar-color);
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
    --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .show > .nav-link {
    color: var(--bs-navbar-active-color);
}
.navbar-nav .dropdown-menu {
    position: static;
}
.navbar-text {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: var(--bs-navbar-color);
}
.navbar-text a,
.navbar-text a:focus,
.navbar-text a:hover {
    color: var(--bs-navbar-active-color);
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}
@media (min-width: 576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-sm .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-sm .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-md .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-md .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}
.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start;
}
.navbar-expand .navbar-nav {
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
}
.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}
.navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
}
.navbar-dark {
    --bs-navbar-color: rgba(255, 255, 255, 0.55);
    --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
    --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
    --bs-navbar-active-color: #ffffff;
    --bs-navbar-brand-color: #ffffff;
    --bs-navbar-brand-hover-color: #ffffff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    text-decoration: none;
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}
.page-link:hover {
    z-index: 2;
    color: var(--bs-pagination-hover-color);
    background-color: var(--bs-pagination-hover-bg);
    border-color: var(--bs-pagination-hover-border-color);
}
.page-link:focus {
    z-index: 3;
    color: var(--bs-pagination-focus-color);
    background-color: var(--bs-pagination-focus-bg);
    outline: 0;
    box-shadow: var(--bs-pagination-focus-box-shadow);
}
.disabled > .page-link,
.page-link.disabled {
    color: var(--bs-pagination-disabled-color);
    pointer-events: none;
    background-color: var(--bs-pagination-disabled-bg);
    border-color: var(--bs-pagination-disabled-border-color);
}
.page-item:not(:first-child) .page-link {
    margin-left: -1px;
}
.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}
.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 1rem;
    --bs-alert-padding-y: 1rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
}
.alert-primary {
    --bs-alert-color: #0d0d0d;
    --bs-alert-bg: #d0d0d0;
    --bs-alert-border-color: #b9b9b9;
}
.alert-primary .alert-link {
    color: #0a0a0a;
}
.alert-success {
    --bs-alert-color: #005d3b;
    --bs-alert-bg: #ccebe0;
    --bs-alert-border-color: #b3e1d0;
}
.alert-success .alert-link {
    color: #004a2f;
}
.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #f8d7da;
    --bs-alert-border-color: #f5c2c7;
}
.alert-danger .alert-link {
    color: #6a1a21;
}
.alert-dark {
    --bs-alert-color: #141619;
    --bs-alert-bg: #d3d3d4;
    --bs-alert-border-color: #bcbebf;
}
.alert-dark .alert-link {
    color: #101214;
}
@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}
.progress {
    --bs-progress-height: 1rem;
    --bs-progress-font-size: 0.75rem;
    --bs-progress-bg: #e9ecef;
    --bs-progress-border-radius: 0.375rem;
    --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    --bs-progress-bar-color: #ffffff;
    --bs-progress-bar-bg: #161616;
    --bs-progress-bar-transition: width 0.6s ease;
    display: flex;
    height: var(--bs-progress-height);
    overflow: hidden;
    font-size: var(--bs-progress-font-size);
    background-color: var(--bs-progress-bg);
    border-radius: var(--bs-progress-border-radius);
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
        center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.5;
}
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}
.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(22, 22, 22, 0.25);
    opacity: 1;
}
.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25;
}
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-bg: #ffffff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: none;
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal-sm {
        --bs-modal-width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        --bs-modal-width: 800px;
    }
}
.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentcolor;
    opacity: 0.5;
}
.placeholder.btn::before,
footer .placeholder.form-submit::before {
    display: inline-block;
    content: "";
}
.placeholder-sm {
    min-height: 0.8em;
}
.placeholder-lg {
    min-height: 1.2em;
}
@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}
@keyframes placeholder-wave {
    100% {
        mask-position: -200% 0;
    }
}
.clearfix::after {
    display: block;
    clear: both;
    content: "";
}
.text-bg-primary {
    color: #fff !important;
    background-color: RGBA(22, 22, 22, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-success {
    color: #000 !important;
    background-color: RGBA(0, 155, 99, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-danger {
    color: #fff !important;
    background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
}
.text-bg-dark {
    color: #fff !important;
    background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
}
.link-primary {
    color: #161616 !important;
}
.link-primary:focus,
.link-primary:hover {
    color: #121212 !important;
}
.link-success {
    color: #009b63 !important;
}
.link-success:focus,
.link-success:hover {
    color: #33af82 !important;
}
.link-danger {
    color: #dc3545 !important;
}
.link-danger:focus,
.link-danger:hover {
    color: #b02a37 !important;
}
.link-dark {
    color: #212529 !important;
}
.link-dark:focus,
.link-dark:hover {
    color: #1a1e21 !important;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.align-top {
    vertical-align: top !important;
}
.align-bottom {
    vertical-align: bottom !important;
}
.align-text-bottom {
    vertical-align: text-bottom !important;
}
.align-text-top {
    vertical-align: text-top !important;
}
.float-start {
    float: left !important;
}
.float-end {
    float: right !important;
}
.float-none {
    float: none !important;
}
.opacity-0 {
    opacity: 0 !important;
}
.opacity-25 {
    opacity: 0.25 !important;
}
.opacity-50 {
    opacity: 0.5 !important;
}
.opacity-75 {
    opacity: 0.75 !important;
}
.opacity-100 {
    opacity: 1 !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.d-none {
    display: none !important;
}
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
    box-shadow: none !important;
}
.position-relative {
    position: relative !important;
}
.position-fixed {
    position: fixed !important;
}
.top-0 {
    top: 0 !important;
}
.top-50 {
    top: 50% !important;
}
.top-100 {
    top: 100% !important;
}
.bottom-0 {
    bottom: 0 !important;
}
.bottom-50 {
    bottom: 50% !important;
}
.bottom-100 {
    bottom: 100% !important;
}
.start-0 {
    left: 0 !important;
}
.start-50 {
    left: 50% !important;
}
.start-100 {
    left: 100% !important;
}
.end-0 {
    right: 0 !important;
}
.end-50 {
    right: 50% !important;
}
.end-100 {
    right: 100% !important;
}
.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-0 {
    border: 0 !important;
}
.border-top {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-end {
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-end-0 {
    border-right: 0 !important;
}
.border-bottom {
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-start {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.border-start-0 {
    border-left: 0 !important;
}
.border-primary {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}
.border-success {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}
.border-danger {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}
.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}
.border-white {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}
.border-1 {
    --bs-border-width: 1px;
}
.border-2 {
    --bs-border-width: 2px;
}
.border-3 {
    --bs-border-width: 3px;
}
.border-4 {
    --bs-border-width: 4px;
}
.border-5 {
    --bs-border-width: 5px;
}
.border-opacity-10 {
    --bs-border-opacity: 0.1;
}
.border-opacity-25 {
    --bs-border-opacity: 0.25;
}
.border-opacity-50 {
    --bs-border-opacity: 0.5;
}
.border-opacity-75 {
    --bs-border-opacity: 0.75;
}
.border-opacity-100 {
    --bs-border-opacity: 1;
}
.w-25 {
    width: 25% !important;
}
.w-50 {
    width: 50% !important;
}
.w-75 {
    width: 75% !important;
}
.w-100 {
    width: 100% !important;
}
.w-auto {
    width: auto !important;
}
.h-25 {
    height: 25% !important;
}
.h-50 {
    height: 50% !important;
}
.h-75 {
    height: 75% !important;
}
.h-100 {
    height: 100% !important;
}
.h-auto {
    height: auto !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.justify-content-start {
    justify-content: flex-start !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-end {
    align-items: flex-end !important;
}
.align-items-center {
    align-items: center !important;
}
.align-content-start {
    align-content: flex-start !important;
}
.align-content-end {
    align-content: flex-end !important;
}
.align-content-center {
    align-content: center !important;
}
.align-content-between {
    align-content: space-between !important;
}
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.m-5 {
    margin: 3rem !important;
}
.m-auto {
    margin: auto !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-1 {
    margin-top: 0.25rem !important;
}
.mt-2 {
    margin-top: 0.5rem !important;
}
.mt-3 {
    margin-top: 1rem !important;
}
.mt-4 {
    margin-top: 1.5rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}
.mt-auto {
    margin-top: auto !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-1 {
    margin-bottom: 0.25rem !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}
.mb-auto {
    margin-bottom: auto !important;
}
.ms-0 {
    margin-left: 0 !important;
}
.ms-1 {
    margin-left: 0.25rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.ms-3 {
    margin-left: 1rem !important;
}
.ms-4 {
    margin-left: 1.5rem !important;
}
.ms-5 {
    margin-left: 3rem !important;
}
.ms-auto {
    margin-left: auto !important;
}
.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.px-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
}
.px-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
}
.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
}
.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 0.25rem !important;
}
.pt-2 {
    padding-top: 0.5rem !important;
}
.pt-3 {
    padding-top: 1rem !important;
}
.pt-4 {
    padding-top: 1.5rem !important;
}
.pt-5 {
    padding-top: 3rem !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 0.25rem !important;
}
.pb-2 {
    padding-bottom: 0.5rem !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.pb-4 {
    padding-bottom: 1.5rem !important;
}
.pb-5 {
    padding-bottom: 3rem !important;
}
.gap-0 {
    gap: 0 !important;
}
.gap-1 {
    gap: 0.25rem !important;
}
.gap-2 {
    gap: 0.5rem !important;
}
.gap-3 {
    gap: 1rem !important;
}
.gap-4 {
    gap: 1.5rem !important;
}
.gap-5 {
    gap: 3rem !important;
}
.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}
.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}
.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}
.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}
.fs-5 {
    font-size: 1.25rem !important;
}
.fs-6 {
    font-size: 1rem !important;
}
.text-start {
    text-align: left !important;
}
.text-end {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}
.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}
.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}
.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}
.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}
.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}
.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}
.text-opacity-25 {
    --bs-text-opacity: 0.25;
}
.text-opacity-50 {
    --bs-text-opacity: 0.5;
}
.text-opacity-75 {
    --bs-text-opacity: 0.75;
}
.text-opacity-100 {
    --bs-text-opacity: 1;
}
.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}
.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}
.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}
.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}
.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}
.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}
.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}
.bg-opacity-100 {
    --bs-bg-opacity: 1;
}
.bg-gradient {
    background-image: var(--bs-gradient) !important;
}
.user-select-all {
    user-select: all !important;
}
.user-select-auto {
    user-select: auto !important;
}
.user-select-none {
    user-select: none !important;
}
.rounded {
    border-radius: var(--bs-border-radius) !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important;
}
.rounded-2 {
    border-radius: var(--bs-border-radius) !important;
}
.rounded-3 {
    border-radius: var(--bs-border-radius-lg) !important;
}
.rounded-4 {
    border-radius: var(--bs-border-radius-xl) !important;
}
.rounded-5 {
    border-radius: var(--bs-border-radius-2xl) !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.rounded-top {
    border-top-left-radius: var(--bs-border-radius) !important;
    border-top-right-radius: var(--bs-border-radius) !important;
}
.rounded-end {
    border-top-right-radius: var(--bs-border-radius) !important;
    border-bottom-right-radius: var(--bs-border-radius) !important;
}
.rounded-bottom {
    border-bottom-right-radius: var(--bs-border-radius) !important;
    border-bottom-left-radius: var(--bs-border-radius) !important;
}
.rounded-start {
    border-bottom-left-radius: var(--bs-border-radius) !important;
    border-top-left-radius: var(--bs-border-radius) !important;
}
@media (min-width: 576px) {
    .float-sm-start {
        float: left !important;
    }
    .float-sm-end {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !important;
    }
    .d-sm-table {
        display: table !important;
    }
    .d-sm-table-row {
        display: table-row !important;
    }
    .d-sm-flex {
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: inline-flex !important;
    }
    .d-sm-none {
        display: none !important;
    }
    .flex-sm-row {
        flex-direction: row !important;
    }
    .flex-sm-column {
        flex-direction: column !important;
    }
    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }
    .justify-content-sm-start {
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        justify-content: center !important;
    }
    .justify-content-sm-between {
        justify-content: space-between !important;
    }
    .align-items-sm-start {
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        align-items: center !important;
    }
    .align-content-sm-start {
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        align-content: center !important;
    }
    .align-content-sm-between {
        align-content: space-between !important;
    }
    .m-sm-0 {
        margin: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-0 {
        margin-top: 0 !important;
    }
    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mt-sm-3 {
        margin-top: 1rem !important;
    }
    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mt-sm-5 {
        margin-top: 3rem !important;
    }
    .mt-sm-auto {
        margin-top: auto !important;
    }
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }
    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-sm-5 {
        margin-bottom: 3rem !important;
    }
    .mb-sm-auto {
        margin-bottom: auto !important;
    }
    .ms-sm-0 {
        margin-left: 0 !important;
    }
    .ms-sm-1 {
        margin-left: 0.25rem !important;
    }
    .ms-sm-2 {
        margin-left: 0.5rem !important;
    }
    .ms-sm-3 {
        margin-left: 1rem !important;
    }
    .ms-sm-4 {
        margin-left: 1.5rem !important;
    }
    .ms-sm-5 {
        margin-left: 3rem !important;
    }
    .ms-sm-auto {
        margin-left: auto !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-sm-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-sm-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .pt-sm-0 {
        padding-top: 0 !important;
    }
    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pt-sm-3 {
        padding-top: 1rem !important;
    }
    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pt-sm-5 {
        padding-top: 3rem !important;
    }
    .pb-sm-0 {
        padding-bottom: 0 !important;
    }
    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-sm-5 {
        padding-bottom: 3rem !important;
    }
    .gap-sm-0 {
        gap: 0 !important;
    }
    .gap-sm-1 {
        gap: 0.25rem !important;
    }
    .gap-sm-2 {
        gap: 0.5rem !important;
    }
    .gap-sm-3 {
        gap: 1rem !important;
    }
    .gap-sm-4 {
        gap: 1.5rem !important;
    }
    .gap-sm-5 {
        gap: 3rem !important;
    }
    .text-sm-start {
        text-align: left !important;
    }
    .text-sm-end {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .float-md-start {
        float: left !important;
    }
    .float-md-end {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-table {
        display: table !important;
    }
    .d-md-table-row {
        display: table-row !important;
    }
    .d-md-flex {
        display: flex !important;
    }
    .d-md-inline-flex {
        display: inline-flex !important;
    }
    .d-md-none {
        display: none !important;
    }
    .flex-md-row {
        flex-direction: row !important;
    }
    .flex-md-column {
        flex-direction: column !important;
    }
    .flex-md-wrap {
        flex-wrap: wrap !important;
    }
    .justify-content-md-start {
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        justify-content: center !important;
    }
    .justify-content-md-between {
        justify-content: space-between !important;
    }
    .align-items-md-start {
        align-items: flex-start !important;
    }
    .align-items-md-end {
        align-items: flex-end !important;
    }
    .align-items-md-center {
        align-items: center !important;
    }
    .align-content-md-start {
        align-content: flex-start !important;
    }
    .align-content-md-end {
        align-content: flex-end !important;
    }
    .align-content-md-center {
        align-content: center !important;
    }
    .align-content-md-between {
        align-content: space-between !important;
    }
    .m-md-0 {
        margin: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-0 {
        margin-top: 0 !important;
    }
    .mt-md-1 {
        margin-top: 0.25rem !important;
    }
    .mt-md-2 {
        margin-top: 0.5rem !important;
    }
    .mt-md-3 {
        margin-top: 1rem !important;
    }
    .mt-md-4 {
        margin-top: 1.5rem !important;
    }
    .mt-md-5 {
        margin-top: 3rem !important;
    }
    .mt-md-auto {
        margin-top: auto !important;
    }
    .mb-md-0 {
        margin-bottom: 0 !important;
    }
    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-md-3 {
        margin-bottom: 1rem !important;
    }
    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
    .mb-md-auto {
        margin-bottom: auto !important;
    }
    .ms-md-0 {
        margin-left: 0 !important;
    }
    .ms-md-1 {
        margin-left: 0.25rem !important;
    }
    .ms-md-2 {
        margin-left: 0.5rem !important;
    }
    .ms-md-3 {
        margin-left: 1rem !important;
    }
    .ms-md-4 {
        margin-left: 1.5rem !important;
    }
    .ms-md-5 {
        margin-left: 3rem !important;
    }
    .ms-md-auto {
        margin-left: auto !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-md-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-md-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .pt-md-0 {
        padding-top: 0 !important;
    }
    .pt-md-1 {
        padding-top: 0.25rem !important;
    }
    .pt-md-2 {
        padding-top: 0.5rem !important;
    }
    .pt-md-3 {
        padding-top: 1rem !important;
    }
    .pt-md-4 {
        padding-top: 1.5rem !important;
    }
    .pt-md-5 {
        padding-top: 3rem !important;
    }
    .pb-md-0 {
        padding-bottom: 0 !important;
    }
    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-md-3 {
        padding-bottom: 1rem !important;
    }
    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-md-5 {
        padding-bottom: 3rem !important;
    }
    .gap-md-0 {
        gap: 0 !important;
    }
    .gap-md-1 {
        gap: 0.25rem !important;
    }
    .gap-md-2 {
        gap: 0.5rem !important;
    }
    .gap-md-3 {
        gap: 1rem !important;
    }
    .gap-md-4 {
        gap: 1.5rem !important;
    }
    .gap-md-5 {
        gap: 3rem !important;
    }
    .text-md-start {
        text-align: left !important;
    }
    .text-md-end {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 992px) {
    .float-lg-start {
        float: left !important;
    }
    .float-lg-end {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-table {
        display: table !important;
    }
    .d-lg-table-row {
        display: table-row !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: inline-flex !important;
    }
    .d-lg-none {
        display: none !important;
    }
    .flex-lg-row {
        flex-direction: row !important;
    }
    .flex-lg-column {
        flex-direction: column !important;
    }
    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }
    .justify-content-lg-start {
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        justify-content: center !important;
    }
    .justify-content-lg-between {
        justify-content: space-between !important;
    }
    .align-items-lg-start {
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        align-items: center !important;
    }
    .align-content-lg-start {
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        align-content: center !important;
    }
    .align-content-lg-between {
        align-content: space-between !important;
    }
    .m-lg-0 {
        margin: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-0 {
        margin-top: 0 !important;
    }
    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mt-lg-3 {
        margin-top: 1rem !important;
    }
    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mt-lg-5 {
        margin-top: 3rem !important;
    }
    .mt-lg-auto {
        margin-top: auto !important;
    }
    .mb-lg-0 {
        margin-bottom: 0 !important;
    }
    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }
    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .mb-lg-5 {
        margin-bottom: 3rem !important;
    }
    .mb-lg-auto {
        margin-bottom: auto !important;
    }
    .ms-lg-0 {
        margin-left: 0 !important;
    }
    .ms-lg-1 {
        margin-left: 0.25rem !important;
    }
    .ms-lg-2 {
        margin-left: 0.5rem !important;
    }
    .ms-lg-3 {
        margin-left: 1rem !important;
    }
    .ms-lg-4 {
        margin-left: 1.5rem !important;
    }
    .ms-lg-5 {
        margin-left: 3rem !important;
    }
    .ms-lg-auto {
        margin-left: auto !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .px-lg-1 {
        padding-right: 0.25rem !important;
        padding-left: 0.25rem !important;
    }
    .px-lg-2 {
        padding-right: 0.5rem !important;
        padding-left: 0.5rem !important;
    }
    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }
    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
    .pt-lg-0 {
        padding-top: 0 !important;
    }
    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pt-lg-3 {
        padding-top: 1rem !important;
    }
    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pt-lg-5 {
        padding-top: 3rem !important;
    }
    .pb-lg-0 {
        padding-bottom: 0 !important;
    }
    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pb-lg-5 {
        padding-bottom: 3rem !important;
    }
    .gap-lg-0 {
        gap: 0 !important;
    }
    .gap-lg-1 {
        gap: 0.25rem !important;
    }
    .gap-lg-2 {
        gap: 0.5rem !important;
    }
    .gap-lg-3 {
        gap: 1rem !important;
    }
    .gap-lg-4 {
        gap: 1.5rem !important;
    }
    .gap-lg-5 {
        gap: 3rem !important;
    }
    .text-lg-start {
        text-align: left !important;
    }
    .text-lg-end {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important;
    }
    .fs-2 {
        font-size: 2rem !important;
    }
    .fs-3 {
        font-size: 1.75rem !important;
    }
    .fs-4 {
        font-size: 1.5rem !important;
    }
}
@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes animate-scale {
    0% {
        font-size: 48px;
    }
    50% {
        font-size: 68px;
    }
    100% {
        font-size: 48px;
    }
}
@-webkit-keyframes fadeInLeftSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-30px, 0, 0);
        -ms-transform: translate3d(-30px, 0, 0);
        transform: translate3d(-30px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInRightSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        transform: translate3d(30px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpSmall {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 30px, 0);
        -ms-transform: translate3d(0, 30px, 0);
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInUpSmall {
    -webkit-animation-name: fadeInUpSmall;
    animation-name: fadeInUpSmall;
}
@-webkit-keyframes fadeInUpMid {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 70px, 0);
        transform: translate3d(0, 70px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpMid {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 70px, 0);
        -ms-transform: translate3d(0, 70px, 0);
        transform: translate3d(0, 70px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.heading-line::before {
    content: "";
    width: 10rem;
    height: 0.1rem;
    display: block;
    margin: 0 auto;
    background-color: #161616;
}
.heading-line::after {
    content: "";
    width: 2rem;
    padding-top: 0.5rem;
    height: 0.2rem;
    display: block;
    margin: 0 auto;
    margin-bottom: 1rem;
    background-color: #161616;
}
.display-3 {
    font-family: "Plus Jakarta Sans", sans-serif;
}
.display-3--title {
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    display: inline-block;
    background-image: linear-gradient(to right, #161616, #262b3f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 992px) {
    .display-3--title {
        font-size: 1.8rem;
    }
}
.border-right {
    border-right: 0;
}
@media (min-width: 576px) {
    .border-right {
        border-right: 0.1rem solid #dee2e6;
        height: 100%;
    }
}
.gradient {
    background: linear-gradient(to right, rgba(22, 22, 22, 0.95), rgba(38, 43, 63, 0.95));
}
.btn-rounded {
    position: relative;
    padding: 1rem 3.125rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.875rem;
    line-height: 1rem;
    font-weight: 400;
    margin: 0;
    border: 1px solid #fff;
    background-color: #fff;
    display: block;
    border-radius: 5px;
    color: #262b3f;
}
.btn-rounded span {
    position: absolute;
    background-color: transparent;
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}
.btn-rounded span i {
    color: #fff;
    font-size: 0.75rem;
    line-height: 2.5rem;
}
.btn-rounded:hover {
    background: linear-gradient(to right, rgba(22, 22, 22, 0.95), rgba(38, 43, 63, 0.95));
    color: #fff;
}
.btn-rounded:hover span {
    background-color: transparent;
}
.btn-rounded.btn-black {
    border: 1px solid #262b3f;
    background-color: #262b3f;
    color: #fff;
}
.btn-rounded-small {
    position: relative;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    color: #262b3f;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    border-radius: 4px;
    border: 1px solid #fff;
    background: #fff;
}
.primary-menu {
    background-color: rgba(0, 0, 0, 0);
    padding-bottom: 25px;
    padding-bottom: 0.9375rem;
}
@media (max-width: 991.98px) {
    .primary-menu {
        padding: 0;
        min-height: 52px;
    }

    .primary-menu .nav-location .dropdown-menu {
        mib-w: unset !important;
        min-width: 100% !important;
    }
    
    .primary-menu .nav-location .dropdown-menu ul li {
        font-size: 12px !important;
        padding: 10px !important;
        height: unset !important;
        display: flex !important;!i;!;
        height: 27px !important;
    }
    
    .primary-menu .nav-location .dropdown-menu ul li a {
        font-size: 12px !important;!i;!;
        padding: 5px !important;
        line-height: 12px !important;
        display: inline !important;
    }
    
    .li-spe {
        display: inline-flex !important;
    }
    
    .primary-menu .mobile-search li {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
        border-left: 1px solid rgba(255, 255, 255, 0.22);
        padding-left: 25px;
        height: 50px;
        line-height: 50px;
        padding-right: 13px;
    }
    .primary-menu .mobile-search .nav-search {
        padding-right: 20px !important;
        padding-left: 20px;
    }
}
@media (min-width: 992px) {
    .primary-menu {
        background-color: transparent;
        padding-bottom: 15px;
    }
}
.primary-menu > .container {
    position: relative;
    align-items: baseline;
}
.primary-menu.topnav-bg {
    background-color: #fff !important;
    padding-bottom: 5px;
}
.primary-menu.topnav-bg .navbar-nav .nav-link {
    color: #000;
}
.primary-menu.topnav-bg .navbar-nav .nav-link:hover {
    color: #f26223;
}
.primary-menu.topnav-bg .nav-global .nav-location img,
.primary-menu.topnav-bg .nav-global .search-wrap img {
    filter: brightness(0);
}
.primary-menu.topnav-bg .nav-search {
    border-left: 1px solid rgba(205, 205, 205, 0.22) !important;
    border-right: 1px solid rgba(205, 205, 205, 0.22) !important;
}
.primary-menu .navbar-brand {
    margin-right: 3.5rem;
}
.primary-menu .navbar-brand a.media {
    position: relative;
    top: 1px;
}
.primary-menu .navbar-brand a.media img {
    width: 170px;
    padding: 2px;
}
.primary-menu .navbar-brand a.media .logo-dark {
    position: absolute;
    left: 0;
    top: -8px;
    opacity: 0;
    visibility: hidden;
    max-width: 110px;
    transition: all 0.2s ease-in-out;
}
@media (min-width: 1200px) {
    .primary-menu .navbar-brand a.media .logo-dark {
        top: -15px;
        max-width: 140px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .primary-menu .navbar-brand a.media .logo-dark {
        transition: none;
    }
}
.primary-menu .navbar-brand a,
.primary-menu .navbar-brand a:hover {
    text-decoration: none;
}
.primary-menu li {
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
    border-bottom: 1px solid #495057;
}
@media (min-width: 992px) {
    .primary-menu li {
        border-bottom: none;
        padding: 0;
        margin: 0 1.3125rem;
    }
}
.primary-menu li a {
    color: #fff;
    padding: 0 0.25rem;
    text-transform: capitalize;
    font-size: 0.875rem;
    line-height: 1rem;
    font-weight: 500;
}
.primary-menu li .dropdown-menu a {
    color: #000;
}
.primary-menu li:hover {
    color: #fff;
}
.primary-menu .nav-global {
    color: #fff;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 500;
}
.primary-menu .nav-global li a.nav-link {
    color: #fff;
    padding: 0 0.25rem;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1rem;
    font-weight: 500;
    min-height: 20px;
}
.primary-menu .nav-global .nav-search {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    margin-left: 0.75rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    margin-right: 0;
}
.primary-menu .nav-global .search-wrap {
    color: #fff;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
}
@media (min-width: 992px) {
    .primary-menu .nav-global .search-wrap {
        margin-top: 20px;
    }
}
.primary-menu .nav-global .search-wrap:hover {
    animation-name: zoomicon;
    animation-duration: 1s;
    animation-iteration-count: 1;
}
@keyframes zoomicon {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.5, 1.5);
    }
    100% {
        transform: scale(1, 1);
    }
}
.primary-menu .nav-global .nav-item .flag {
    position: relative;
    top: 2px;
    width: 18px;
}
.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    padding-left: 0;
    padding-right: 0;
}
.navbar {
    padding: 0;
    padding-bottom: 0;
    border-bottom: 1px solid #ffffff61;
}
.navbar .has-megamenu {
    position: static !important;
    padding-bottom: 18px;
    margin-top: 18px;
}
.navbar .megamenu {
    left: 0;
    right: 0;
    top: 62px;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    padding: 0 0;
    background: #fff;
    border: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 10px 3px 20px 0 rgba(0, 0, 0, 0.6);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
}
@media (min-width: 992px) {
    .navbar .megamenu {
        display: flex;
    }
}
.navbar .megamenu .industry-nav-image p {
    font-size: 0.9375rem;
    line-height: 1.625rem;
    margin-top: 15px;
}
@media (max-width: 1199.98px) {
    .navbar .megamenu ul.list-unstyled.mb-3 {
        margin-bottom: 0.6rem !important;
    }
}
@media (max-width: 1199.98px) {
    .navbar .megamenu ul.list-unstyled.mb-4 {
        margin-bottom: 0.9rem !important;
    }
}
.navbar .megamenu li {
    display: flex;
    margin-bottom: 0;
    padding: 0;
}
.navbar .megamenu li small {
    font-size: 0.75rem;
    line-height: 1;
    display: block;
}
.navbar .megamenu li:after {
    content: "";
    position: relative;
    top: 10px;
    width: 12px;
    height: 12px;
    /* background: url(https://ricidemo.resochem.orghttps://ricidemo.resochem.orghttps://ricidemo.resochem.orghttps://ricidemo.resochem.orghttps://ricidemo.resochem.org/themes/custom/sysltd/assets/images/home/arrow-right.svg) no-repeat right
        center; */
    display: inline-block;
    vertical-align: middle;
    transition: width 250ms ease-in-out;
    margin-left: 5px;
}
.navbar .megamenu li:hover:after {
    width: 24px;
}
.navbar .megamenu li:first-child:after {
    display: none;
}
.navbar .megamenu li:first-child a {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 15px;
}
@media (max-width: 1199.98px) {
    .navbar .megamenu li:first-child a {
        font-size: 0.9375rem;
    }
}
.navbar .megamenu li:first-child a:before {
    display: none;
}
.navbar .megamenu li a {
    color: #262b3f;
    font-size: 1rem;
    padding-left: 0;
    font-weight: 400;
    line-height: 2;
    text-decoration: none;
    position: relative;
}
@media (max-width: 1199.98px) {
    .navbar .megamenu li a {
        font-size: 0.75rem;
    }
}
.navbar .megamenu li a:before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    margin-top: 1px;
    background: #f26223;
    left: 0;
    transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .navbar .megamenu li a:before {
        transition: none;
    }
}
.navbar .megamenu li a:hover {
    color: #f26223;
}
.navbar .megamenu li a:hover:before {
    width: 100%;
}
.navbar .megamenu .title {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    margin-top: 5px;
}
@media (max-width: 1199.98px) {
    .navbar .megamenu .title {
        font-size: 1.25rem;
    }
}
.navbar .megamenu .title-link {
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
    font-size: 0.8125rem;
    line-height: 1rem;
    font-weight: 400;
    color: #000;
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        top: 62px;
        opacity: 1;
        visibility: visible;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-transform: scaleY(1) !important;
        transform: scaleY(1) !important;
        -webkit-transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), top 0.75s ease, -webkit-transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
        transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), top 0.75s ease, -webkit-transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
        transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), top 0.75s ease, -webkit-transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
        transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1), top 0.75s ease, -webkit-transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .dropdown-menu.show {
        display: flex;
    }
}
.col-megamenu h5 {
    font-size: 1.125rem;
}
@media (max-width: 991.98px) {
    nav button.ma5menu__toggle {
        display: inline-block;
    }
}
@media (min-width: 992px) {
    .topnav-bg a.media {
        top: -5px;
    }
}
.topnav-bg .logo-white {
    opacity: 0;
    visibility: hidden;
}
.topnav-bg .logo-dark {
    opacity: 1 !important;
    visibility: visible !important;
}
.topnav-bg .btn-talk .btn-black.lets-talk {
    padding: 9px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.topnav-bg.navbar[class*="scrolled"] .d-none.btn-talk {
    align-items: center;
}
@media (max-width: 767.98px) {
    .mobile-lets-talk {
        display: block !important;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9;
        padding: 10px 10px;
    }
    
    body .ins-btn.bnb {
    position: absolute;
    top: 50px;
    right: 10px;
}

body h2.insights-section--title.text-md-center {
    font-size: 25px;
    padding-left: 6px;
}

    BODY .cookie-banner.show {
        display: block;
        margin-left: 20px;
    }
    
    body .cookie-buttons {
    padding-left:0px;
}

    body .cookie-banner p {
        margin-bottom: 10px;
    }

    body ul.certii li {
        /* line-height: 33px; */
        padding-bottom: 0px;
    }
    body .home-hero-section .home-hero {
        position: relative;
        z-index: 5;
        padding-bottom: 230px !important;
    }
    .mobile-lets-talk a {
        color: #161616;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.22);
    }
}
@media (max-width: 991.98px) {
    .topnav-bg .ma5menu__icon-toggle,
    .topnav-bg .mobile-search img {
        filter: brightness(0);
    }
}
.progress-section {
    display: none;
    background: #777a8a;
    position: absolute;
    border-radius: 0;
    left: 0;
    height: 5px;
    width: 100%;
    bottom: -1px;
}
.progress-section .progress {
    background-color: #90c745;
    transition: all 0.2s ease-in-out;
    height: 5px;
    border-radius: 0;
}
@media (prefers-reduced-motion: reduce) {
    .progress-section .progress {
        transition: none;
    }
}
.topnav-bg .progress-section {
    display: block;
}
a {
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}
@media (min-width: 992px) {
    .primary-menu .dropdown.has-megamenu .dropdown-menu:before {
        content: "";
        position: absolute;
        left: calc(100% - 12px);
        background: #fff;
        height: 100%;
        width: 100vw;
        box-shadow: 10px 3px 20px 0 rgba(0, 0, 0, 0.6);
    }
    .primary-menu .dropdown.has-megamenu .dropdown-menu:after {
        content: "";
        position: absolute;
        right: 100%;
        width: 100vw;
        background: #fff;
        height: 100%;
        box-shadow: 10px 3px 20px 0 rgba(0, 0, 0, 0.6);
    }
    .primary-menu li.nav-item.dropdown {
        padding-bottom: 18px;
        margin-top: 18px;
    }
    .navbar .megamenu > .row.w-100 {
        position: relative;
        z-index: 1;
        background: #ffffff;
    }
}
@media (max-width: 991.98px) {
    .primary-menu .nav-location > a {
        line-height: 3.125rem;
    }
}
.primary-menu .nav-location .dropdown-menu {
    position: absolute;
    background: #fff;
    border: 1px solid #72686e;
    border-radius: 4px;
    min-width: 600px;
    right: 0;
    left: auto;
    top: 40px;
    padding: 4px 0;
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    padding: 0 !important;
}
.primary-menu .nav-location .dropdown-menu ul {
    overflow: hidden;
}
.primary-menu .nav-location .dropdown-menu ul li {
    padding: 0;
    margin: 0;
    width: 100%;
    display: -webkit-box;
    margin-top: 0 !important;
}
.primary-menu .nav-location .dropdown-menu ul li a {
    display: block;
    padding: 7px 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #161616;
}
.primary-menu .nav-location .dropdown-menu ul li a:hover {
    color: #f26223;
}
.primary-menu .nav-location .dropdown-menu li {
    width: 100%;
    height: auto;
}
.primary-menu .nav-location:hover .dropdown-menu {
    height: auto;
    transform: inherit !important;
    /* overflow: hidden; */
    opacity: 1;
    /* width: 100vh; */
    padding: 10px;
}
.primary-menu .nav-location .dropdown-menu.show {
    height: 180px;
    transform: inherit !important;
    overflow: visible;
    opacity: 1;
}
.multi-regional {
    position: relative;
    top: 3px;
    font-size: 14px;
    margin: 0 3px;
}
.multi-regional-arrow {
    position: absolute;
    top: 20px;
    transform: rotate(90deg);
}
@media (min-width: 992px) {
    .multi-regional-arrow {
        top: 4px;
    }
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    padding-top: 0 !important;
    overflow-x: hidden;
}
body,
html {
    height: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}
.text-link-arrow {
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1rem;
    font-weight: 500;
    color: #f26223;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.text-link-arrow .arrow-right {
    width: 12px;
    height: 12px;
    /* background: url(/themes/custom/sysltd/assets/images/home/arrow-right.svg) no-repeat right center; */
    display: inline-block;
    vertical-align: middle;
    transition: width 250ms ease-in-out;
    position: absolute;
    left: calc(100% + 5px);
    top: 3px;
}
.text-link-arrow:after {
    display: block;
    content: "";
    border-bottom: solid 2px #f26223;
    transform: scaleX(0.1);
    transition: transform 250ms ease-in-out;
}
.text-link-arrow:hover {
    color: #f26223;
}
.text-link-arrow:hover .arrow-right {
    width: 24px;
}
.text-link-arrow:hover:after {
    transform: scaleX(0.785);
}
.text-link-arrow.fromLeft:after {
    transform-origin: 0 50%;
}
.text-link-arrow.white {
    color: #fff;
}
.text-link-arrow.white .arrow-right {
    background: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/home/arrow-right-white.svg) no-repeat right center;
}
.text-link-arrow.white:after {
    border-bottom: solid 2px #fff;
}
.text-link-arrow.white:hover {
    color: #fff;
}
.text-link-arrow.white:hover .arrow-right {
    width: 24px;
}
.navbar .placeholder {
    position: relative;
}
.navbar .placeholder::after,
.navbar .placeholder::before {
    content: "";
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
}
.navbar .placeholder::before {
    background: #ccc none repeat scroll 0 0;
    border-radius: 3px;
    height: 225px;
}
.navbar .placeholder::after {
    font-size: 49px;
    opacity: 0.25;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
}
.navbar .placeholder.video::after {
    content: "\f144";
}
.navbar .placeholder.image::after {
    content: "\f03e";
}
.home-hero-section {
    position: relative;
    background-size: cover;
    background-color: #000;
    padding: 0 0 0;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
.home-hero-section > .container > .row {
    height: 100vh;
}
.home-hero-section > .container {
    z-index: 10;
}
.home-hero-section > .container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: rgb(0 0 0 / 64%);
    width: 100%;
    height: 100%;
}
.home-hero-section .home-hero {
    position: relative;
    z-index: 5;
    padding-bottom: 70px;
}
@media (min-width: 768px) {
    .home-hero-section .home-hero {
        padding-top: 100px;
        padding-bottom: 70px;
        padding-left: 40px;
        padding-right: 40px;
    }
}
@keyframes contentshow {
    0% {
        scale: 0.1;
        margin-left: 50%;
    }
    100% {
        scale: 1;
        margin-left: 0;
    }
}
#home-hero-video {
    width: auto;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
@media (min-width: 1200px) {
    #home-hero-video {
        width: 100vw;
    }
}
.home-hero-display {
    margin-bottom: 2.25rem;
    text-transform: capitalize;
    font-family: "Plus Jakarta Sans", sans-serif;
    z-index: 5;
    position: relative;
}
@media (min-width: 992px) {
    .home-hero-display {
        margin-bottom: 1rem;
    }
}
.home-hero-display--intro {
    display: block;
    font-weight: 300;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.home-hero-display--intro h1 {
    font-weight: 400;
    font-size: 3rem;
    line-height: 3.75rem;
    text-transform: none;
}
@media (min-width: 992px) {
    .home-hero-display--intro h1 {
        margin-left: 0;
        font-size: 4.875rem;
        line-height: 5.25rem;
    }
}
@keyframes svgStroke {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 1000;
    }
}
.home-hero-display--description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 300;
    display: inline-block;
    margin-top: 0.25rem;
    text-transform: none;
    margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
    .home-hero-display--description {
        font-size: 1.5rem;
        line-height: 1.875rem;
        margin-left: 0;
        margin-top: 0.9375rem;
    }
}
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: #fff;
    }
}
@media (min-width: 992px) {
    .home-hero-display--description {
        font-size: 1.5rem;
        display: inline-block;
    }
}
.home-hero-display--lets-talk {
    font-weight: 500;
    position: relative;
    z-index: 5;
    width: calc(100% - 36px);
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .home-hero-display--lets-talk {
        width: auto;
    }
}
.home-industries-section--title,
.home-services-section--title {
    margin-top: 35px;
    padding-bottom: 30px;
    color: #262b3f;
}
@media (min-width: 992px) {
    .home-industries-section--title,
    .home-services-section--title {
        margin-top: 65px;
        padding-bottom: 60px;
    }
}
.home-industries-section--title .title-wrap,
.home-services-section--title .title-wrap {
    position: sticky;
    top: 5.9375rem;
}
.home-industries-section--title small,
.home-services-section--title small {
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    font-weight: 400;
    margin: 0;
}
.home-industries-section--title h2,
.home-services-section--title h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    line-height: 2.25rem;
    margin: 0 0 1rem;
    -webkit-text-fill-color: transparent;
    background-color: #000;
    background-image: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/home/s-shape.png);
    background-clip: text;
    -webkit-background-clip: text;
    background-size: auto 120%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 5;
}
@media (min-width: 992px) {
    .home-industries-section--title h2,
    .home-services-section--title h2 {
        font-size: 2.375rem;
        line-height: 3.625rem;
        margin: 0 0 2rem;
    }
}
.home-industries-section--title h2.title,
.home-services-section--title h2.title {
    background-color: #000;
    display: block;
    color: #000;
    --gradient-position: 50%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 200% 100%, 100% 100%;
    background-position: var(--gradient-position) 50%, 50% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 5;
}
@keyframes text-mask {
    0% {
        background-position: -100% center;
    }
    100% {
        background-position: 50% center;
    }
}
.home-industries-section--title .shape-image,
.home-services-section--title .shape-image {
    position: absolute;
    z-index: 1;
    top: 16%;
    right: 20%;
    max-height: 100%;
}
@media (min-width: 768px) {
    .home-industries-section--title .shape-image,
    .home-services-section--title .shape-image {
        right: 20%;
        opacity: 0.5;
    }
}
.home-industries-section--title .description,
.home-services-section--title .description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.625rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .home-industries-section .gray-border-left,
    .home-services-section .gray-border-left {
        border-left: 1px solid #dee2e6;
        /* border-bottom: 1px solid; */
        border-bottom: 1px solid #dee2e6;
        border-right: 1px solid #dee2e6;
        border-top: 1px solid #dee2e6;
    }
}
@media (min-width: 768px) {
    .home-industries-section .gray-border-right,
    .home-services-section .gray-border-right {
        border-right: 1px solid #dee2e6;
    }
}
.home-industries-section--list ul,
.home-services-section--list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.home-industries-section--list ul li,
.home-services-section--list ul li {
    border-bottom: 1px solid #dee2e6;
    padding: 1.875rem 0.9375rem;
}
@media (max-width: 767.98px) {
    .home-industries-section--list ul li:first-child,
    .home-services-section--list ul li:first-child {
        border-top: 1px solid #dee2e6;
    }
}
@media (min-width: 992px) {
    .home-industries-section--list ul li,
    .home-services-section--list ul li {
        padding: 2.375rem;
        width: 50%;
        float: left;
        border: 1px solid #fff1f1;
        transition: 0.5s;
    }
}
.home-industries-section--list ul li:last-child,
.home-services-section--list ul li:last-child {
    border-bottom: none;
}
.home-industries-section--list ul li h3,
.home-services-section--list ul li h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}
.home-industries-section--list ul li .description,
.home-services-section--list ul li .description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8125rem;
    margin-bottom: 1.25rem;
}
.home-industries-section--title {
    padding-left: 3.75rem;
}
.home-industries-section--list ul li {
    padding: 3.75rem 3.75rem 3.75rem 0;
}
@keyframes countingBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
.home-numbers-section {
    padding: 3.75rem 0;
}
@media (min-width: 992px) {
    .home-numbers-section {
        padding: 0;
    }
}
.home-numbers-section--title {
    color: #262b3f;
    padding-bottom: 2.5rem;
}
@media (min-width: 992px) {
    .home-numbers-section--title {
        padding-right: 6.25rem;
        padding-bottom: 0;
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
    }
}
.home-numbers-section--title small {
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    font-weight: 400;
    margin: 0;
}
.home-numbers-section--title h2.title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.625rem;
    margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
    .home-numbers-section--title h2.title {
        font-size: 2.875rem;
        line-height: 3.3125rem;
        margin-bottom: 1.75rem;
    }
}
.home-numbers-section--title .description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #000;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .home-numbers-section .number-border-right {
        border-right: 1px solid #dee2e6 !important;
    }
}
@media (min-width: 768px) {
    .home-numbers-section .number-border-bottom {
        border-bottom: 1px solid #dee2e6 !important;
    }
}
@media (min-width: 768px) {
    .home-numbers-section .number-padding-top {
        padding-top: 2.5rem !important;
    }
}
@media (min-width: 768px) {
    .home-numbers-section .number-padding-right {
        padding-right: 2.5rem !important;
    }
}
@media (min-width: 768px) {
    .home-numbers-section .number-padding-bottom {
        padding-bottom: 2.5rem !important;
    }
}
@media (min-width: 768px) {
    .home-numbers-section .number-padding-left {
        padding-left: 2.5rem !important;
    }
}
@media (min-width: 992px) {
    .home-numbers-section--list {
        padding: 0 70px;
    }
    .home-numbers-section--list:before {
        display: block;
        content: "";
        width: 15px;
        height: 15px;
        border: solid #e1e1e1;
        border-width: 0 1px 1px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        background-color: #fff;
        position: absolute;
        left: -8px;
        top: 125px;
    }
}
@media (min-width: 992px) {
    .home-numbers-section--list {
        border-left: 1px solid #e1e1e1;
        position: relative;
    }
}
@media (min-width: 992px) {
    .home-numbers-section--list {
        padding-top: 6.25rem;
        padding-bottom: 6.25rem;
    }
}
.home-numbers-section--list .number {
    padding: 1.875rem 15px;
}
@media (min-width: 768px) {
    .home-numbers-section--list .number {
        padding: 0;
        border-top: none;
    }
}
.home-numbers-section--list .number h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2.8125rem;
    line-height: 4.6875rem;
    margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
    .home-numbers-section--list .number h3 {
        /* font-weight: 700; */
        font-size: 3.5rem;
        line-height: 1.2;
    }
}
.home-numbers-section--list .number h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.5rem;
    color: #000;
    margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
    .home-numbers-section--list .number h4 {
        font-weight: 500;
        font-size: 1.125rem;
        line-height: 1.2;
    }
}
.home-numbers-section--list .number p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.125rem;
    margin-bottom: 0.625rem;
}
#home-careers-video {
    width: auto;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 1200px) {
    #home-careers-video {
        width: 100vw;
        height: auto;
    }
}
.home-careers-section {
    position: relative;
    overflow: hidden;
    background-color: #212529;
    height: 450px;
}
.home-careers-section > .container:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
}
.home-careers-section--content {
    color: #262b3f;
    position: relative;
    z-index: 5;
}
.home-careers-section--content small {
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    font-weight: 400;
    margin: 0;
}
.home-careers-section--content h2.title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.875rem;
    margin: 1rem 0;
}
@media (min-width: 992px) {
    .home-careers-section--content h2.title {
        font-size: 3.5rem;
        line-height: 4.25rem;
        margin: 2rem 0;
    }
}
.home-careers-section--content .btn-join-us {
    display: inline-block;
    background-color: transparent;
    color: #fff;
}
.home-careers-section--content .description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75rem;
    color: #000;
    margin-bottom: 0.9375rem;
}
.home-help-section {
    padding: 7.5rem 0;
    position: relative;
    z-index: 2;
}
@media (min-width: 992px) {
    .home-help-section {
        padding: 8.75rem 0;
    }
}
.home-help-section--content {
    color: #262b3f;
}
.home-help-section--content small {
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    font-weight: 400;
    margin: 0;
}
.home-help-section--content h2.title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0 0 0.625rem;
    color: #161616;
}
@media (min-width: 992px) {
    .home-help-section--content h2.title {
        font-size: 3.5rem;
        line-height: 4.375rem;
        margin: 0 0 0;
    }
}
.home-help-section--content .description {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    margin-bottom: 2rem;
    color: #161616;
}
@media (min-width: 992px) {
    .home-help-section--content .description {
        font-size: 1.25rem;
        line-height: 1.5;
    }
}
.footer-shape {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 100;
    bottom: 520px;
    left: 0;
    text-align: center;
    max-width: 60%;
    margin: 70px auto 0;
    z-index: -1;
    opacity: 0.2;
}
@media (min-width: 992px) {
    .footer-shape {
        bottom: 35%;
    }
}
.footer-shape svg {
    width: 100vw;
}
@keyframes footershapeAnimation {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: 1000;
    }
}
footer {
    position: relative;
    background: rgba(96, 105, 124, 0.1);
    padding: 2.5rem 0 1.875rem;
}
footer .nav {
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    footer .nav {
        margin-bottom: 0;
    }
}
footer .nav li {
    margin-right: 2rem;
    display: block;
    width: 100%;
}
@media (min-width: 768px) {
    footer .nav li {
        display: inline-block;
        vertical-align: middle;
        width: auto;
    }
}
footer .nav li a {
    color: #797c89;
    font-size: 0.75rem;
    line-height: 0.9375rem;
    font-weight: 400;
    padding: 0;
    margin-bottom: 15px;
}
@media (min-width: 992px) {
    footer .nav li a {
        margin-bottom: 0;
    }
}
footer .nav li a:hover {
    color: #161616 !important;
}
footer .newsletter-wrap h2 {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    font-weight: 500;
    margin-bottom: 0.875rem;
}
footer .newsletter-wrap h4,
footer .newsletter-wrap label {
    font-size: 0.875rem;
    line-height: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}
footer .Newsletter form {
    display: flex;
    position: relative;
    margin-top: 50px;
    column-gap: 5px;
}
@media (max-width: 380px) {
    footer .Newsletter form {
        padding-top: 20px;
    }
}
@media (min-width: 576px) {
    footer .Newsletter form {
        column-gap: 10px;
    }
}
@media (min-width: 992px) {
    footer .Newsletter form {
        margin-top: 30px;
    }
}
footer .Newsletter form label {
    position: absolute;
    top: -35px;
}
footer .Newsletter .form-control,
footer .Newsletter .form-email {
    border: 1px solid #c5c5c5;
    background-color: transparent;
    border-radius: 4px;
    height: 48px;
    line-height: 48px;
    color: #161616;
    display: inline-block;
    width: calc(100% - 118px);
    margin-right: 10px;
    vertical-align: middle;
}
@media (min-width: 576px) {
    footer .Newsletter .form-control,
    footer .Newsletter .form-email {
        display: block;
    }
}
footer .Newsletter .form-email {
    width: 100%;
}
footer .Newsletter .btn,
footer .Newsletter .form-submit {
    text-decoration: none;
    white-space: nowrap;
}
footer .Newsletter .form-submit {
    background-color: transparent;
    color: #161616;
    padding-left: 10px;
    padding-right: 10px;
    height: 48px;
    border: 1px solid #c5c5c5;
}
@media (min-width: 992px) {
    footer .Newsletter .form-submit {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media (min-width: 576px) {
    footer .Newsletter .form-submit {
        padding-left: 20px;
        padding-right: 20px;
    }
}
footer .Newsletter .form-submit:hover {
    background-color: #161616;
    color: #fff;
}
footer .field--type-email {
    min-width: calc(100% - 110px);
}
footer .footer-bot {
    border-top: 1px solid rgba(151, 155, 170, 0.27);
    padding-top: 25px;
    margin-top: 15px;
}
footer .text-copy {
    text-align: center;
    color: #797c89;
    font-size: 0.75rem;
    line-height: 0.9375rem;
    font-weight: 400;
}
@media (min-width: 768px) {
    footer .text-copy {
        text-align: left;
    }
}
@media (min-width: 992px) {
    footer .text-copy {
        text-align: right;
    }
}
footer .social-icons {
    text-align: center;
}
@media (min-width: 768px) {
    footer .social-icons {
        text-align: left;
    }
}
@media (min-width: 992px) {
    footer .social-icons {
        text-align: right;
    }
}
.social-icons .icon {
    margin-left: 0;
    margin-right: 24px;
    text-decoration: none;
}
.social-icons .icon i,
.social-icons .icon img {
    width: 28px;
    height: 28px;
    font-size: 32px;
    color: rgba(151, 155, 170, 0.69);
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}
.social-icons .icon i:hover,
.social-icons .icon img:hover {
    color: #161616;
}
.social-icons .icon:last-child {
    margin-right: 0;
}
#edit-mail-0-value--description,
#edit-message {
    display: none;
}
.home-careers-section .title-wrap {
    margin-top: 10rem;
}
.has-global {
    position: static !important;
    padding-bottom: 18px;
    margin-top: 18px;
}
.has-global .dropdown-menu {
    right: 20px;
}
.has-global .dropdown-menu li {
    margin-bottom: 10px;
}
.has-global .dropdown-menu li:last-child {
    margin-bottom: 0;
}
.has-global .dropdown-menu li a {
    display: block;
}
.has-global .dropdown-menu li a:hover {
    color: #f26223;
}
.insights-section {
    background: #262b3f;
    padding: 60px 0;
    z-index: 0;
}
.insights-section--title {
    padding-bottom: 20px;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
    opacity: 1;
}
@media (max-width: 575.98px) {
    .insights-section--title {
        padding-left: 20px;
    }
}
body[class*="type-thank-you"] nav#TopNavbar {
    background: #000;
    height: 70px;
}
.type-PK .home-hero-section #home-hero-video,
.type-pk .home-hero-section #home-hero-video {
    transform: translate(-55%, 0);
}
@media (min-width: 768px) {
    .type-PK .home-hero-section #home-hero-video,
    .type-pk .home-hero-section #home-hero-video {
        transform: translate(-40%, 0);
    }
}
@media (min-width: 992px) {
    .type-PK .home-hero-section #home-hero-video,
    .type-pk .home-hero-section #home-hero-video {
        transform: translate(0, 0);
    }
}
.mainHeroSlider .swiper-button-next {
    color: #fff;
    --gradient-position: 50%;
    background: -webkit-linear-gradient(348deg, #fff 0, #fff 28.66%, #fc66bd 32.66%, #ffc5e3 33%, #fff 37%, #fff 45%, #28e5ff 47.5%, #0064da 48%, #fff 50.5%, #fff 64%, #ff31a1 69%, #fff 70%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 200% 100%, 100% 100%;
    background-position: var(--gradient-position) 50%, 50% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (min-width: 768px) {
    .mainHeroSlider .swiper-button-next {
        margin-right: 30px;
    }
}
@media (min-height: 900px) and (max-height: 900px) and (min-width: 1440px) and (max-width: 1440px) {
    #home-hero-video {
        height: 100vh;
        width: auto;
    }
}
@media only screen and (max-width: 1445px) and (min-width: 1280px) {
    #home-hero-video {
        width: 100vw;
    }
}
@media (max-width: 640px) {
    .mainHeroSlider .swiper-slide .col-md-12.home-hero {
        padding-left: 35px;
        padding-right: 35px;
    }
    .mainHeroSlider .swiper-button-next:after {
        font-size: 30px;
    }
}
.modal .modal-open::before {
    content: "";
    position: fixed;
    top: 7%;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}
ul {
    padding-left: 0;
    list-style: none;
}
a {
    text-decoration: none;
    transition-duration: 0.3s;
    transition-property: all;
    transition-timing-function: ease-in-out;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
}
.fw-500 {
    font-weight: 500 !important;
}
.fw-600 {
    font-weight: 600 !important;
}
.fs-18 {
    font-size: 18px !important;
}
p a {
    color: #f26223;
}
.blog-label {
    display: table;
    background-color: #eee;
    border: 1px solid #e7e7e7;
    font-weight: 500;
    font-size: 0.8125rem;
    color: #262b3f;
    border-radius: 4px;
    padding: 4px 12px;
    text-transform: uppercase;
}
@media (max-width: 575.98px) {
    .br-sm-none {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .br-lg-none {
        display: none;
    }
}
.no-padding {
    padding-left: 0;
    padding-right: 0;
}
.fs-12 {
    font-size: 12px;
}
.fs-12imp {
    font-size: 12px !important;
}
.fs-10 {
    font-size: 10px;
}
.fs-10imp {
    font-size: 10px !important;
}
.at-opacity-100 {
    opacity: 100;
}
.mt-3pt5imp {
    margin-top: 3.5rem !important;
}
.mb-3pt5imp {
    margin-bottom: 3.5rem !important;
}
.mt-4rem {
    margin-top: 4rem !important;
}
.mb-3pt5 {
    margin-bottom: 3.5rem !important;
}
.mb-4rem {
    margin-bottom: 4rem !important;
}
.mb-12px {
    margin-bottom: 0.75rem !important;
}
.mb-36 {
    margin-bottom: 36px !important;
}
.at-bg-none {
    background: 0 0 !important;
}
.primary-heading {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.125rem;
}
@media (min-width: 1200px) {
    .primary-heading {
        font-size: 3.375rem;
        margin-bottom: 1.5rem;
    }
}
.primary-heading2 {
    font-size: 1.875rem;
    font-weight: 400;
    margin-bottom: 1.125rem;
}
@media (min-width: 1200px) {
    .primary-heading2 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}
.primary-heading3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}
@media (min-width: 1200px) {
    .primary-heading3 {
        font-size: 2.625rem;
        margin-bottom: 1.5rem;
    }
}
.pt-60 {
    padding-top: 2.5rem;
}
@media (min-width: 576px) {
    .pt-60 {
        padding-top: 3.75rem;
    }
}
.pb-60 {
    padding-bottom: 2.5rem;
}
@media (min-width: 576px) {
    .pb-60 {
        padding-bottom: 3.75rem;
    }
}
.pb-70 {
    padding-bottom: 3.125rem;
}
@media (min-width: 576px) {
    .pb-70 {
        padding-bottom: 4.375rem;
    }
}
section {
    overflow: clip;
}
.at-border-bottom {
    border-bottom: 1px solid #dfdfdf;
}
.blog-icons {
    position: sticky;
    top: 16px;
}
.blog-icons li a {
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.875rem;
    width: 1.875rem;
    border-radius: 50%;
    font-size: 14px;
}
.blog-icons li a:hover {
    color: #f26223;
    border-color: #f26223;
}
.at-text-decoration-none {
    text-decoration: none !important;
}
input[type="color"],
input[type="date"],
input[type="datetime-local"],
input[type="datetime"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select:focus {
    font-size: 1rem;
}
table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin: 40px 0;
}
table td {
    border: 1px solid #eff0f2;
    text-align: left;
    padding: 8px;
}
table th {
    border: 1px solid #eff0f2;
    text-align: left;
    padding: 8px;
}
table tr:nth-child(even) {
    background-color: #eff0f2;
}
.video-modal-box .modal-dialog {
    transform: translate(0, -24%) !important;
}
@media (min-width: 768px) {
    .video-modal-box .modal-dialog {
        transform: translate(0, -5%) !important;
    }
}
.video-modal-box .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: #fff;
    opacity: 0.5;
}
.video-modal-box .btn-close:hover {
    opacity: 1;
}
@media (max-width: 767.98px) {
    .node-144 .home-hero-display--lets-talk,
    .type-services .home-hero-display--lets-talk {
        margin-bottom: 3.75rem;
    }
}
@media (max-width: 767.98px) {
    .node-144 .home-hero-display--lets-talk,
    .type-industries .home-hero-display--lets-talk {
        margin-bottom: 3.75rem;
    }
}
@media (max-width: 767.98px) {
    .node-137 .home-hero-display--lets-talk,
    .type-expertise .home-hero-display--lets-talk {
        margin-bottom: 3.75rem;
    }
}
.ma5menu__head .ma5menu__logo {
    background: url(https://ricidemo.resochem.org/images/logob.png) no-repeat center 0 / contain;
    width: 120px;
    left: 20px;
    transform: translate(0);
    top: 13px;
}
@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}
@keyframes shine {
    100% {
        left: 125%;
    }
}
.video-section-popup {
    overflow: hidden;
}
.video-section-popup img {
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}
.video-section-popup.no-hover::before {
    display: none !important;
}
.video-section-popup:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(242, 98, 35, 0.29) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(242, 98, 35, 0.29) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.video-section-popup:hover:before {
    -webkit-animation: shine 0.75s;
    animation: shine 0.75s;
}
.video-section-popup:hover img {
    transform: scale(1.2);
}
.image-text-section .img-holder {
    overflow: hidden;
}
.image-text-section .img-holder > img {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    position: relative;
}
.image-text-section .img-holder:hover > img {
    transform: scale(1.2);
}
@-webkit-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
@-moz-keyframes Gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
@keyframes Gradient {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}
.form-holder .form-check .form-check-input {
    cursor: pointer;
}
.form-holder .form-check .form-check-input:checked {
    background-color: #6c757d;
    border-color: #6c757d;
}
.image-gradient-section .img-holder {
    position: relative;
}
.image-gradient-section .img-holder::after,
.image-gradient-section .img-holder::before {
    content: "";
    background: linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    height: 8.5625rem;
    width: 100%;
    z-index: 1;
}
.image-gradient-section .img-holder::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
    top: inherit;
    bottom: 0;
}
.image-gradient-section h6 {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    color: #161616;
}
@media (max-width: 767.98px) {
    .image-gradient-section .container {
        padding: 0;
    }
    .image-gradient-section .text-holder {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
.global-presence-section .primary-heading,
.primary-heading {
    color: #161616;
}
.become-part-section h6 {
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}
.global-team-section .text-link-arrow,
.node-54 .home-services-section .text-link-arrow,
.type-careers .home-services-section .text-link-arrow {
    display: flex;
    justify-content: end;
    margin-right: 1.25rem;
    font-size: 0.75rem;
    font-weight: 400;
}
.global-presence-section h3 {
    font-size: 2.125rem;
    white-space: nowrap;
    margin-right: 2rem;
}
@media (max-width: 1199.98px) {
    .global-presence-section h3 {
        font-size: 1.25rem;
    }
}
@media (max-width: 767.98px) {
    .global-presence-section h3 {
        margin-right: 1rem;
        font-size: 1rem;
    }
}
.global-presence-section .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.global-presence-section .swiper-container:after {
    content: "";
    display: block;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, #000 50%, transparent 50%);
    background-size: 10% 1px;
    background-position: -50px;
    background-repeat: repeat-x;
    position: absolute;
    left: -10%;
    top: 40%;
    animation: line-slide 60s forwards infinite linear;
    z-index: 1;
}
.global-presence-section .swiper-container.swiper--bottom:after {
    animation-direction: reverse;
}
.global-presence-section .swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
.global-presence-section .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 20px;
}
@media (max-width: 767.98px) {
    .global-presence-section .swiper-slide {
        padding: 0 0;
    }
}
@keyframes line-slide {
    0% {
        background-position: -5% 0;
    }
    100% {
        background-position: 100% 0;
    }
}
.become-part-section {
    padding: 5rem 0;
    background-color: #262b3f;
}
.become-part-section .become-part-heading {
    font-size: 2.5rem;
    font-weight: 400;
}
.become-part-section .btn-close {
    color: #fff;
    filter: invert(100%);
}
@media (max-width: 767.98px) {
    .global-presence-ul:not(.swiper) {
        display: none;
    }
}
.font-400 {
    font-weight: 400;
}
.font-500 {
    font-weight: 500;
}
.block-inline {
    display: inline-block;
}
@media (max-width: 767.98px) {
    .box-geographies {
        flex-wrap: wrap;
    }
}
.box-geographies .inner-box {
    margin-right: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #ddd;
    margin-left: -1px;
    overflow: hidden;
    width: 25%;
    padding: 1.5rem 1.5rem 0;
    position: relative;
}
.box-geographies .inner-box.current {
    z-index: 12;
}
.box-geographies .inner-box.current:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}
.box-geographies .inner-box.current h3 {
    color: #f26223;
}
.box-geographies .inner-box img {
    width: 100%;
    margin-bottom: -2px;
}
.box-geographies .inner-box a {
    padding-bottom: 0 !important;
    border: 0 !important;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
@media (max-width: 767.98px) {
    .box-geographies .inner-box {
        width: 100%;
    }
}
.box-geographies .inner-box h3 {
    margin-bottom: 2rem;
    margin-left: 2rem;
}
@media (max-width: 991.98px) {
    .box-geographies .inner-box h3 {
        margin-left: 0;
        font-size: 20px;
    }
}
.box-geographies:before {
    content: "";
    pointer-events: none;
    background: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/company/layer.png) no-repeat center;
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    background-size: auto;
    transform: translateX(-50%);
    z-index: 11;
}
@media (max-width: 767.98px) {
    .box-geographies:before {
        background: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/company/mobile-layer.png) no-repeat center;
        background-size: cover;
    }
}
section {
    position: relative;
}
.transform-text {
    min-height: auto;
}
@media (max-width: 991.98px) {
    .transform-text .w-75 {
        width: 100% !important;
    }
}
.dark-bg-section {
    background: #262b3f;
    color: #fff;
    padding: 5rem 0;
}
@media (max-width: 767.98px) {
    .dark-bg-section {
        padding: 3rem 0;
    }
}
.leadership-section .leadership-box img {
    border-radius: 8px;
}
.dark-header nav.navbar-dark {
    background: #262b3f;
}
@-webkit-keyframes moveclouds {
    0% {
        right: -30%;
    }
    20% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}
@-moz-keyframes moveclouds {
    0% {
        right: -50%;
    }
    20% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}
@-o-keyframes moveclouds {
    0% {
        right: -50%;
    }
    20% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        right: 100%;
        opacity: 0;
    }
}
@media (max-width: 991.98px) {
    @-webkit-keyframes moveclouds {
        0% {
            right: 0;
        }
        20% {
            opacity: 0.5;
        }
        50% {
            opacity: 0.8;
        }
        100% {
            right: 100%;
            opacity: 0;
        }
    }
    @-moz-keyframes moveclouds {
        0% {
            right: 0;
        }
        20% {
            opacity: 0.5;
        }
        50% {
            opacity: 0.8;
        }
        100% {
            right: 100%;
            opacity: 0;
        }
    }
    @-o-keyframes moveclouds {
        0% {
            right: 0;
        }
        20% {
            opacity: 0.5;
        }
        50% {
            opacity: 0.8;
        }
        100% {
            right: 100%;
            opacity: 0;
        }
    }
}
@-webkit-keyframes moveBallon {
    50% {
        transform: translateY(-15px);
    }
}
@-moz-keyframes moveBallon {
    50% {
        transform: translateY(-15px);
    }
}
@-o-keyframes moveBallon {
    50% {
        transform: translateY(-15px);
    }
}
.heading-gradient {
    --gradient-position: 50%;
    background: -webkit-linear-gradient(348deg, #000 0, #000 28.66%, #fc66bd 32.66%, #ffc5e3 33%, #000 37%, #000 45%, #28e5ff 47.5%, #0064da 48%, #000 50.5%, #000 64%, #ff31a1 69%, #000 70%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 200% 100%, 100% 100%;
    background-position: var(--gradient-position) 50%, 50% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 991.98px) {
    .contact-from.image-text-section .fs-5 {
        font-size: 1rem !important;
    }
}
@media (max-width: 991.98px) {
    .contact-from.image-text-section .row div[class*="col-"]:nth-child(1),
    .contact-from.image-text-section .row div[class*="col-"]:nth-child(2) {
        order: 0 !important;
        display: block;
    }
}
.text-danger .placeholder {
    background: 0 0;
    font-style: normal;
    opacity: 1;
    min-height: inherit;
    vertical-align: top;
}
@media (min-width: 768px) {
    .primary-menu li.nav-item.dropdown:first-child .col-lg-8 .col-lg-6:last-child ul.list-unstyled:last-child li:nth-child(2) {
        display: none;
    }
}
.feature-section .container {
    border-top: 1px solid #dee2e6;
}
@media (min-width: 768px) {
    .feature-section .home-services-section--title {
        padding: 0;
    }
}
@media (max-width: 991.98px) {
    .feature-section .home-services-section--title .media-img {
        margin-bottom: 2rem;
    }
}
.feature-section .home-services-section--list ul {
    border-bottom: 1px solid #dee2e6;
}
.feature-section .home-services-section--list ul li {
    padding: 2.65rem 0 2.4rem 3rem;
}
@media (max-width: 1399.98px) {
    .feature-section .home-services-section--list ul li {
        padding: 2.6rem 0 2.6rem 3rem;
    }
}
@media (max-width: 1199.98px) {
    .feature-section .home-services-section--list ul li {
        padding: 2.5rem 0 2.5rem 3rem;
    }
}
@media (max-width: 991.98px) {
    .feature-section .home-services-section--list ul li {
        padding: 1.9rem 0 2rem 2rem;
    }
}
@media (max-width: 767.98px) {
    .feature-section .home-services-section--list ul li {
        padding: 1.2rem 0 0 0;
    }
}
@media (max-width: 767.98px) {
    .feature-section .home-services-section--list ul li .col-md-8 {
        order: 1;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
.feature-section .home-services-section--list ul h3 {
    font-size: 2rem;
    padding-right: 0.5rem;
}
@media (max-width: 1199.98px) {
    .feature-section .home-services-section--list ul h3 {
        font-size: 1.625rem;
    }
}
@media (max-width: 991.98px) {
    .feature-section .home-services-section--list ul h3 {
        font-size: 1.375rem;
    }
}
.feature-section .home-services-section--list ul .media img {
    width: 100%;
}
.feature-section h3 {
    font-size: 2rem;
}
@media (max-width: 1199.98px) {
    .feature-section h3 {
        font-size: 1.625rem;
    }
}
@media (max-width: 991.98px) {
    .feature-section h3 {
        font-size: 1.375rem;
    }
}
.node-112 #image-text,
.type-newsroom #image-text {
    padding-top: 20px;
}
@media (min-width: 992px) {
    .node-112 #image-text,
    .type-newsroom #image-text {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media (max-width: 767.98px) {
    .blog-section .w-75 {
        width: 100% !important;
        margin-bottom: 0 !important;
    }
}
.blog-section .img-holder img {
    width: 100%;
}
.blog-section .insights-img-sm img {
    height: 250px;
    object-fit: cover;
}
.blog-section .insights-img-lg img {
    height: 400px;
    object-fit: cover;
}
@media (min-width: 768px) {
    .blog-section .insights-img-lg img {
        height: 300px;
    }
}
@media (min-width: 992px) {
    .blog-section .insights-img-lg img {
        height: 450px;
    }
}
@media (min-width: 1200px) {
    .blog-section .insights-img-lg img {
        height: 550px;
    }
}
@media (max-width: 767.98px) {
    .blog-section .blog-col-anch:last-child {
        margin-bottom: 0;
    }
}
.view-all-blogs-arrow {
    padding-right: 30px;
    padding-top: 9px;
}
@media (max-width: 767.98px) {
    .type-blogs .services-hero-display {
        margin-top: 80px;
    }
}
@media (max-width: 767.98px) {
    .primary-heading2.mb-3pt5imp {
        margin-bottom: 1.5rem !important;
    }
}
.company-section {
    padding: 90px 0 30px;
    line-height: 30px;
}
@media (max-width: 991.98px) {
    .company-section {
        padding: 40px 0;
    }
}
@media (max-width: 991.98px) {
    .company-section {
        line-height: 26px;
    }
}
.company-section p {
    margin: 0 !important;
}
.company-section .col-lg-6:last-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}
.mobile-show {
    display: none;
}
@media (max-width: 991.98px) {
    .mobile-show {
        display: block;
    }
}
.quick-section .primary-heading2 {
    font-size: 2rem;
}
@media (max-width: 767.98px) {
    .quick-section .primary-heading2 {
        font-size: 1.5rem;
    }
}
.quick-section .table-fw-500 table.border-table td {
    font-weight: 500;
    font-size: 1.125rem;
}
@media (max-width: 767.98px) {
    .quick-section .table-fw-500 table.border-table td {
        font-size: 0.875rem;
    }
}
.quick-section table.border-table {
    border: 1px solid #dfdfdf;
}
.quick-section table.border-table td {
    padding-left: 20px;
    padding-right: 10px;
    line-height: 27px;
    color: #000;
    font-weight: 400;
    font-size: 16px;
}
@media (max-width: 767.98px) {
    .quick-section table.border-table td {
        font-size: 0.9375rem;
    }
}
.quick-section table.border-table td a {
    color: #4a78cf;
}
.quick-section table.border-table td a span {
    margin-right: 4px;
}
@media (min-width: 992px) {
    .node-195 .services-hero-display h1 {
        font-size: 5rem;
        line-height: 1.25;
    }
}
.modal .become-part-section .text-holder {
    padding: 40px 40px 50px;
}
.modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
}
.node-225 .primary-heading2 {
    font-size: 2.625rem;
    line-height: 1.27;
    color: #262b3f;
}
.services-hero-section {
    position: relative;
    padding: 0 0 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.services-hero-section .img-banner {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #262b3f !important;
    background: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/services/services-hero.webp) no-repeat center 0 / cover;
    height: 18.75rem;
    width: 100%;
}
@media (min-width: 992px) {
    .services-hero-section .img-banner {
        height: 35rem;
    }
}
@media (max-width: 1199.98px) {
    .image-text-section h5 {
        font-size: 1rem;
    }
}
@media (max-width: 991.98px) {
    .image-text-section .img-holder {
        margin-bottom: 2rem;
    }
}
.image-text-section .text-holder {
    padding-right: 6rem;
}
@media (max-width: 991.98px) {
    .image-text-section .text-holder {
        margin-bottom: 3rem;
        padding-right: 0;
    }
}
.image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(1) {
    order: 1;
}
@media (min-width: 992px) {
    .image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(1) {
        order: 2;
    }
}
.image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(1) > .text-holder {
    padding-right: 0;
}
@media (min-width: 992px) {
    .image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(1) > .text-holder {
        padding-left: 6rem;
    }
}
@media (max-width: 991.98px) {
    .image-text-section .row:last-child [class*="col-"] .text-holder {
        margin-bottom: 1rem;
    }
}
.image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(2) {
    order: 2;
}
@media (min-width: 992px) {
    .image-text-section .row:nth-child(2n + 2) [class*="col-"]:nth-child(2) {
        order: 1;
    }
}
@media (max-width: 991.98px) {
    .image-text-section .row [class*="col-"]:nth-child(1) {
        order: 2 !important;
        display: flex;
    }
}
@media (max-width: 991.98px) {
    .image-text-section .row [class*="col-"]:nth-child(2) {
        order: 1 !important;
        display: flex;
    }
}
@media (min-width: 992px) {
    .services-hero {
        margin-bottom: 6.5rem;
    }
}
@media (min-width: 1400px) {
    .services-hero {
        margin-top: 8rem;
    }
}
.services-hero-display {
    margin-bottom: 2rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    z-index: 5;
    position: relative;
}
.services-hero-display h1 {
    font-size: 2.25rem;
    line-height: 2.75rem;
    background: linear-gradient(to bottom, #fff 0, #fff 192px, #161616 0, #161616 0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 1399.98px) {
    .services-hero-display h1 {
        background: linear-gradient(to bottom, #fff 0, #fff 154px, #161616 0, #161616 0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
@media (max-width: 991.98px) {
    .services-hero-display h1 {
        background: linear-gradient(to bottom, #fff 0, #fff 96px, #161616 0, #161616 0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
@media (max-width: 767.98px) {
    .services-hero-display h1 {
        background: linear-gradient(to bottom, #fff 0, #fff 71px, #161616 0, #161616 0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}
@media (min-width: 768px) {
    .services-hero-display h1 {
        font-size: 3rem;
        line-height: 3.75rem;
    }
}
@media (min-width: 992px) {
    .services-hero-display h1 {
        font-size: 2.875rem;
        line-height: 4rem;
        padding-top: 150px;
    }
}
@media (min-width: 1400px) {
    .services-hero-display h1 {
        font-size: 3.875rem;
        line-height: 5.5rem;
        padding-top: 40px;
    }
}
.services-hero-display h6 {
    text-transform: uppercase;
    font-size: 0.58125rem;
    font-weight: 400;
    letter-spacing: 1px;
}
@media (min-width: 768px) {
    .services-hero-display h6 {
        font-size: 0.75rem;
    }
}
.home-hero-display--lets-talk {
    text-align: center;
    right: 0;
}
@media (max-width: 991.98px) {
    .home-hero-display--lets-talk {
        margin-left: 0;
        width: auto;
        width: 50%;
        padding: 10px;
    }
}
.transform-numbers-section {
    position: relative;
    min-height: 100vh;
    background: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/images/services/transform-numbers.webp) no-repeat center 0 / cover;
    width: 100%;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .transform-numbers-section {
        min-height: 0;
    }
}
.transform-numbers-section .first-container {
    margin-bottom: 2.5rem;
    padding-top: 4.5625rem;
}
@media (min-width: 992px) {
    .transform-numbers-section .first-container {
        margin-bottom: 18.75rem;
    }
}
.transform-numbers-section .counter-heading {
    font-size: 2.8125rem;
}
@media (min-width: 1200px) {
    .transform-numbers-section .counter-heading {
        font-size: 4.5rem;
    }
}
.transform-numbers-section h2 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}
@media (min-width: 768px) {
    .transform-numbers-section h2 {
        font-size: 3.375rem;
    }
}
.transform-numbers-section h2,
.transform-numbers-section p {
    color: #fff;
}
@media (max-width: 575.98px) {
    .transform-numbers-section h2 br,
    .transform-numbers-section p br {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .transform-numbers-section .col-mb-sm {
        margin-bottom: 4rem;
    }
}
.blog-section--title {
    font-size: 2.5rem;
    font-weight: 400;
    max-width: 54.625rem;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    line-height: 1.3;
}
@media (min-width: 576px) {
    .blog-section--title {
        padding-top: 4.1875rem;
        padding-bottom: 3rem;
    }
}
@media (max-width: 991.98px) {
    .blog-section--title {
        font-size: 1.75rem;
        padding-bottom: 1.5rem;
    }
}
.blog-section .blog-label {
    margin-top: 1rem;
}
@media (min-width: 992px) {
    .blog-section .blog-label {
        margin-top: 1.5rem;
    }
}
.blog-section .blog-title {
    font-size: 1rem;
    font-weight: 500;
    color: #161616;
    line-height: 1.4;
}
@media (min-width: 992px) {
    .blog-section .blog-title {
        font-size: 1.5rem;
    }
}
@media (max-width: 991.98px) {
    .blog-section .blog-title {
        margin-bottom: 0.8rem;
        margin-top: 1rem;
    }
}
.blog-section .blog-col-anch {
    margin-bottom: 2.5rem;
}
.blog-section .blog-col-anch:hover .text-link-arrow:after {
    transform: scaleX(0.785);
}
.blog-section .blog-col-anch:hover .arrow-right {
    width: 24px;
}
@media (min-width: 992px) {
    .blog-section .row > .blog-col-anch:nth-child(3) {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }
    .blog-section .row > .blog-col-anch:nth-child(4) {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }
}
.blog-section .text-link-arrow {
    margin-bottom: 35px;
}
.services-text-section {
    padding: 2.5rem 0 2.5rem;
}
@media (min-width: 992px) {
    .services-text-section {
        padding: 6rem 0 6rem;
    }
}
@media (max-width: 991.98px) {
    .services-text-section h3 {
        font-size: 1.75rem;
        line-height: 1.5;
    }
}
@media (max-width: 575.98px) {
    .services-text-section br {
        display: none;
    }
}
.type-trainees section.services-hero-section,
section.services-hero-section {
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .type-trainees section.services-hero-section,
    section.services-hero-section {
        margin-bottom: 5rem;
    }
}
@media (min-width: 576px) {
    .media-container:before {
        background: linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0) 92.98%);
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 300px;
        z-index: 2;
    }
}
@media (min-width: 576px) {
    .media-container:after {
        background: linear-gradient(270deg, #fff 0, rgba(255, 255, 255, 0) 100%);
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 300px;
        z-index: 2;
        top: 0;
    }
}
.media-container .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
.media-container .swiper::before {
    content: "";
    width: 300px;
    height: 565px;
    position: absolute;
    background: #dee2e6;
    top: 7%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 15px;
    z-index: -1;
}
.media-container .swiper .swiper-slide {
    background-size: cover;
    background-position: center;
    width: 300px;
    height: 300px;
    margin: 0 5px;
    padding: 10px;
}
.media-container .swiper .swiper-slide img {
    display: block;
    width: 100%;
    border-radius: 15px;
}
.media-container .swiper .swiper-slide .news-content {
    visibility: hidden;
    opacity: 0;
    padding: 10px 5px;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 0.5s ease;
    cursor: auto;
}
.media-container .swiper .swiper-slide .news-content--title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    line-height: 1.3;
}
.media-container .swiper .swiper-slide .news-content .text-link-arrow {
    cursor: pointer;
    transition: none;
}
.node-219 #image-text {
    padding-top: 20px;
}
@media (min-width: 992px) {
    .node-219 #image-text {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
.node-219 .blog-section h5 {
    color: #2a304a;
}
@media (min-width: 992px) {
    .node-219 .home-services-section--title {
        margin-top: 47px;
    }
}
.node-219 .feature-section h3 {
    font-weight: 400;
    color: #262b3f;
}
.search-popup {
    display: none;
    position: fixed;
    z-index: 99;
    height: 100vh;
    width: 100%;
    background: #262b3f;
    overflow: auto;
    padding-top: 11rem;
    padding-bottom: 5rem;
}
@media (max-width: 767.98px) {
    .search-popup {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
}
@media (max-width: 767.98px) {
    .search-popup .inner-search.mb-4rem {
        margin-bottom: 2rem !important;
    }
}
.search-popup .inner-search form {
    display: flex;
    align-items: center;
    position: relative;
}
.search-popup .inner-search form input {
    border: 0;
    border-bottom: 1px solid rgba(251, 251, 251, 0.19);
    background: 0 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.37);
    font-size: 54px;
    font-weight: 400;
    line-height: 0;
    min-height: auto;
    padding-left: 50px;
    outline: 0;
    box-shadow: none;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}
@media (max-width: 767.98px) {
    .search-popup .inner-search form input {
        font-size: 26px;
    }
}
.search-popup .inner-search form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.368627451);
}
.search-popup .inner-search form input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.368627451);
    opacity: 1;
}
.search-popup .inner-search form input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.368627451);
    opacity: 1;
}
.search-popup .inner-search form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.368627451);
}
.search-popup .inner-search form input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.368627451);
}
.search-popup .inner-search form input::placeholder {
    color: rgba(255, 255, 255, 0.368627451);
}
.search-popup .inner-search form input:focus {
    border-bottom-color: #f26223;
}
.search-popup .inner-search form button.btn {
    padding: 0 0 30px 0;
    background: 0 0;
    border: 0;
    font-size: 30px;
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
}
@media (max-width: 767.98px) {
    .search-popup .inner-search form button.btn {
        padding: 0 0 10px 0;
    }
}
@media (max-width: 991.98px) {
    .search-popup .links-serach.suggested .d-flex {
        flex-wrap: wrap;
    }
}
@media (max-width: 767.98px) {
    .search-popup .links-serach.suggested .d-flex .mb-4 {
        margin-bottom: 1rem;
    }
}
.search-popup .links-serach .content-text {
    min-width: 220px;
    margin-right: 20px;
}
@media (max-width: 767.98px) {
    .search-popup .links-serach .content-text {
        width: 100%;
        border-bottom: 1px solid #4e5263;
        margin-bottom: 22px;
    }
}
.search-popup .links-serach .content-text:last-child {
    border: 0;
}
.search-popup .links-serach .content-text ul li {
    margin-bottom: 13px;
}
.search-popup .links-serach .content-text ul li a {
    color: #fff;
    line-height: 30px;
}
.search-popup .links-serach .content-text ul li a:hover {
    color: #f26223;
}
@media (max-width: 767.98px) {
    .search-popup .links-serach .content-text ul li {
        margin-bottom: 3px;
    }
}
.search-popup .links-serach .content-text h6 {
    font-size: 0.875rem;
}
.search-popup .links-serach ul.list-unstyled li a:after {
    content: "";
    position: relative;
    top: 0;
    width: 12px;
    height: 12px;
    /* background: url(/themes/custom/sysltd/assets/images/home/arrow-right.svg) no-repeat right center; */
    display: inline-block;
    vertical-align: middle;
    transition: width 250ms ease-in-out;
    margin-left: 15px;
}
.search-popup .links-serach ul.list-unstyled li:hover a:after {
    width: 20px;
}
.search-popup .search-wrap-links {
    display: none;
}
.search-popup .search-wrap-links .content-text {
    border: 0;
}
.search-popup .search-wrap-links .head-search {
    color: #848484;
    font-size: 18px;
}
.search-popup .search-wrap-links .head-search .link {
    color: #f26223;
    font-style: italic;
}
.close .search-wrap span:before {
    content: "\e913";
}
.sl-hide-filters form .suggested.links-serach {
    display: none !important;
}
.sl-hide-filters form .inner-search:before {
    content: "\e908";
    font-family: icomoon !important;
    padding: 0 0 5px 0;
    background: 0 0;
    border: 0;
    position: absolute;
    left: 0;
    color: #fff;
    top: 5px;
    font-size: 25px;
}
@media (min-width: 768px) {
    .sl-hide-filters form .inner-search:before {
        top: 22px;
        font-size: 30px;
    }
}
.sl-hide-filters form .inner-search input {
    padding-bottom: 25px;
    width: 100%;
}
@media (max-width: 767.98px) {
    .sl-hide-filters form .inner-search input {
        padding-bottom: 15px;
        padding-left: 40px;
    }
}
.sl-hide-filters .form-actions {
    display: none;
}
.inner-search {
    position: relative;
}
.sl-hide-filters.search-popup .inner-search form {
    width: 100%;
}
.sl-hide-filters.search-popup .inner-search form .content-box {
    width: 100%;
}
@media (max-width: 767.98px) {
    .search-results-section {
        padding-top: 60px;
    }
}
@media (max-width: 767.98px) {
    .search-results-section .right-links-section {
        padding-top: 40px;
    }
}
.search-results-section .right-links-section .quick-links-section h5 {
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 32px;
}
@media (max-width: 767.98px) {
    .search-results-section .right-links-section .quick-links-section h5 {
        font-weight: 500;
        font-size: 20px;
        line-height: 25px;
    }
}
.search-results-section .right-links-section .quick-links-section .arrow-links {
    margin-bottom: 81px;
}
@media (max-width: 767.98px) {
    .search-results-section .right-links-section .quick-links-section .arrow-links {
        margin-bottom: 60px;
    }
}
.search-results-section .right-links-section .quick-links-section .arrow-links li {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 24px;
}
.search-results-section .right-links-section .quick-links-section .arrow-links li::after {
    content: "";
    position: relative;
    top: 0;
    width: 12px;
    height: 12px;
    /* background: url(/themes/custom/sysltd/assets/images/home/arrow-right.svg) no-repeat right center; */
    display: inline-block;
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
    margin-left: 12px;
    transform: rotate(-45deg);
}
.search-results-section .right-links-section .quick-links-section .arrow-links li:hover::after {
    transform: rotate(0);
}
.search-results-section .right-links-section .quick-links-section .arrow-links li:hover a:hover:before {
    width: 100%;
}
.search-results-section .right-links-section .quick-links-section .arrow-links li:hover a:hover {
    color: #f26223;
}
.search-results-section .right-links-section .quick-links-section .arrow-links li:hover a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    margin-top: 1px;
    background: #f26223;
    left: 0;
    transition: all 0.2s ease-in-out;
}
.search-results-section .right-links-section .quick-links-section .arrow-links li a {
    position: relative;
}
.arrow-links-quick {
    margin-bottom: 81px;
}
@media (max-width: 767.98px) {
    .arrow-links-quick {
        margin-bottom: 60px;
    }
}
.arrow-links-quick li {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
}
.arrow-links-quick li::after {
    content: "";
    position: relative;
    top: 0;
    width: 12px;
    height: 12px;
    background: url(/themes/custom/sysltd/assets/images/home/arrow-right.svg) no-repeat right center;
    display: inline-block;
    vertical-align: middle;
    transition: all 0.2s ease-in-out;
    margin-left: 12px;
    transform: rotate(-45deg);
}
.arrow-links-quick li:hover::after {
    transform: rotate(0);
}
.arrow-links-quick li:hover a:hover:before {
    width: 100%;
}
.arrow-links-quick li:hover a:hover {
    color: #f26223;
}
.arrow-links-quick li:hover a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 1px;
    bottom: 0;
    margin-top: 1px;
    background: #f26223;
    left: 0;
    transition: all 0.2s ease-in-out;
}
.arrow-links-quick li a {
    position: relative;
}
input[type="submit"]:not(:disabled) {
    text-indent: 0 !important;
}
.expertise-section .text-content {
    max-width: 410px;
}
.expertise-section .media-img {
    position: relative;
}
.expertise-section .media-img .img-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 89px;
    z-index: 999;
}
.unique-approach .circle {
    border: 1px solid #f26223;
    border-radius: 30px;
    padding: 12px 20px;
    position: relative;
}
@media (max-width: 767.98px) {
    .unique-approach .circle {
        text-align: center;
    }
}
.unique-approach .circle .fw-600 {
    text-transform: uppercase;
    text-align: center;
}
@media (min-width: 768px) {
    .unique-approach .circle .fw-600 {
        text-align: left;
    }
}
.unique-approach .analysis-box {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
@media (min-width: 768px) {
    .unique-approach .analysis-box {
        width: 45%;
    }
}
@media (max-width: 767.98px) {
    .unique-approach .analysis-box {
        margin-bottom: 35px;
    }
}
@media (min-width: 768px) {
    .unique-approach .analysis-box:after {
        content: "\e918";
        font-family: icomoon;
        font-size: 20px;
        position: absolute;
        top: 50%;
        left: 100%;
        transform: rotate(-90deg);
        color: #f26223;
        margin-top: -15px;
        margin-left: 0;
        z-index: 1;
        -webkit-animation: moveArrow 2s linear infinite;
        -moz-animation: moveArrow 2s linear infinite;
        -o-animation: moveArrow 2s linear infinite;
        animation-delay: 1s;
        opacity: 0;
    }
}
.unique-approach .process {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (min-width: 768px) {
    .unique-approach .process {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767.98px) {
    .unique-approach .process h6 {
        width: 100%;
    }
    .unique-approach .process h6 br {
        display: none;
    }
}

.footer-sm a:hover {
    color: #161616;
}
.footer-bottom {
    background-color: #000;
}
.back-to-top {
    position: fixed;
    width: 3rem;
    height: 3rem;
    right: 1.875rem;
    bottom: 1.875rem;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
    display: none;
}
.back-to-top i {
    color: #f26223;
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer-links {
    margin-bottom: 0;
}
@media (min-width: 1400px) {
    .footer-links .content-strcuture ul {
        padding-right: 40px;
    }
}
@media (min-width: 768px) {
    .footer-links .content-strcuture {
        height: 460px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
}
@media (max-width: 1399.98px) {
    .footer-links .content-strcuture {
        height: 460px;
    }
}
@media (max-width: 767.98px) {
    .footer-links .content-strcuture {
        height: auto;
    }
}
.footer-links .content-strcuture li a {
    word-break: break-word;
}
.footer-links ul .head strong a {
    font-size: 19px;
    margin-bottom: 14px;
    display: inline-block;
}
.footer-links ul li {
    margin-bottom: 0.25rem;
}
.footer-links ul li a {
    font-size: 16px;
    line-height: 1.25rem;
}
@media (max-width: 1400px) {
    .footer-links ul li a {
        font-size: 14px !important;
    }
    .navbar .megamenu li a {
    font-size: 15px;
}
}
.footer-links ul li a:hover {
    color: #f26223;
}
@media (min-width: 992px) {
    .footer-links h3 {
        margin-bottom: 1.5625rem;
    }
}
.ma5menu {
    display: none;
    box-sizing: border-box;
}
.ma5menu *,
.ma5menu :after,
.ma5menu :before {
    box-sizing: border-box;
}
.ma5menu > ul {
    display: none;
}
.ma5menu__head {
    padding: 0 5px;
    border-bottom: 1px solid #eeeff1;
    height: 60px;
    text-align: center;
    color: #fff;
    background-color: transparent;
    position: relative;
}
.ma5menu__header {
    line-height: 35px;
    color: #fff;
    background-color: transparent;
}
.ma5menu__header a {
    color: #f26223;
}
.ma5menu__header a:hover {
    color: #f26223;
}
.ma5menu__close {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3C/svg%3E");
    background-size: 24px 24px;
    background-position: 50% 50%;
    filter: brightness(0);
}
.ma5menu__toggle:hover .ma5menu__close {
    color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20fill%3D%22%23F26223%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3C/svg%3E");
    background-color: transparent;
}
.ma5menu__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    width: 40px;
    height: 40px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M14%206l-3.75%205%202.85%203.8-1.6%201.2C9.81%2013.75%207%2010%207%2010l-6%208h22L14%206z%22/%3E%3C/svg%3E");
    background-size: 40px 40px;
    background-position: 50% 50%;
}
.ma5menu__home:hover .ma5menu__logo {
    color: #f26223;
}
.ma5menu__home {
    font-weight: 700;
    color: inherit;
}
.ma5menu__tools {
    display: none;
}
.ma5menu__footer .ma5menu__tools {
    display: block;
}
.ma5menu__footer {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    background-color: transparent;
    text-transform: none;
    position: sticky;
    top: 100%;
    padding: 10px 10px;
    width: 100%;
}
.ma5menu__footer a {
    color: #f26223;
    width: 100%;
}
.ma5menu__footer a:hover {
    color: #f26223;
}
.ma5menu__toggle {
    cursor: pointer;
    color: #fff;
    background-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    width: 30px;
    height: 26px;
    position: relative;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    font-weight: 400;
    padding: 0;
    border-radius: 0;
    margin-right: 15px;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}
a.ma5menu__toggle {
    margin-right: 5px;
}
button.ma5menu__toggle {
    display: none;
}
.ma5menu__toggle:hover {
    color: #fff;
    background-color: #ef6c00;
}
.ma5menu__header .ma5menu__toggle {
    position: absolute;
    top: 0;
    width: 30px;
    height: 60px;
    color: #fff;
    background-color: transparent;
}
.ma5menu__header .ma5menu__toggle:hover {
    color: #f26223;
    background-color: transparent;
}
.ma5menu--left .ma5menu__header .ma5menu__toggle {
    right: 0;
}
.ma5menu--right .ma5menu__header .ma5menu__toggle {
    left: 0;
}
.ma5menu__icon-toggle {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    width: 18px;
    height: 24px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxNyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzJfMTkyNikiPgo8cGF0aCBkPSJNMTYuOTk5OSAwLjY4NTgzMUMxNi44Njk0IDAuOTk0ODQyIDE2LjY0MDYgMS4wOTk1MSAxNi4zMTQ2IDEuMDk5MDZDMTEuMDk2NiAxLjA5MjY5IDUuODc4NjggMS4wOTQ1MSAwLjY2MDc0MyAxLjA5MzE0QzAuNTYyMjc1IDEuMDkzMTQgMC40NTkzNzEgMS4wOTA0MSAwLjM2NjY2OSAxLjA2MTI5QzAuMTIxMzg1IDAuOTg1Mjg1IC0wLjAyNzY0ODkgMC43MzYzNDcgMC4wMDQyODY4NiAwLjQ4MTAzOEMwLjAzNTc3OSAwLjIyNjE4MyAwLjI0MjAzMSAwLjAyNTQ4NTQgMC40OTUyOTggMC4wMDYzNzEzNkMwLjU1NjA2NSAwLjAwMTgyMDM5IDAuNjE2ODMyIDAuMDA0NTUwOTcgMC42NzgwNDIgMC4wMDQ1NTA5N0M1Ljg4OTc3IDAuMDA0NTUwOTcgMTEuMTAyNCAwLjAwNjM3MTM2IDE2LjMxNDYgMEMxNi42NDA2IDAgMTYuODY5NCAwLjEwMzc2MiAxNi45OTk5IDAuNDEzMjI4VjAuNjg1ODMxWiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTE3IDYuMTM2NDhDMTYuODY5NiA2LjQ0NTQ5IDE2LjY0MDcgNi41NTAxNiAxNi4zMTQ3IDYuNTQ5NzFDMTEuMDk2OCA2LjU0MzM0IDUuODc4ODMgNi41NDUxNiAwLjY2MDg4OSA2LjU0Mzc5QzAuNTYyNDIxIDYuNTQzNzkgMC40NTk1MTcgNi41NDEwNiAwLjM2NjgxNCA2LjUxMTk0QzAuMTIxMDg3IDYuNDM1NDggLTAuMDI3NTAyOSA2LjE4NjU0IDAuMDAzOTg5MjcgNS45MzEyM0MwLjAzNTkyNSA1LjY3NjM4IDAuMjQxNzMzIDUuNDc1NjggMC40OTUwMDEgNS40NTY1N0MwLjU1NTc2NyA1LjQ1MjAyIDAuNjE2NTM0IDUuNDU0NzUgMC42Nzc3NDQgNS40NTQ3NUM1Ljg4OTkyIDUuNDU0NzUgMTEuMTAyNSA1LjQ1NjU3IDE2LjMxNDcgNS40NTAyQzE2LjY0MDcgNS40NTAyIDE2Ljg2OTYgNS41NTM5NiAxNyA1Ljg2MzQyVjYuMTM2MDNWNi4xMzY0OFoiIGZpbGw9IndoaXRlIi8+CjxwYXRoIGQ9Ik0xNyAxMS41ODY3QzE2Ljg2OTYgMTEuODk1NyAxNi42NDA3IDEyLjAwMDQgMTYuMzE0NyAxMS45OTk5QzExLjA5NjggMTEuOTkzNSA1Ljg3ODgzIDExLjk5NTQgMC42NjA4ODkgMTEuOTk0QzAuNTYyNDIxIDExLjk5NCAwLjQ1OTUxNyAxMS45OTEzIDAuMzY2ODE0IDExLjk2MjFDMC4xMjEwODcgMTEuODg1NyAtMC4wMjc1MDI5IDExLjYzNjcgMC4wMDM5ODkyNyAxMS4zODE0QzAuMDM1OTI1IDExLjEyNjYgMC4yNDE3MzMgMTAuOTI1OSAwLjQ5NTAwMSAxMC45MDY4QzAuNTU1NzY3IDEwLjkwMjIgMC42MTY1MzQgMTAuOTA0OSAwLjY3Nzc0NCAxMC45MDQ5QzUuODg5OTIgMTAuOTA0OSAxMS4xMDI1IDEwLjkwNjggMTYuMzE0NyAxMC45MDA0QzE2LjY0MDcgMTAuOTAwNCAxNi44Njk2IDExLjAwNDIgMTcgMTEuMzEzNlYxMS41ODYyVjExLjU4NjdaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzJfMTkyNiI+CjxyZWN0IHdpZHRoPSIxNyIgaGVpZ2h0PSIxMiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K);
}
.ma5menu__icon-up {
    margin: 0;
    width: 44px;
    height: 44px;
    display: inline-block;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 24px 24px;
    filter: brightness(0);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http://www.w3.org/2000/svg%22%20fill%3D%22%23fff%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M16.59%208.59L12%2013.17%207.41%208.59%206%2010l6%206%206-6z%22/%3E%3C/svg%3E");
}
.ma5menu__alert {
    display: block;
    text-align: center;
    width: 100%;
    height: 50px;
    bottom: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 500;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    background-image: -o-linear-gradient(top, rgba(14, 101, 182, 0) 0, #fff 50%);
    background-image: linear-gradient(to bottom, rgba(14, 101, 182, 0) 0, #fff 50%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 0 50px;
    -o-transition: background-position 0.4s ease-in 0.3s;
    transition: background-position 0.4s ease-in 0.3s;
    will-change: auto;
    pointer-events: none;
}
@media (min-width: 768px) {
    .ma5menu__alert {
        width: 360px;
    }
}
.ma5menu__container--scroll .ma5menu__alert {
    background-position: 0 0;
    -o-transition: background-position 0.4s ease-out;
    transition: background-position 0.4s ease-out;
    pointer-events: auto;
}
.ma5menu__alert-content {
    width: 150px;
    height: 40px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -o-transition: bottom 0.4s ease-in;
    transition: bottom 0.4s ease-in;
}
.ma5menu__container--scroll .ma5menu__alert-content {
    bottom: 0;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ma5-arrowDown;
    animation-name: ma5-arrowDown;
    -o-transition: bottom 0.4s ease-out 0.4s;
    transition: bottom 0.4s ease-out 0.4s;
}
.ma5menu__container {
    -o-transition: none !important;
    transition: none !important;
    position: fixed;
    background-color: #fff;
    height: 100%;
    top: 0;
    line-height: 19px;
    overflow: hidden;
    border: none;
    z-index: 10000;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.14);
}
@media (max-width: 767px) {
    .ma5menu__container {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .ma5menu__container {
        width: 360px;
    }
}
.ma5menu--left .ma5menu__container {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    left: 0;
}
.ma5menu--right .ma5menu__container {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    right: -100%;
}
.ma5menu--ready.ma5menu--left .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.ma5menu--ready.ma5menu--right .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@media (min-width: 768px) {
    .ma5menu--left .ma5menu__container {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
        padding: 0;
        left: 0;
    }
}
@media (min-width: 768px) {
    .ma5menu--right .ma5menu__container {
        -webkit-transform: translate3d(360px, 0, 0);
        transform: translate3d(360px, 0, 0);
        right: -360px;
    }
}
.preload .ma5menu__container {
    opacity: 0;
    z-index: -1;
}
.ma5menu__btn--enter {
    font-size: 13px;
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    text-align: right;
    margin-right: 20px;
    width: 100%;
}
.ma5menu__btn--enter:hover {
    -o-transition: none;
    transition: none;
}
.ma5menu__btn--enter:before {
    content: "\e90a";
    font-family: icomoon !important;
    color: #000;
    line-height: 50px;
}
.ma5menu--left:before,
.ma5menu--right:before {
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255, 0.01);
    z-index: -1;
    -o-transition: background-color 0.4s ease-out 0.5s, z-index 0.8s linear;
    transition: background-color 0.4s ease-out 0.5s, z-index 0.8s linear;
    width: 100%;
}
.ma5menu__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}
@-webkit-keyframes ma5-panelIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5-panelIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes ma5-panelOut {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
    }
}
@keyframes ma5-panelOut {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuIn {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
    }
}
@keyframes ma5menuIn {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuOut {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
    }
}
@keyframes ma5menuOut {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuOutB {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5menuOutB {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@media (min-width: 768px) {
    @-webkit-keyframes ma5-panelIn {
        0% {
            -webkit-transform: translate3d(360px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
        }
    }
    @keyframes ma5-panelIn {
        0% {
            -webkit-transform: translate3d(360px, 0, 0);
            transform: translate3d(360px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }
    @-webkit-keyframes ma5-panelOut {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(360px, 0, 0);
        }
    }
    @keyframes ma5-panelOut {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(360px, 0, 0);
            transform: translate3d(360px, 0, 0);
        }
    }
    @-webkit-keyframes ma5menuIn {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(-360px, 0, 0);
        }
    }
    @keyframes ma5menuIn {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(-360px, 0, 0);
            transform: translate3d(-360px, 0, 0);
        }
    }
    @-webkit-keyframes ma5menuOut {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(-360px, 0, 0);
        }
    }
    @keyframes ma5menuOut {
        0% {
            -webkit-transform: translate3d(0, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(-360px, 0, 0);
        }
    }
    @-webkit-keyframes ma5menuOutB {
        0% {
            -webkit-transform: translate3d(-360px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
        }
    }
    @keyframes ma5menuOutB {
        0% {
            -webkit-transform: translate3d(-360px, 0, 0);
            transform: translate3d(-360px, 0, 0);
        }
        100% {
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
        }
    }
}
@-webkit-keyframes ma5-panelInIEphone {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5-panelInIEphone {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes ma5-panelOutIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes ma5-panelOutIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuInIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes ma5menuInIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuOutIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes ma5menuOutIEphone {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes ma5menuOutBIEphone {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5menuOutBIEphone {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes ma5-panelInIEtablet {
    0% {
        -webkit-transform: translate3d(360px, 0, 0);
        transform: translate3d(360px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5-panelInIEtablet {
    0% {
        -webkit-transform: translate3d(360px, 0, 0);
        transform: translate3d(360px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes ma5-panelOutIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(360px, 0, 0);
        transform: translate3d(360px, 0, 0);
    }
}
@keyframes ma5-panelOutIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(360px, 0, 0);
        transform: translate3d(360px, 0, 0);
    }
}
@-webkit-keyframes ma5menuInIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
}
@keyframes ma5menuInIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
}
@-webkit-keyframes ma5menuOutIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
}
@keyframes ma5menuOutIEtablet {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
}
@-webkit-keyframes ma5menuOutBIEtablet {
    0% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes ma5menuOutBIEtablet {
    0% {
        -webkit-transform: translate3d(-360px, 0, 0);
        transform: translate3d(-360px, 0, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@-webkit-keyframes ma5-arrowDown {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
@keyframes ma5-arrowDown {
    0% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    60% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}
.white-bg-sapce {
    background: #fff;
    padding: 1.9rem 2rem 1.2rem 3rem;
}
.grey-bg-sapce {
    background: #f0f0f0;
    padding: 1.5rem 2rem 1rem 2rem;
}
.navbar-dark .navbar-nav .nav-link {
    position: relative;
}
.navbar-dark .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    height: calc(100% + 30px);
    top: 0;
    z-index: 1;
    width: 100%;
}
label.error,
span.error-message {
    color: #dc3545;
}
.head-search {
    color: #848484;
    font-size: 18px;
    position: absolute;
    z-index: 100;
    background-color: #262b3f !important;
    width: 100%;
}
.head-search .link {
    color: #f26223;
    font-style: italic;
    text-transform: capitalize;
}
@font-face {
    font-family: slick;
    src: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/css/./fonts/slick.eot);
    src: url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/css/./fonts/slick.eot#iefix) format("embedded-opentype"), url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/css/./fonts/slick.woff) format("woff"),
        url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/css/./fonts/slick.ttf) format("truetype"), url(https://ricidemo.resochem.org/themes/custom/sysltd/assets/css/./fonts/slick.svg#slick) format("svg");
    font-weight: 400;
    font-style: normal;
}
img.bx {
    filter: invert(1);
    height: 17px;
    position: relative;
    left: -8px;
    top: 2px;
}
img.cm {
    filter: invert(1);
    height: 18px;
}
section#home-services {
    padding-top: 40px;
    padding-bottom: 50px;
}
section#home-services {
    padding-top: 40px;
    padding-bottom: 50px;
}
.home-services-section--list ul li:hover {
    box-shadow: 0 0 11px #ccc;
    transition: 0.5s;
}
h2.servs {
    padding-bottom: 20px;
}
.primary-menu .nav-location .dropdown-menu ul li img {
    width: 18px;
    margin-top: 8px;
    height: 17px;
}
.col-lg-12.white-bg-sapce .list-unstyled li:first-child a {
    color: #246dba;
}
.content-strcuture strong {
    color: #3081cb;
}
@media (max-width: 372.98px) {
    body .primary-menu .navbar-brand a.media img {
        width: 110px !important;
    }
}
.img-holder.insights-img-sm {
    overflow: hidden;
    position: relative;
    height: 220px;
}
.img-holder.insights-img-sm img {
    position: absolute;
    /* height: 100%; */
    width: 100%;
    transition: 0.5s;
    object-position: top;
}
.col-md-4.col-md-4.blog-col-anch:hover img {
    transform: scale(1.3);
    transition: 0.5s;
}
.col-md-4.col-md-4.blog-col-anch {
    height: 350px;
    margin-bottom: 30px;
}
h5.mt-4.mb-12px {
    margin-top: 10px !important;
}
a.nav-link.bec {
    text-transform: unset !important;
}
.tawk-icon-right img {
    display: none;
}
.content-box input#searchInput::placeholder {
    color: #767986 !important;
}
form#searchForm {
    background: unset !important;
}
ul.list-unstyled img {
    filter: unset !important;
}
img#selected-flag {
    /* filter: unset !important; */
}
.contact-page__right {
    margin-top: 0 !important;
}
.section-title__title {
    font-size: 27px !important;
}
@media only screen and (max-width: 767px) {
    body h2.section-title__title {
        font-size: 21px;
        line-height: 29px !important;
    }
}
.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 1rem;
    --bs-breadcrumb-bg: ;
    --bs-breadcrumb-border-radius: ;
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    background-color: var(--bs-breadcrumb-bg);
    border-radius: var(--bs-breadcrumb-border-radius);
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/");
}
li.breadcrumb-item a {
    color: #fff;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}
.noie.ma5menu--active.ma5menu--left .ma5menu__container {
    -webkit-animation-name: ma5menuOutB;
    animation-name: ma5menuOutB;
}
.ma5menu__panel > ul li:first-of-type {
    border-top: 1px solid #EEEFF1;
}

@media (max-width: 767px) {
    .ma5menu--active > body .ma5menu__container * {
        pointer-events: auto;
    }
}
.ma5menu__panel > ul {
    margin: 0 0 30px 0;
    padding: 0;
    }
@media (max-width: 767px) {
    .ma5menu--active > body .ma5menu__container * {
        pointer-events: auto;
    }
}
.ma5menu__btn--enter, .ma5menu__btn--leave {
    font-size: 13px;
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    text-align: right;
    margin-right: 20px;
    width: 100%;
}
.ma5menu__panel > ul li > .ma5menu__btn--enter + a {
    padding-right: 60px;
    margin-right: -50px;
}
@media (max-width: 767px) {
    .ma5menu--active > body .ma5menu__container * {
        pointer-events: auto;
    }
}
.ma5menu__panel > ul li a {
    color: #161616;
    background-color: transparent;
}
.ma5menu__panel > ul li a,.ma5menu__panel > ul li .ma5menu__category {
    display: inline-block;
    vertical-align: top;
    text-decoration: none !important;
    width: 100%;
    outline: none !important;
    border-bottom: 1px solid #EEEFF1;
    padding: 15px 20px 15px 20px;
    font-size: 14px;
    line-height: 19px;
    overflow: hidden;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    min-height: 50px;
    text-transform: capitalize;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}

.ma5menu__panel > ul li a {
    color: #161616;
    background-color: transparent;
}

@media (max-width: 767px) {
    .ma5menu__container {
        width:100%;
    }
}

@media (min-width: 768px) {
    .ma5menu__container {
        width:360px;
    }
}

.ma5menu--left .ma5menu__container {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
    left: 0;
}

.ma5menu--right .ma5menu__container {
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
    right: -100%;
}

.ma5menu--ready.ma5menu--left .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie.ma5menu--ready.ma5menu--left .ma5menu__container {
    -webkit-animation-name: ma5menuOut;
    animation-name: ma5menuOut;
}

.ie.ma5menu--ready.ma5menu--left .ma5menu__container {
    -webkit-animation-name: ma5menuOutIEphone;
    animation-name: ma5menuOutIEphone;
}

@media (min-width: 768px) {
    .ie.ma5menu--ready.ma5menu--left .ma5menu__container {
        -webkit-animation-name:ma5menuOutIEtablet;
        animation-name: ma5menuOutIEtablet;
    }
}

.ma5menu--ready.ma5menu--right .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie.ma5menu--ready.ma5menu--right .ma5menu__container {
    -webkit-animation-name: ma5menuOutB;
    animation-name: ma5menuOutB;
}

.ie.ma5menu--ready.ma5menu--right .ma5menu__container {
    -webkit-animation-name: ma5menuOutBIEphone;
    animation-name: ma5menuOutBIEphone;
}

@media (min-width: 768px) {
    .ie.ma5menu--ready.ma5menu--right .ma5menu__container {
        -webkit-animation-name:ma5menuOutBIEtablet;
        animation-name: ma5menuOutBIEtablet;
    }
}

.ma5menu--active.ma5menu--left .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie.ma5menu--active.ma5menu--left .ma5menu__container {
    -webkit-animation-name: ma5menuOutB;
    animation-name: ma5menuOutB;
}

.ie.ma5menu--active.ma5menu--left .ma5menu__container {
    -webkit-animation-name: ma5menuOutBIEphone;
    animation-name: ma5menuOutBIEphone;
}

@media (min-width: 768px) {
    .ie.ma5menu--active.ma5menu--left .ma5menu__container {
        -webkit-animation-name:ma5menuOutBIEtablet;
        animation-name: ma5menuOutBIEtablet;
    }
}

.ma5menu--active.ma5menu--right .ma5menu__container {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie.ma5menu--active.ma5menu--right .ma5menu__container {
    -webkit-animation-name: ma5menuIn;
    animation-name: ma5menuIn;
}

.ie.ma5menu--active.ma5menu--right .ma5menu__container {
    -webkit-animation-name: ma5menuInIEphone;
    animation-name: ma5menuInIEphone;
}

@media (min-width: 768px) {
    .ie.ma5menu--active.ma5menu--right .ma5menu__container {
        -webkit-animation-name:ma5menuInIEtablet;
        animation-name: ma5menuInIEtablet;
    }
}

@media (min-width: 768px) {
    .ma5menu--left .ma5menu__container {
        -webkit-transform:translate3d(-360px,0,0);
        transform: translate3d(-360px,0,0);
        padding: 0;
        left: 0;
    }
}

@media (min-width: 768px) {
    .ma5menu--right .ma5menu__container {
        -webkit-transform:translate3d(360px,0,0);
        transform: translate3d(360px,0,0);
        right: -360px;
    }
}

.safari .ma5menu__container {
    height: 100%;
}

.preload .ma5menu__container {
    opacity: 0;
    z-index: -1;
}

.ma5menu__panel {
    display: none;
    width: 100%;
    height: 80%;
    height: calc(100% - 60px);
    position: absolute;
    overflow: hidden;
    overflow-y: auto;
    top: 60px;
    left: 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
    z-index: 100;
    color: rgba(255,255,255,0.1);
    background-color: #fff;
    scrollbar-color: #262b3f #fff;
    scrollbar-width: thin;
}

@media (min-width: 768px) {
    .ma5menu__panel {
        width:360px;
    }
}

.ma5menu__panel.has-scrollbar {
    overflow: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.ma5menu__panel:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.4);
}

.ma5menu__panel::-webkit-scrollbar {
    width: 9px;
    background-color: #262b3f;
}

.ma5menu__panel::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.15);
    outline: none;
    border-right: 3px solid #262b3f;
}

.ma5menu__panel:first-of-type {
    z-index: 160;
}

.ma5menu__panel--parent-leave,.ma5menu__panel--parent-enter {
    z-index: 180;
    display: block;
}

.ma5menu__panel--active-leave,.ma5menu__panel--active-enter {
    z-index: 190;
    display: block;
}

.ma5menu__panel--active-enter {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie .ma5menu__panel--active-enter {
    -webkit-animation-name: ma5-panelIn;
    animation-name: ma5-panelIn;
}

.ie .ma5menu__panel--active-enter {
    -webkit-animation-name: ma5-panelInIEphone;
    animation-name: ma5-panelInIEphone;
}

@media (min-width: 768px) {
    .ie .ma5menu__panel--active-enter {
        -webkit-animation-name:ma5-panelInIEtablet;
        animation-name: ma5-panelInIEtablet;
    }
}

.ma5menu__panel--active-leave {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie .ma5menu__panel--active-leave {
    -webkit-animation-name: ma5-panelOut;
    animation-name: ma5-panelOut;
}

.ie .ma5menu__panel--active-leave {
    -webkit-animation-name: ma5-panelOutIEphone;
    animation-name: ma5-panelOutIEphone;
}

@media (min-width: 768px) {
    .ie .ma5menu__panel--active-leave {
        -webkit-animation-name:ma5-panelOutIEtablet;
        animation-name: ma5-panelOutIEtablet;
    }
}

.ma5menu__panel--parent-enter {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie .ma5menu__panel--parent-enter {
    -webkit-animation-name: ma5menuOut;
    animation-name: ma5menuOut;
}

.ie .ma5menu__panel--parent-enter {
    -webkit-animation-name: ma5menuOutIEphone;
    animation-name: ma5menuOutIEphone;
}

@media (min-width: 768px) {
    .ie .ma5menu__panel--parent-enter {
        -webkit-animation-name:ma5menuOutIEtablet;
        animation-name: ma5menuOutIEtablet;
    }
}

.ma5menu__panel--parent-leave {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.noie .ma5menu__panel--parent-leave {
    -webkit-animation-name: ma5menuOutB;
    animation-name: ma5menuOutB;
}

.ie .ma5menu__panel--parent-leave {
    -webkit-animation-name: ma5menuOutBIEphone;
    animation-name: ma5menuOutBIEphone;
}

@media (min-width: 768px) {
    .ie .ma5menu__panel--parent-leave {
        -webkit-animation-name:ma5menuOutBIEtablet;
        animation-name: ma5menuOutBIEtablet;
    }
}

.ma5menu__panel.lvl-0 {
    text-transform: uppercase;
}

.ma5menu__panel.lvl-1 {
    text-transform: none;
}

.ma5menu__panel > ul {
    margin: 0 0 30px 0;
    padding: 0;
}

.ma5menu__panel > ul li {
    position: relative;
    font-size: 0;
    padding-right: 0;
    margin-bottom: 0;
    line-height: 0;
}

.ma5menu__panel > ul li:first-of-type {
    border-top: 1px solid #EEEFF1;
}

.ma5menu__panel > ul li a,.ma5menu__panel > ul li .ma5menu__category {
    display: inline-block;
    vertical-align: top;
    text-decoration: none !important;
    width: 100%;
    outline: none !important;
    border-bottom: 1px solid #EEEFF1;
    padding: 15px 20px 15px 20px;
    font-size: 14px;
    line-height: 19px;
    overflow: hidden;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    min-height: 50px;
    text-transform: capitalize;
    transition: all 0.25s linear;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
}

.ma5menu__panel > ul li a {
    color: #161616;
    background-color: transparent;
}

.ma5menu__panel > ul li a:hover {
    color: #F26223;
    background-color: transparent;
}

.ma5menu__panel > ul li .ma5menu__category {
    position: relative;
    text-align: left;
    background-position: calc(100% - 13px) 50%;
    color: #ffffff;
    background-color: transparent;
}

.ma5menu__panel > ul li .ma5menu__category:hover {
    color: #F26223;
    background-color: transparent;
    -o-transition: none;
    transition: none;
}

.ma5menu__panel > ul li .ma5menu__category.ma5menu__path {
    color: #F26223 !important;
    background-color: transparent !important;
}

.ma5menu__panel > ul li .ma5menu__category.ma5menu__path:hover {
    color: #F26223 !important;
    background-color: transparent !important;
    -o-transition: none;
    transition: none;
}

.ma5menu__panel > ul li > .ma5menu__btn--enter + a {
    padding-right: 60px;
    margin-right: -50px;
}

.ma5menu__panel--active {
    z-index: 170;
    display: block;
}

.ma5menu__panel--active > ul li a,.ma5menu__panel--active > ul li .ma5menu__category {
    pointer-events: auto;
}

.ma5menu__btn--enter,.ma5menu__btn--leave {
    font-size: 13px;
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    text-align: right;
    margin-right: 20px;
    width: 100%;
}

.ma5menu__btn--enter:hover,.ma5menu__btn--leave:hover {
    -o-transition: none;
    transition: none;
}

.ma5menu__btn--enter:before {
    content: "\e90a";
    font-family: 'icomoon' !important;
    color: #000;
    line-height: 50px;
}

.ma5menu__btn--enter:hover {
}

.ma5menu__btn--enter:before {
}

.ma5menu__btn--leave {
    left: 0;
    right: auto;
    text-align: left;
    text-indent: 20px;
}

.ma5menu__btn--leave:hover {
    color: #F26223;
}

.ma5menu__leave:hover .ma5menu__btn--leave:hover {
    color: #000;
}

.ma5menu__btn--leave:before {
    content: "\e90a";
    font-family: 'icomoon' !important;
    font-weight: 300;
    color: #F26223;
}

.ma5menu__leave {
    color: #000;
    cursor: pointer;
    display: block;
    position: relative;
    padding: 0px 20px 0 40px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 100%;
    border-bottom: 1px solid #EEEFF1;
    height: 50px;
    line-height: 50px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-right: 0;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.ma5menu__leave:hover {
    color: #F26223;
    background-color: rgba(255,255,255,0.1);
}

.ma5menu__leave + .ma5menu__btn--enter {
    bottom: 0;
    height: calc(100% - 50px);
    top: auto;
}

.ma5menu__path {
    color: #F26223 !important;
    background-color: transparent !important;
}

.ma5menu--overflow {
    overflow-x: hidden !important;
}

.ma5menu--left:before,.ma5menu--right:before {
    content: "";
    display: block;
    height: 100%;
    position: fixed;
    top: 0;
    background-color: rgba(255,255,255,0.01);
    z-index: -1;
    -o-transition: background-color 0.4s ease-out 0.5s,z-index 0.8s linear;
    transition: background-color 0.4s ease-out 0.5s,z-index 0.8s linear;
    width: 100%;
}

.ma5menu--active:before {
    background-color: #0000009c;
    -o-transition: background-color 0.4s ease-in;
    transition: background-color 0.4s ease-in;
    z-index: 9000;
    display: none;
}

.ma5menu--active > body .container * {
    -ms-touch-action: none;
    touch-action: none;
    pointer-events: none;
}

@media (max-width: 767px) {
    .ma5menu--active > body * {
        pointer-events:none;
    }

    .ma5menu--active > body .ma5menu__toggle {
        pointer-events: auto;
    }

    .ma5menu--active > body .ma5menu__toggle * {
        pointer-events: auto;
    }

    .ma5menu--active > body .ma5menu__container {
        pointer-events: auto;
    }

    .ma5menu--active > body .ma5menu__container * {
        pointer-events: auto;
    }

    .ma5menu--active > body .ma5menu__container .ma5menu__alert {
        pointer-events: none;
    }

    .ma5menu--active > body .ma5menu__container--scroll {
        pointer-events: auto;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-4"] li:last-child {
        margin: 0;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-4"] li:last-child a {
        display: block;
        padding-bottom: 15px;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-6"] li:last-child {
        margin: 0;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-6"] li:last-child a {
        display: block;
        padding-bottom: 15px;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-7"] li:last-child {
        margin: 0;
    }

    .ma5menu__panel.lvl-1[data-ma5order="ma5-ul-7"] li:last-child a {
        display: block;
        padding-bottom: 15px;
    }
}

@media (max-width: 1199px) {
    .ma5menu--active.has-body-scrollbar {
        overflow:hidden;
        overflow-y: scroll;
        height: auto;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
    }
}

.ma5menu--active.ma5menu--left:before {
    right: 0;
}

.ma5menu--active.ma5menu--right:before {
    left: 0;
}

.ma5menu--swipe {
    position: relative;
    overflow-x: hidden !important;
}

.ma5menu--swipe body {
    position: relative;
}

.ma5menu--swipe.ma5menu--left body {
    -o-transition: left 0.5s ease-out;
    transition: left 0.5s ease-out;
    left: 0;
}

.ma5menu--swipe.ma5menu--right body {
    -o-transition: right 0.5s ease-out;
    transition: right 0.5s ease-out;
    right: 0;
}

.ma5menu--swipe.ma5menu--active.ma5menu--left body {
    left: 100%;
}

@media (min-width: 768px) {
    .ma5menu--swipe.ma5menu--active.ma5menu--left body {
        left:360px;
    }
}

.ma5menu--swipe.ma5menu--active.ma5menu--right body {
    right: 100%;
}

@media (min-width: 768px) {
    .ma5menu--swipe.ma5menu--active.ma5menu--right body {
        right:360px;
    }
}

.ma5menu__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

@-webkit-keyframes ma5-panelIn {
    0% {
        -webkit-transform: translate3d(100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
    }
}

@keyframes ma5-panelIn {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@-webkit-keyframes ma5-panelOut {
    0% {
        -webkit-transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(100%,0,0);
    }
}

@keyframes ma5-panelOut {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@-webkit-keyframes ma5menuIn {
    0% {
        -webkit-transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
    }
}

@keyframes ma5menuIn {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@-webkit-keyframes ma5menuOut {
    0% {
        -webkit-transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
    }
}

@keyframes ma5menuOut {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@-webkit-keyframes ma5menuOutB {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
    }
}

@keyframes ma5menuOutB {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@media (min-width: 768px) {
    @-webkit-keyframes ma5-panelIn {
        0% {
            -webkit-transform:translate3d(360px,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
        }
    }

    @keyframes ma5-panelIn {
        0% {
            -webkit-transform: translate3d(360px,0,0);
            transform: translate3d(360px,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }
    }

    @-webkit-keyframes ma5-panelOut {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(360px,0,0);
        }
    }

    @keyframes ma5-panelOut {
        0% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(360px,0,0);
            transform: translate3d(360px,0,0);
        }
    }

    @-webkit-keyframes ma5menuIn {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(-360px,0,0);
        }
    }

    @keyframes ma5menuIn {
        0% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(-360px,0,0);
            transform: translate3d(-360px,0,0);
        }
    }

    @-webkit-keyframes ma5menuOut {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(-360px,0,0);
        }
    }

    @keyframes ma5menuOut {
        0% {
            -webkit-transform: translate3d(0,0,0);
        }

        100% {
            -webkit-transform: translate3d(-360px,0,0);
        }
    }

    @-webkit-keyframes ma5menuOutB {
        0% {
            -webkit-transform: translate3d(-360px,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
        }
    }

    @keyframes ma5menuOutB {
        0% {
            -webkit-transform: translate3d(-360px,0,0);
            transform: translate3d(-360px,0,0);
        }

        100% {
            -webkit-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
        }
    }
}

@-webkit-keyframes ma5-panelInIEphone {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes ma5-panelInIEphone {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@-webkit-keyframes ma5-panelOutIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@keyframes ma5-panelOutIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
    }
}

@-webkit-keyframes ma5menuInIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@keyframes ma5menuInIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@-webkit-keyframes ma5menuOutIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@keyframes ma5menuOutIEphone {
    0% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }
}

@-webkit-keyframes ma5menuOutBIEphone {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@keyframes ma5menuOutBIEphone {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}

@-webkit-keyframes ma5-panelInIEtablet {
    0% {
        -webkit-transform: translate3d(360px,0,0);
        transform: translate3d(360px,0,0);
    }

    100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
    }
}
.services-hero-section .img-banner-industries-telco:before {
    background: #01081078;
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
}
.services-hero-display .text-fillwhite {
    -webkit-text-fill-color: inherit;
}
@media (min-width: 992px) {
    .services-hero-display h1 {
        font-size: 2.875rem;
        line-height: 4rem;
        padding-top: 150px;
    }
}
@media (min-width: 768px) {
    .services-hero-display h1 {
        font-size: 3rem;
        line-height: 3.75rem;
    }
}

@media (min-width: 992px) {
    .services-hero {
        margin-bottom: 6.5rem;
    }
}

.services-hero-section .img-banner-h100vh {
    /* height: 100%; */
}

@media (max-width: 991.98px) {
    .services-hero--mobilefull {
        /* min-height: 100vh; */
        display: flex;
        flex-direction: column;
        justify-content: end;
        margin-top: 90px !important;
        padding-bottom: 3.75rem;
    }
}

@media (min-width: 1400px) {
    .services-hero-display h1 {
        font-size: 3.875rem;
        line-height: 5.5rem;
        /* padding-top: 40px; */
    }
}

@media (min-width: 992px) {
    .services-hero-display h1 {
        font-size: 2.875rem;
        line-height: 4rem;
        padding-top: 150px;
    }
}
@media (min-width: 1400px) {
    .services-hero-display h1 {
        font-size: 3.875rem;
        line-height: 5.5rem;
        padding-top: 40px;
    }
}


p.date-formatt {
    MARGIN-BOTTOM: 0 !important;
    MARGIN-TOP: 11PX;
    color: #2f2c2c;
    font-weight: 500;
    font-size: 14px;
}

body footer .Newsletter form {
    background: unset;
}


/* General styles for alert-success */
.alert-success {
    background-color: #d4edda;   /* Light green background */
    border-color: #c3e6cb;       /* Slightly darker green border */
    color: #155724;              /* Dark green text color */
    padding: 7px 20px;          /* Add some padding for spacing */
    border-radius: 5px;          /* Rounded corners */
    font-size: 16px;             /* Medium text size */
    font-weight: 500;            /* Semi-bold font for better visibility */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for a floating effect */
    margin-bottom: 15px;         /* Space between alerts */
    transition: all 0.3s ease;   /* Smooth transition for hover effects */
    margin-bottom: 40px;
}

/* Alert success on hover (adds a subtle darkening effect) */
.alert-success:hover {
    background-color: #c3e6cb;   /* Slightly darker green on hover */
    border-color: #b1dfbb;        /* Slightly darker border */
    color: #155724;               /* Keep the text color consistent */
}

/* For success alert icon (optional if you add icons) */
.alert-success .icon {
    font-size: 20px;
    margin-right: 10px;
}

/* Responsive styling for smaller devices */
@media (max-width: 576px) {
    .alert-success {
        font-size: 14px;    /* Slightly smaller text for mobile */
        padding: 10px 15px; /* Less padding on small screens */
    }
}


.col-xl-8.col-lg-8 label {
    font-weight: 700;
} 

ul.certii li {
    /* line-height: 33px; */
    padding-bottom: 3px;
}
.home-services-section--list ul li:hover h3 {
    color: #f26223;
}
/* Pagination Container */
.col-xs-12 .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    list-style: none;
}

/* Pagination Links */
.col-xs-12 .pagination li {
    margin: 0 5px;
}

.col-xs-12 .pagination li a,
.col-xs-12 .pagination li span {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #007bff;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

/* Active Page */
.col-xs-12 .pagination .active span {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Hover Effect */
.col-xs-12 .pagination li a:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Disabled Pagination */
.col-xs-12 .pagination .disabled span {
    color: #6c757d;
    background: #e9ecef;
    border-color: #dee2e6;
    cursor: not-allowed;
}
.sidebar__post-content h3 a {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Dropdown Menu Styling */
.nav-location .dropdown-menu {
  /* min-width: 100%; */ /* Full width of the page */
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  left: 0; /* Ensure it aligns to the left of the page */
  right: 0; /* Ensure it spans the full width */
  position: absolute; /* Allow it to span the full width */
  z-index: 1050; /* Ensure it appears on top of other elements */
}

/* Dropdown Header Styling */
.nav-location .dropdown-header {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 8px 15px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  margin-top: 5px;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 1px !important;
  padding-bottom: 10PX !IMPORTANT;
  text-transform: uppercase;
  margin-top: 30px !important;
  background: #4483c4;
  padding-top: 12px !important;
  padding-left: 10px !important;
}

/* Dropdown List Items */
.nav-location .list-unstyled {
  padding: 0;
  margin: 0;
}

.nav-location .list-unstyled li {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  transition: background 0.3s ease-in-out;
}

.nav-location .list-unstyled li:hover {
  /* background-color: #f1f1f1; */
  border-radius: 4px;
  /* color: #000; */
}

/* Dropdown Links */
.nav-location .list-unstyled li a {
  flex-grow: 1;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.nav-location .list-unstyled li a:hover {
  color: #007bff;
}

/* Flag Styling */
.nav-location .list-unstyled li img {
  width: 20px;
  height: 14px;
  margin-left: 8px;
  border-radius: 2px;
}

/* Selected Flag Display */
#selected-flag {
  width: 22px;
  height: 16px;
  /* margin-right: 5px; */
}

/* Dropdown Arrow */
.nav-location .bx {
  width: 10px;
  height: 10px;
  margin-left: 5px;
}


body div#tawk-bubble-container img {
    display: none;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    color: #fff;
    font-size: 30px;
}

.swiper-button-next:after{
 color: #fff;
    font-size: 30px;
}



/* Modal Overlay */
.metrology-modal {
    display: none;
    position: fixed;
    z-index: 9;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  /* Modal Box */
  .metrology-content {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.6s ease-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Close Button */
  .close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    color: #ffffffcc;
    cursor: pointer;
    transition: color 0.3s;
  }
  .close-btn:hover {
    color: #fff;
  }
  
  /* Text Styling */
  .metrology-section h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
  }
  .metrology-section .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
    color: #f0f0f0;
  }
  .date-time,
  .icon-note {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  /* Button Styling */
  .btn-register {
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 10px;
    display: inline-block;
    margin-top: 15px;
    transition: background 0.4s ease;
  }
  .btn-register:hover {
    background: linear-gradient(135deg, #0056b3, #008db3);
  }
  
  /* Animations */
  @keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .metrology-content {
      padding: 30px 20px;
    }
    .metrology-section h1 {
      font-size: 22px;
    }
    .btn-register {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
  