/*======= General Variables =========*/
:root {
    --main-color: #106EFF;
    --main-color-100: #3C9CCF;
    --secondary: #F3F4F6;
    --box-shadow-100: 1px 5px 5px 1px rgba(0, 0, 0, 0.10);
}

/* ======= fonts ======== */
@font-face {
    font-family: 'DinNextLight';
    src: url('fonts/light/DinNextLight.eot');
    src: url('fonts/light/DinNextLight.eot') format('embedded-opentype'), url('fonts/light/DinNextLight.woff2') format('woff2'), url('fonts/light/DinNextLight.woff') format('woff'), url('fonts/din-next/light/DinNextLight.ttf') format('truetype'), url('fonts/din-next/light/DinNextLight.svg#DinNextLight') format('svg');
}

@font-face {
    font-family: 'DinNextRegular';
    src: url('fonts/regular/DinNextRegular.eot');
    src: url('fonts/regular/DinNextRegular.eot') format('embedded-opentype'), url('fonts/regular/DinNextRegular.woff2') format('woff2'), url('fonts/regular/DinNextRegular.woff') format('woff'), url('fonts/regular/DinNextRegular.ttf') format('truetype'), url('fonts/regular/DinNextRegular.svg#DinNextRegular') format('svg');
}

@font-face {
    font-family: 'DinNextMedium';
    src: url('fonts/medium/DinNextMedium.eot');
    src: url('fonts/medium/DinNextMedium.eot') format('embedded-opentype'), url('fonts/medium/DinNextMedium.woff2') format('woff2'), url('fonts/medium/DinNextMedium.woff') format('woff'), url('fonts/medium/DinNextMedium.ttf') format('truetype'), url('fonts/medium/DinNextMedium.svg#DinNextMedium') format('svg');
}

/* ======= General Rules ======== */
html {
    scroll-behavior: smooth;
}

* {
    font-family: 'DinNextRegular', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'DinNextRegular', serif;
    background-color: #F8FAFD;
    overflow-x: hidden;
    direction: rtl;
}

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

ul li {
    list-style: none;
}

img {
    max-width: 100%;
}

/*======= Typography =========*/
p {
    font-family: 'DinNextRegular', serif !important;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    color: #252D2F;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DinNextMedium', serif !important;
    color: #252D2F;
}

a {
    font-family: 'DinNextRegular', serif;
    text-decoration: none;
    color: #252D2F;
    o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

a:hover,
a:focus {
    text-decoration: none;
    o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #00CDEA;
}

a, a:link, a:hover {
    color: #333;
}

.img-thumbnail {
    padding: 0;
    background: none;
    border: 0;
    border-radius: .25rem;
    max-width: 100%;
    height: auto;
}

/*====== Main CSS Rules =====*/
/*Loader CSS */
.loader-wrapper {
    position: fixed;
    z-index: 9999;
    background: #fff;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.loader-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 0 0 5px #0D47A1;
    overflow: hidden;
}

.loader-wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: #0D47A1;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
}

.loader-wave:before,
.loader-wave:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
}

.loader-wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animate 5s linear infinite;
    -webkit-animation: animate 5s linear infinite;
    -ms-animation: animate 5s linear infinite;
    -moz-animation: animate 5s linear infinite;
}

.loader-wave:after {
    border-radius: 40%;
    background: rgba(255, 255, 255, .5);
    animation: animate 10s linear infinite;
    -webkit-animation: animate 10s linear infinite;
    -ms-animation: animate 10s linear infinite;
    -moz-animation: animate 10s linear infinite;
}

@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg)
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg)
    }
}

@-webkit-keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg)
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg)
    }
}

/*--------------------------------------------------------------
# Sections  css
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    /*overflow: hidden;*/
    /*position: relative;*/
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #e35052;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}

.section-bg {
    padding: 120px 0;
    color: #fff;
}

.section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Back to top button css
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--main-color);
    padding: 10px 12px;
}

.back-to-top svg {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    transition: all 0.4s;
    color: #fff;
}


/*
---------------------------------------------
preloader
---------------------------------------------
*/
.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #fff;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #febf4b;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #106EFF;
    border-radius: 50%;
}

/*--------------------------------------------------------------
# Header CSS
--------------------------------------------------------------*/
/* Home Page CSS */
#header {
    background: #fff;
    transition: all 0.5s ease;
    z-index: 997;
}

#header.header-scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

#header .navbar .logo img {
    max-width: 150px;
    min-width: 150px;
    width: 150px;
}

@media (max-width: 992px) {
    #header .navbar .logo img {
        max-width: 150px;
    }
}

#header .navbar .search-cont {
    background: #dedfe1;
    border: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    outline: 0;
    cursor: pointer;
    padding: 8px 10px;
}

.language {
    font-size: 16px;
    font-weight: 600;
    margin: auto 6px;
    padding: 4px 12px;
    transition: all 0.5s ease;
}

.navbar button {
    border: none;
}

.navbar button:focus {
    outline: none;
}

.navbar .navbar-nav .nav-link {
    padding: 8px 20px;
}

.modal-dialog .modal-content .form-control {
    border-radius: 4px !important;
    padding: 20px 16px !important;
}

@media screen and (max-width: 990px) {
    #header .navbar .d-sm-lan-none {
        display: none;
    }
}

/* Sub Page CSS */
.wrapper {
    display: flex;
    width: 100%;
}

.main-content {
    position: relative;
}

.header-menu {
    padding: 7px 12px;
    background: #fff
}

.content-lang .dropdown-menu-home {
    position: absolute;
    z-index: 1000;
    min-width: 9rem;
    padding: .5rem 0;
    left: 0;
    border-radius: .50rem;
}

.content-lang .dropdown-menu .dropdown-item img {
    max-width: 20px;
    min-width: 20px;
    width: 20px;
}

.menu-icon {
    display: none;
}


.search-box {
    border-radius: 50px;
}

.search-box {
    display: inline;
    width: 200px;
    text-align: start;
    transition: 500ms !important;
}

.search-box:focus {
    width: 240px;
}

.flex-header-menu, .flex-social {
    display: flex;
}

.menu-icon {
    position: relative;
    display: inline-block;
    font-size: 20px;
    margin: 5px 15px 0 10px;
    cursor: pointer;
}

.menu-icon:first-child {
    margin: 5px 15px 0 0;
    color: #313246;
}

.menu-icon:last-child {
    margin-right: 0;
}

.menu-icon .badge {
    position: absolute;
    border-radius: 30px;
    top: -5px;
    left: 5px;
    transition: 300ms;
    animation: myAnim 2s infinite;
    -webkit-animation: myAnim 300ms infinite;
    -moz-animation: myAnim 300ms infinite;
}

.menu-icon:hover .badge {
    top: -7px;
    left: 7px;
}

@keyframes myAnim {
    from {
        top: -5px;
        left: 5px
    }
    to {
        top: -7px;
        left: 7px
    }
}

.menu-icon #sidebar-toggle-btn:before {
    content: '\f0c9';
    font-family: FontAwesome, sans-serif !important;
    display: inline-block;
    color: #313246;
    transition: 300ms;
    padding: 0 10px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #c2c2c2;
}

.menu-icon #sidebar-toggle-btn.slide-in:before {
    content: '\f00d';
    font-family: FontAwesome, sans-serif !important;
    display: inline-block;
    color: #313246;
    background: #fff;
}

.dropdown {
    position: absolute;
    z-index: 1000;
    display: none;
}

/*--------------------------------------------------------------
# search-help Section
--------------------------------------------------------------*/
.search-help {
    width: 100%;
    min-height: 360px;
    max-height: 360px;
    height: 360px;
    background: url("../../img/backgrond.svg") center no-repeat;
    background-size: cover;
    position: relative;
    padding-top: 30px;
}

.search-help .overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    min-height: 322px;
    max-height: 322px;
    height: 322px;
    background: rgba(0, 0, 0, 0.3);
}

.search-help h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}

.search-help h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
}


.tm-search-input {
    width: 100%;
    border-radius: 50px;
    padding: 24px 16px !important;
    color: #009999;
    border: none;
}

@media (max-width: 768px) {
    .search-help {
        text-align: center;
        padding-top: 58px;
    }

    .search-help h1 {
        font-size: 20px;
    }

    .search-help h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 576px) {
    .search-help {
        min-height: 260px;
        max-height: 260px;
        height: 260px;
        background-size: cover;
        position: relative;
        padding-top: 30px;
    }

    .search-help .overlay {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        min-height: 234px;
        max-height: 234px;
        height: 234px;
        background: rgba(0, 0, 0, 0.3);
    }
}

.tm-search-input {
    width: 100%;
    border-radius: 50px;
    padding: 20px 16px;
    color: var(--main-color);
    border: none;
    transition: all 0.3s ease;
}

.tm-search-input:focus {
    border-color: var(--main-color);
    padding: 30px 16px !important;
    box-shadow: 0 0 0 0.25rem rgb(0 153 153 / 0.25);
}

.tm-search-input::placeholder {
    color: #5e5e5e;
    opacity: 1;
    transition: all 0.3s ease;
}

.tm-search-input:focus::placeholder {
    color: var(--main-color) !important;
}

.tm-search-btn {
    color: white;
    background-color: #009999;
    border: none;
    width: 100px;
    height: 39px;
}

@media (max-width: 575px) {
    .tm-container-content {
        max-width: 420px;
    }

    .tm-search-form {
        padding: 0 6px;
        width: 100%;
        justify-content: center;
    }

    .tm-search-input {
        width: 100%;
        /*max-width: 360px;*/
    }

    .tm-people-row {
        max-width: 420px;
    }
}

.search-box {
    display: flex;
    height: 40px;
}

@media (max-width: 600px) {
    .search-box {
        /*display: none;*/
    }

    .header-menu {
        padding: 0;
        margin: 0;
    }
}

/*--------------------------------------------------------------
# Start FAQ Section
--------------------------------------------------------------*/
.FAQ {
    display: flex;
    margin: 30px auto;
    padding: 12px 6px;
    text-align: start;
}

.FAQ h3 {
    text-align: start;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 0;
}

.FAQ ul {
    line-height: 2;
}

.FAQ ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #0A6DB0;
}

@media (max-width: 768px) {

    .FAQ ul {
        line-height: 1.75;
    }

    .FAQ ul li a {
        font-size: 14px;
        font-weight: 500;
        color: #0A6DB0;
    }
}

/*--------------------------------------------------------------
# Start more-contact css
--------------------------------------------------------------*/
.btn {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.btn-contact {
    border: 1px solid var(--main-color);
}

.btn-contact:hover,
.btn-contact:focus {
    background: var(--main-color);
    color: #fff;
}

.more-contact {
    padding: 30px 0;
    margin-bottom: 30px;
}

.more-contact h3 {
    font-size: 20px;
    font-weight: 700;
}

.more-contact .count-box {
    padding: 18px;
    width: 100%;
    min-height: 136px;
    position: relative;
    text-align: center;
    border-radius: 6px;
    background: #F3F4F6;
    border: 1px solid #A9ACAA;
    transition: all 0.5s ease;
}

.more-contact .count-box:hover {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
}

.more-contact .count-box svg {
    font-size: 26px;
    color: #333;
}

.more-contact .count-box span {
    font-size: 16px;
    display: block;
    font-weight: 700;
    color: #111111;
    padding: 10px;
}

.more-contact .count-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}

/*--------------------------------------------------------------
# Start type-system css
--------------------------------------------------------------*/
.type-system {
    display: flex;
    padding: 40px 0;
}

.type-system .nav-tabs {
    border: 0;
}

.type-system .nav-link {
    color: #333;
}

.type-system .nav-link img {
    width: 80px;
    height: 80px;
}

.type-system .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.type-system .nav-link h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding-top: 12px;
}

.type-system .nav-link p {
    padding-top: 8px;
}

.type-system .nav-link:hover {
    color: #111111;
}


@media (max-width: 768px) {
    .type-system .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .type-system .nav-link {
        padding: 15px;
    }

    .type-system .nav-link i {
        font-size: 24px;
    }
}

/* content css */
.content {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.content .item {
    background: #fff;
    margin: 10px 8px;
    width: 20%;
    border: 1px solid #A9ACAA;
    padding: 16px;
    transition: 0.3s;
    color: #111111;
    border-radius: 6px;
    align-items: center;
    justify-content: center;

}

.content .item:hover,
.content .item:focus {
    box-shadow: var(--box-shadow-100);
    background: var(--secondary);
}

@media (max-width: 1024px) {
    .sidebar_inner {
        right: -115%;
        transition: all 0.5s ease;
    }

    .main_container {
        width: 100%;
        margin-right: 0;
    }

    .navbar .hamburger,
    .sidebar_inner .close {
        display: block;
    }

    .content .item {
        width: 47%;
    }

}

@media (max-width: 768px) {
    .content .item {
        width: 46%;
    }
}

@media (max-width: 427px) {
    .content .item {
        width: 45%;
    }
}

/*--------------------------------------------------------------
# start-with-smart css
--------------------------------------------------------------*/
.start-with-smart {
    display: flex;
    padding: 30px 0;
}

.start-with-smart .nav-tabs {
    border: 0;
}

.start-with-smart .nav-link {
    background: #fff;
    color: #333;
    border-radius: 6px;
    padding: 2rem 0.5rem;
    margin: 0;
    transition: all 0.5s ease;
}

.start-with-smart .nav-link img {
    width: 60px;
    height: 60px;
}

.start-with-smart .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.start-with-smart .nav-link h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    padding-top: 12px;
}

.start-with-smart .nav-link p {
    padding-top: 12px;
    line-height: 1.3 !important;
}

.start-with-smart .nav-link:hover {
    color: #111111;
    box-shadow: var(--box-shadow-100);
}

@media (max-width: 768px) {

    .start-with-smart .nav-link {
        padding: 2.5rem 6rem;
        margin-bottom: 20px;
    }

    .FAQ .mockup-sys {
        display: none;
    }

    .more-contact .count-box {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .start-with-smart .nav-link {
        padding: 1rem 2rem;
    }
}

.start-with-smart .tab-content {
    margin-top: 30px;
}

.start-with-smart .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.start-with-smart .tab-pane ul {
    list-style: none;
    padding: 0;
}

.start-with-smart .tab-pane ul li {
    padding-bottom: 10px;
}

.start-with-smart .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #e35052;
}

.start-with-smart .tab-pane p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Start Footer Section
--------------------------------------------------------------*/
#footer {
    color: #2b2b2b;
    font-size: 14px;
    background: #dedfe1;
    margin: 0;
}

#footer .footer-top {
    padding-top: 30px;
    background: #dedfe1;
}

#footer .footer-top .row {
    border-bottom: 1px solid #bebebe;
}

#footer .footer-top .footer-contact {
    text-align: start;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 16px;
    text-align: start;
    padding: 0;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #81878f;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #333;
}

#footer .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #2b2b2b;
    line-height: 1;
    border-radius: 4px;
    text-align: center;
    width: 30px;
    height: 30px;
}

#footer .social-links a i {
    font-size: 30px;
    transition: all 0.5s ease;
}

#footer .social-links a i:hover {
    color: var(--main-color);
    text-decoration: none;
}

/* ======= Secondary Page Css ======== */
/*--------------------------------------------------------------
# Start Sidebar css
--------------------------------------------------------------*/
/* ID Sidebar */
#sidebar {
    -moz-flex-grow: 0;
    -webkit-flex-grow: 0;
    -ms-flex-grow: 0;
    flex-grow: 0;
    -moz-flex-shrink: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
    -moz-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
    -webkit-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
    -ms-transition: margin-left 0.5s ease, box-shadow 0.5s ease;
    position: fixed;
    width: 300px;
    padding: 0;
    background: #fff;
    z-index: 10000;
    transition: all 0.3s ease;
}

#sidebar > .sidebar_inner {
    position: fixed;
    width: 300px;
    padding: 0;
    background: #fff;
    z-index: 10000;
    transition: all 0.3s ease;
}

/* ID main */
#main {
    -moz-flex-grow: 1;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    -moz-flex-shrink: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-shrink: 1;
    flex-shrink: 1;
    width: calc(100% - 300px);
    margin-right: 300px;
}

#main > .inner {
    width: 95%;
    padding: 0 14px;
}

/* Class Sidebar */
.sidebar {
    position: relative;
}

.sidebar {
    height: auto;
    min-height: 100vh;
    transition: 200ms;
    position: fixed;
    width: 300px;
    background: #f2f2f2;
    padding: 0;
    z-index: 10000;
}

.header-logo {
    background: #fff;
    color: #fff;
    border-bottom: 1px solid #eee;
}

.header-logo .logo img {
    width: 166px;
    max-width: 166px;
    padding: 2px 0;
}

.sidebar > .inner-sidebar .sidebar-menu {
    background: #fff;
    height: 100vh !important;
    overflow: auto;
    text-align: start;
    /*border-left: 1px solid rgba(112, 112, 112, 0.30);*/
    transition: all 0.3s ease;
    box-shadow: -3px 0 2px -2px rgb(0 0 0 / 20%);

}

.sidebar > .inner-sidebar .sidebar-menu::-webkit-scrollbar {
    width: 4px;
    border-radius: 10px;
    background-color: #eee;
    /*display: none;*/
}

.sidebar > .inner-sidebar .sidebar-menu::-webkit-scrollbar-thumbs {
    width: 4px;
    border-radius: 10px;
    background-color: #333;
    display: none;
}


.sidebar > .inner-sidebar .sidebar-menu:hover::-webkit-scrollbar {
    display: block;
}

.sidebar > .inner-sidebar .sidebar-menu:hover::-webkit-scrollbar-thumbs {
    display: block;
}

.sidebar-menu {
    padding: 0;
    text-align: start;
}

.sidebar-menu li {
    position: relative !important;
    display: block;
    /*border-bottom: 1px solid #313246;*/
}

.sidebar-menu .parent {
    padding: 0 6px;

}

.sidebar-menu .parent a {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.sidebar-menu .parent a:hover,
.sidebar-menu .parent a:focus {
    background: #F3F4F6;
    color: var(--main-color-100);
}

.active {
    background: #F3F4F6 !important;
    color: #3C9CCF !important;
    font-weight: 600 !important;
}

.active-2 {
    color: #3C9CCF !important;
    font-weight: 600 !important;
}

/*.sidebar-menu .parent .icon-item{*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    padding: 8px;*/
/*    border-radius: 50%;*/
/*    background: #F1F5F7;*/
/*    border-color: var(--secondary);*/
/*}*/


.sidebar-menu li i {
    font-weight: 600;
    font-size: 1.25rem;
}

.sidebar-menu li a .arrow {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 14px;
}

.sidebar-menu li ul li svg {
    font-size: 12px;
    padding: 0 6px;
}

.sidebar-menu .children {
    position: relative;
}

.sidebar-menu .inner-child {
    padding: 0 2px;
    margin-right: 1rem;
    position: relative;
    border-right: 1px solid rgba(112, 112, 112, 0.30);
}

.sidebar-menu .inner-child:before {
    position: absolute;
    content: '';
    right: 8px;
    top: 20px;
    width: 10px;
    height: 2px;
    background: var(--main-color-100);
}

.sidebar-menu .inner-child a {
    padding: 10px 26px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sidebar-menu .inner-child a:hover {
    /*font-weight: 600;*/
    background: #F3F4F6;
    color: var(--main-color-100);
}

.sidebar-menu li a {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 300ms;
}


.sidebar-menu li ul {
    width: 100%;
    height: auto;
    /*background: #f5f5f5;*/
    color: #333 !important;
    line-height: 1;
    display: none;
}

.sidebar-menu li ul li {
    border: 0;
}

/* Start Style for toggling sidebar width */
.sidebar.shrink-sidebar {
    max-width: 0 !important;
    min-width: 0 !important;
}

.sidebar.shrink-sidebar .sidebar-menu li {
    position: relative !important;
}

.sidebar.shrink-sidebar .sidebar-menu li a {
    padding-top: 10px;

}

.sidebar.shrink-sidebar .sidebar-menu li a:hover {
    padding-left: 15px;
    /*color: #fff !important;*/
}

.sidebar.shrink-sidebar .sidebar-menu li a span.none {
    display: none;
}

.sidebar.shrink-sidebar .sidebar-menu li ul {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 50px;
    width: 270px !important;
}

.sidebar.shrink-sidebar .sidebar-menu li:hover ul {
    display: block;
}

.sidebar.shrink-sidebar .sidebar-menu li ul li:last-child {
    border-bottom: none;
}

.sidebar.shrink-sidebar .sidebar-menu li:hover ul li a {
    padding-left: 2px;
}

/* End Sidebar */
/*--------------------------------------------------------------
#Content  CSS
--------------------------------------------------------------*/
.content {
    transition: 200ms;
}

.content.expand-content {
    min-width: 92%;
}

/*========End Main Content======= */
.menu-icon {
    display: none;
}

/*
/*--------------------------------------------------------------
# responsive css Large devices (desktops, 992 px and up)
--------------------------------------------------------------*
*/
@media only screen and (max-width: 992px) {
    #main {
        margin-right: 0 !important;
    }

    #main > .inner {
        width: 100%;
        padding: 0 10px;
    }

    .menu-icon {
        display: block;
    }

    .header-menu .menu-nav {
        display: none;
    }

    .sidebar {
        max-width: 0 !important;
        min-width: 0 !important;
        width: 0 !important;
        min-height: 100%;
        overflow: hidden;
        height: 100%;
        padding: 0;
        margin: 0;
        z-index: 1000;
        position: absolute;
        top: 0;
        right: -1px;
        bottom: 0 !important;
    }

    .sidebar.sidebar.shrink-sidebar {
        max-width: 300px !important;
        min-width: 300px !important;
        z-index: 1000;
        position: absolute;
        bottom: -20px;
        top: 0;
        height: 100%;
        transition: all 0.5s ease;
    }

    .sidebar .sidebar-menu li {
        position: relative !important;
    }

    .sidebar .sidebar-menu li a {
        padding-top: 10px;
        pointer-events: none;
    }


    .sidebar.shrink-sidebar .sidebar-menu li a {
        pointer-events: auto;
    }

    .sidebar .sidebar-menu li a:hover {
        /*padding-left: 15px;*/
    }

    .sidebar.shrink-sidebar .sidebar-menu li a span.none {
        display: initial;
    }

    .sidebar.shrink-sidebar .sidebar-menu li ul {
        position: relative;
        left: 0;
        z-index: 0 !important;
        width: auto !important;
    }

    .sidebar .sidebar-menu li:hover ul {
        display: block;
    }

    .sidebar.shrink-sidebar .sidebar-menu li:hover ul {
        display: none;
    }

    .sidebar .sidebar-menu li ul li {
        /*border-bottom: 1px solid #2E2E3A;*/
    }

    .sidebar.shrink-sidebar .sidebar-menu li ul li {
        /*border-bottom: none;*/
    }

    .sidebar .sidebar-menu li ul li:last-child {
        /*border-bottom: none;*/
    }

    .sidebar .sidebar-menu li:hover ul li a {
        padding-left: 2px;
    }

    .content {
        min-width: 90%;
    }

    .content.content.expand-content {
        min-width: 100%;
    }
}

/*--------------------------------------------------------------
# responsive css media screen(906)
--------------------------------------------------------------*
*/
@media only screen and (max-width: 906px) {
    /*sidebar*/
    .sidebar {
        max-width: 0px !important;
        min-width: 0px !important;
        width: 0px !important;
        min-height: 100%;
        overflow: hidden;
        height: 100%;
        padding: 0px;
        margin: 0px;
        z-index: 1000;
        position: absolute;
        top: 0px;
        bottom: 0px !important;
    }

    .header-logo {
        position: relative;
        min-width: 100%;
        width: 100%;
        background: #0D47A1;
    }

    .content {
        width: 100%;
        min-width: 100%;
    }

    .content.expand-content {
        width: 100%;
        min-width: 100%;
    }

    .content.pl-0 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

/*--------------------------------------------------------------
# Responsive Css Medium devices (tablets, 768px and up)
--------------------------------------------------------------*
*/
@media only screen and (max-width: 768px) {
    .container-fluid {
        /*padding: 0 !important;*/
    }

    .container {
        padding: 0 !important;
    }

    .header.pt-3.pb-2 {
        display: initial;
        padding: 0px !important;
        margin: 0px !important;
    }

    .header-logo {
        padding: 3px 0;
    }

    .header-menu {
        display: block;
        min-width: 100%;
        background: #fff;
        padding: 10px 12px !important;
        box-shadow: 0 2px 2px 0 #ccc;
    }

    #main .header-menu .menu-nav {
        /*border: 1px solid red;*/
    }

    .menu-icon:first-child {
        margin: 5px 15px 0px 30px;
    }

    .sidebar {
        top: 0;
    }

    .sidebar.shrink-sidebar .sidebar-menu li a {
        padding-left: 25px !important;
    }

    .sidebar.shrink-sidebar .sidebar-menu li a:hover {
        padding-left: 30px !important;
    }
}

/*
# Extra small devices (portrait phones, less than 576px)
# No media query since this is the default in Bootstrap
 */
/*--------------------------------------------------------------
# Responsive Css Small devices (landscape phones, 576px and up)
--------------------------------------------------------------*/
@media only screen and (max-width: 576px) {
    .search-box {
        width: 42px;
        height: 42px;
    }

    .profile-img {
        top: 27%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/*--------------------------------------------------------------
# btn css
--------------------------------------------------------------*/
.btn-rounded {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #fff;
    padding: 6px;
    min-width: 45px;
    min-height: 44px;
    border-radius: 50%;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    background: var(--secondary);
    /*box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);*/
    font-weight: 500;
    line-height: 2;
    cursor: pointer;
    transition: all 0.5s ease;
}

.btn-rounded::-moz-focus-inner {
    border: none
}

.btn-rounded::after, .btn-rounded::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0
}

.btn-rounded::before {
    /*background-color: rgb(var(--smart-helper-ontheme));*/
    transition: opacity .2s
}

.btn-rounded::after {
    background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;
    transition: opacity 1s, background-size .5s
}

.btn-rounded:focus, .btn-rounded:hover {
    background: #dedfe1;
    border: 1px solid #ced4da;
    box-shadow: none;
}

.btn-rounded:hover::before {
    opacity: .08;
}

.btn-rounded:focus::before {
    opacity: .24;
}

.btn-rounded:hover:focus::before {
    opacity: .32;
}

.btn-rounded:active {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 1px 0 rgba(0, 0, 0, .12)
}

.btn-rounded:active::after {
    opacity: .32;
    background-size: 100% 100%;
    transition: background-size 0s
}

.btn-rect {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #fff;
    /*padding: 4px 12px;*/
    border-radius: 6px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    font-weight: 500;
    line-height: 1.7;
    cursor: pointer;
    transition: all 0.5s ease;
}

.btn-rect::-moz-focus-inner {
    border: none;
}

.btn-rect::after, .btn-rect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    opacity: 0;
}

.btn-rect::before {
    /*background-color: rgb(var(--smart-helper-ontheme));*/
    transition: opacity .2s;
}

.btn-rect::after {
    background: radial-gradient(circle at center, currentColor 1%, transparent 1%) center/10000% 10000% no-repeat;
    transition: opacity 1s, background-size .5s;
}

.btn-rect:focus, .btn-rect:hover {
    background: var(--secondary);
    border: 1px solid #ced4da;
    box-shadow: none;
    /*box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 1px 0 rgba(0, 0, 0, .12)*/
}

.btn-rect:hover::before {
    opacity: .08;
}

.btn-rect:focus::before {
    opacity: .24;
}

.btn-rect:hover:focus::before {
    opacity: .32;
}

.btn-rect:active {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 1px 1px 0 rgba(0, 0, 0, .12)
}

.btn-rect:active::after {
    opacity: .32;
    background-size: 100% 100%;
    transition: background-size 0s;

}

/*--------------------------------------------------------------
#Start Details Page
--------------------------------------------------------------*/
/* ====== Breadcrumb rules ===========*/
.b-colored li,
.b-colored li a {
    color: #fff !important;
    border-color: #fff !important;
}

.b-colored .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

/* ====== details  Css===========*/
.details {
    /*padding: 0 8px;*/
    text-align: start;
}

.details .card {
    /*border-bottom: 0;*/
    border-radius: 5px;
}

.details .card .card-header {
    background: #F3F4F6;
    padding: .8rem;
}

.details h5 {
    font-size: 18px;
    font-weight: 500;
}

.details .bc-header {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: .5rem;
}

.details p, .description {
    font-weight: 500;
    font-size: 16px;
    color: #5c5c5c;
    flex-wrap: wrap;
    line-height: 1.5 !important;
    text-align: justify;
    width: 90%;
}

@media (max-width: 992px) {
    .details p, .description {
        width: 100%;
        font-weight: 500;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Start evaluation css
--------------------------------------------------------------*/
.evaluation {
    padding-top: 30px;
}

.evaluation h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 12px;
}

.evaluation .evaluation-box {
    padding: 10px;
    width: 15%;
    position: relative;
    text-align: center;
    border-radius: 6px;
    background: #F3F4F6;
    margin-right: 20px;
    border: 1px solid #A9ACAA;
    cursor: pointer;
    transition: all 0.5s ease;
}

.evaluation .evaluation-box:hover {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
}

.evaluation .evaluation-box img {
    width: 20%;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.1);
}

.evaluation .evaluation-box span {
    font-size: 14px;
    display: block;
    font-weight: 600;
    color: #111111;
    padding: 10px;
}

.evaluation .evaluation-box p {
    padding: 0;
    margin: 0;
    font-size: 14px;
}


@media (max-width: 768px) {
    .evaluation .evaluation-box {
        padding: 12px;
        width: 30%;
    }
}

@media only screen and (max-width: 576px) {
    .evaluation .evaluation-box {
        padding: 10px 0;
        width: 35%;
    }
}
