html {
    overflow: auto;
}

:root {
    --bs-yellow: #fece0b;
    --main-font: 'Inter';
    --main-font-bold: 'Inter Bold';
    --main-font-medium: 'Inter Medium';
    --secondary-font-regular: 'Poppins Regular';
    --secondary-font-medium: 'Poppins Medium';
    --third-font-regular: 'Lato';
}
a:hover {
    color: var(--bs-yellow);
}

.btn , a {
  -webkit-transition: all 0.25s ease-out 0s;
  -moz-transition: all 0.25s ease-out 0s;
  -ms-transition: all 0.25s ease-out 0s;
  -o-transition: all 0.25s ease-out 0s;
  transition: all 0.25s ease-out 0s;
}
/* loader -------------------------------------------------------------------- */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

#loader img, #loader svg {
    margin: auto;
    max-width: 200px;
}
#loader svg .pw-color-dash {
    fill: #ffce07;
    animation: dash 1s linear infinite
}

@keyframes dash {
    from {
        fill: #ffce07
    }

    to {
        fill: #919191
    }
}
body {
    font-family: var(--main-font);
    color: #1a1818;
    font-size: 17px;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }
}

.section-title {
    color: #1a1818;
    font-size: 40px;
    font-family: var(--main-font-bold);
}

.bold {
    font-family: var(--main-font-bold);
}

.medium {
    font-family: var(--main-font-medium);
}

.font-2-medium {
    font-family: var(--secondary-font-medium);
}

.font-2-regular {
    font-family: var(--secondary-font-regular);
}

.font-3-regular {
    font-family: var(--third-font-regular);
}

.main-color {
    color: var(--bs-yellow);
}

.bg-main {
    background-color: var(--bs-yellow);
}

.bg-grey {
    background-color: #676767;
}

.header {
    box-shadow: 0px 9px 42px #00000008;
    z-index: 2;
}

.header .dropdown-toggle::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-weight: 900;
    border: 0;
    font-size: 11px;
}

.black {
    color: #1a1818;
}

.black-2 {
    color: rgb(3 3 3 / 70%);
}

.black-3 {
    color: rgb(0 0 0 / 76%);
}

.black-4 {
    color: #000;
}

a {
    text-decoration: none;
}

p {
    margin-bottom: 0;
}

.login-btn {
    min-width: 90px;
    padding: 9px;
}

.header-main-links {
    gap: 30px;
}

.header-main-links a,
.header-main-links button {
    transition: 0.4s;
}

.header-main-links a:hover,
.header-main-links button:hover {
    color: var(--bs-yellow);
}

.header-main-links .dropdown-item:focus,
.header-main-links .dropdown-item:hover {
    background: #1a1818;
}

.one-line,
.three-line,
.four-line,
.five-line,
.two-line {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.two-line {
    -webkit-line-clamp: 2;
}

.w-40 {
    width: 40%;
}

.w-90 {
    width: 90%;
}

.btn-yellow {
    background-color: var(--bs-yellow);
    color: #1a1818;
}

.lg-btns>* {
    min-width: 180px;
    height: 65px;
    padding-top: 19px;
    font-size: 17px;
    border-radius: 9px;
    font-family: var(--main-font-medium);
    transition: 0.4s;
    text-align: center;
}

.lg-btns>.btn-yellow:hover {
    background-color: transparent;
}

.landing-section {
    background-color: rgb(255 251 235 / 40%);
    /*background-image: url(../image/landing-bg.png);*/
    background-size: cover;
    padding: 160px 0;
}

.landing-img {
    position: absolute;
    right: 4%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.landing-patt {
    position: absolute;
    right: 10%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.gray-img-hover img {
    /* transition: 0.4s; */
    /* filter: grayscale(1); */
}

.gray-img-hover:hover img {
    /* filter: grayscale(0); */
}

.landing-logo {
    position: absolute;
    right: 2%;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}

.landing-section .box {
    /* padding: 330px 0px;   */
}

.advanced-banner {
    background: url(../image/advanced-2.jpg) no-repeat;
    background-size: cover;
}

.bottom-normal-banner-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2b2b2b 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.43;
    pointer-events: none;
}

.capability-banner {
    background: url('~/layout/image/cap-img-2.webp') no-repeat;
    background-size: cover;
}

.timeline-img img {
    /* transform: translateX(-150px); */
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(90deg, #ffffff 0%, #989898 30%, #5e5e5e 100%) 0% 0% no-repeat padding-box;
    opacity: 0.08;
    pointer-events: none;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

.soft-bg {
    background-color: #fffdf7;
}

.soft-bg-2 {
    background-color: rgb(0 0 0 / 05%);
}

.soft-bg-3 {
    background-color: #fbfbfb;
}

.time-line-item {
    position: relative;
    display: flex;
    gap: 30px;
    height: 13%;
}

.time-line-item.active .time__line:after,
.time-line-item.active .time__line:before {
    background: var(--bs-yellow);
}

.time-line-title {
    color: #000;
}

.time-line-item.active .time-line-title {
    color: var(--bs-yellow);
}

.time-item-body {
    padding-bottom: 25px;
}

.time__line {
    width: 15px;
    position: relative;
    top: 7px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time__line:after {
    content: '';
    position: relative;
    display: inline-block;
    width: 1px;
    height: calc(100%);
    background-color: #999999;
    margin: auto;
    transition: 0.4s;
}

.time__line:before {
    content: '';
    position: relative;
    display: inline-block;
    min-width: 15px;
    min-height: 15px;
    background-color: #999999;
    border-radius: 50%;
    transition: 0.4s;
}

.time-line-title {
    font-size: 18px;
    transition: 0.4s;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-17 {
    font-size: 17px;
}

.explore-btn {
    position: relative;
}

.explore-btn:after {
    content: '\f105';
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    padding-left: 20px;
}

.time-line-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-line-head {
    position: relative;
    left: 0;
    top: 8px;
    width: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prod-365-section {
    background-color: #f4c811;
}

.time-line-head:before {
    content: '';
    width: 15px;
    height: 1px;
    background-color: #999999;
}

.time-line-head:after {
    content: '';
    width: 1px;
    height: 32px;
    background-color: #999999;
    margin: auto;
}

.time-line-close:after {
    content: '';
    width: 15px;
    height: 1px;
    background-color: #999999;
    position: relative;
    top: 3px;
}

form label.error {
    color: red;
    font-size: 12px;
}

.contact-page-details form label.error {
    margin-top: -15px;
}

.timeline-details-btns>* {
    min-width: 100px;
    font-size: 15px;
    padding: 11px;
    transition: 0.4s !important;
    border: 1px solid var(--bs-yellow);
}

.timeline-details-btns>*:hover {
    border: 1px solid var(--bs-yellow);
}

.time-line-box .time-item-body .font-12 {
    color: rgb(0 0 0 / 63%);
}

.sub-title {
    color: #000000;
    font-family: var(--main-font-bold);
    font-size: 20px;
}

.secondary-title {
    color: #000000;
    font-family: var(--main-font-bold);
    font-size: 30px;
}

.card-shadow {
    box-shadow: -9px 10px 79px #98989824;
}

.custom-card {
    border-radius: 9px;
    background: #fff;
}

.grid-1,
.grid-2,
.grid-3,
.grid-4,
.grid-5,
.grid-6 {
    display: grid;
    gap: 10px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
    /* grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) )!important; */
}

.grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.new-service-card {
    border-radius: 16px;
    border: 1px solid #FFCE07;
    padding: 32px 50px 32px 32px;
    background: #FFF;
}

.new-service-card-conclusion {
    border-radius: 16px;
    color: #000;
    padding: 32px 50px 32px 32px;
    background: #FFCE07;
}

.new-service-card .title {
    color: #1A1818;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 160%;
}

.our-services-title {
    font-weight: 600;
}

.new-service-card-conclusion .desc {
    color: #1A1818;
    font-size: 18px;
    font-weight: 600;
    line-height: 118.5%;
    /* 23.7px */
}

.new-service-card .desc {
    color: #1A1818;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 118.5%;
    /* 23.7px */
}

.new-service-card .icon {
    padding: 14.396px 14.21px 14.314px 14.5px;
    border-radius: 8px;
    border: 0.739px solid #DDD;
    background: #FFF;
    width: 80px;
}

.service-card {
    padding: 15px 10px;
    border-radius: 5px;
    position: relative;
}

.service-card:before {
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    background: #fece0b;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.service-card-2 {
    padding: 15px 10px;
    border-radius: 5px;
    position: relative;
}

.service-card-2:before {
    position: absolute;
    content: '';
    height: 15px;
    width: 15px;
    background: #676767;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}

.img-sec {
    border-radius: 5px;
}

.gray-bg {
    background-color: rgb(250 250 250 / 73%);
}

.main-border {
    border: 1px solid var(--bs-yellow);
}

.normal-item-box {
    border: 1px solid var(--bs-yellow);
    border-radius: 16px;
}

.designed-select-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .landing-img {
        right: 0;
        width: 40%;
    }

    .landing-patt {
        width: 50%;
    }

    .header-menu-icon {
        display: block !important;
        cursor: pointer;
    }

    .header-main-links {
        transition: 0.4s;
        left: -40%;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        padding: 26px;
        width: 40%;
        flex-direction: column;
        background: #fff;
        height: 100%;
        z-index: 10;
        padding-bottom: 60px;
    }

    .header-main-links.active {
        left: 0;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    .close-header-menu {
        cursor: pointer;
        width: 30px;
    }

    .header-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        position: fixed;
        top: 0;
        left: 0;
        background: #00000052;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .header-main-links button,
    .header-main-links a {
        display: block;
        padding: 4px 0;
        width: 100%;
        text-align: left;
    }

    .custom-dropdown-li button:before {
        content: none;
    }

    .header-main-links {
        gap: 16px;
    }

    .custom-dropdown-li button:before,
    .custom-dropdown-li:hover .custom-dropdown-menu {
        display: none !important;
    }

    .custom-dropdown-li .custom-dropdown-menu.active {
        display: block !important;
        top: 0;
        position: relative;
    }

    .full-dropdown {
        padding: 15px 20px 20px 0px !important;
    }

    .full__col {
        padding-top: 15px !important;
        padding-bottom: 10px !important;
    }

    .full-dropdown .box {
        flex-direction: column;
    }

    .full-dropdown .box .desc__col {
        display: none;
    }

    .full-dropdown .box .full__box {
        flex-direction: column;
        display: flex;
    }
}

@media (max-width: 991px) {
    .mob-mt {
        margin-top: 40px;
    }

    .intro-section .time-line-box,
    .intro-section [data-toggle-tab]:not(.active) {
        display: none !important;
    }

    .intro-section [data-toggle-tab].active {
        display: block;
    }

    .intro-section .time-item-body {
        padding-bottom: 0;
    }

    .intro-section .right-box-container {
        margin-top: 20px;
    }

    .intro-section .left-side-box {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .intro-mobile-tablet-dropdown {
        background: #f2f2f2;
    }

    .intro-mobile-tablet-dropdown .intro-mobile-tablet-menu {
        display: none;
    }

    .intro-mobile-tablet-dropdown.active .intro-mobile-tablet-menu {
        display: flex;
        flex-direction: column;
    }

    .intro-mobile-tablet-dropdown .intro-mobile-tablet-menu>* {
        padding: 10px;
    }

    .intro-mobile-tablet-dropdown .intro-mobile-tablet-menu>*.active {
        color: var(--bs-yellow);
    }

    .intro-mobile-tablet-dropdown>span:before,
    .benefit-mobile-dropdown:before,
    .designed-select-mobile:before {
        content: '\f078';
        font-weight: 900;
        font-family: 'Font Awesome 6 Free';
        position: absolute;
        top: 9px;
        bottom: 0;
        right: 10px;
        margin: auto;
        height: 30px;
        font-size: 15px;
    }

    .intro-mobile-tablet-dropdown>span,
    .benefit-mobile-dropdown {
        display: block;
        border: 1px solid #000;
        padding: 10px;
        position: relative;
        cursor: pointer;
        background-color: var(--bs-yellow);
    }

    .intro-section [data-toggle-tab],
    .intro-section .right-sticky {
        min-height: auto !important;
        height: auto !important;
    }

    .bene-left-box {
        position: absolute;
        top: 49px;
        z-index: 1;
        width: calc(100% - calc(var(--bs-gutter-x) * 1));
        left: 0;
        margin-right: calc(var(--bs-gutter-x) * 0.5);
        margin-left: calc(var(--bs-gutter-x) * 0.5);
        overflow-y: auto;
        max-height: 400px;
        background: #f2f2f2;
        gap: 0 !important;
        display: none !important;
    }

    .bene-left-box .accordion-box .accordion-head {
        padding: 10px !important;
    }

    .bene-left-box .accordion-box {
        border: 0 !important;
    }

    .bene-left-box .accordion-box i {
        display: none;
    }

    .bene-left-box .accordion-box.active,
    .accordion-box:hover {
        background-color: transparent;
        color: var(--bs-yellow);
    }

    .bene-left-box .accordion-box.active button {
        color: var(--bs-yellow);
    }

    .benefit-mobile-dropdown.active~.bene-left-box {
        display: block !important;
    }

    .benefits-section .box.row {
        gap: 20px;
    }

    .designed-for-section .btns-toggle {
        position: absolute;
        top: 49px;
        z-index: 1;
        width: 100%;
        left: 0;
        overflow-y: auto;
        max-height: 400px;
        background: #f2f2f2;
        gap: 0 !important;
        flex-direction: column;
    }

    .designed-for-section button.active {
        border: 0;
        color: var(--bs-yellow);
    }

    .designed-select-mobile {
        display: block;
        border: 1px solid #000;
        padding: 10px;
        position: relative;
        cursor: pointer;
        background-color: var(--bs-yellow);
        margin-bottom: 20px;
    }

    .designed-select-mobile~.btns-toggle {
        display: none !important;
    }

    .designed-select-mobile.active~.btns-toggle {
        display: flex !important;
    }
}

@media (max-width: 1024px) {
    .grid-3-t {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2-t {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1-t {
        grid-template-columns: repeat(1, 1fr);
    }

    .prod-365-section .box .item {
        /* width: 48%!important; */
    }

    .contact-us-section {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .grid-2-p {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-1-p {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-us-section {
        padding-bottom: 20px;
    }
}

.trans {
    transition: 0.4s;
}

.discuss-btn {
    background-color: #000000;
    color: var(--bs-yellow);
    border-radius: 9px;
    width: 290px;
    height: 65px;
    font-size: 18px;
}

.discuss-btn:hover {
    background: transparent;
    color: #000;
}

.slide-shadow {
    /* box-shadow: -1px -1px 13px 4px #70707014; */
}

.testmonial-quote-marks {
    font-size: 34.215px;
    font-family: inter;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.testmonial-img {
    border: 1px solid #ffce07;
}

.next-prev-icons {
    color: #ffce07;
    border: 1px solid #ffce07;
    padding: 22px;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.1s;
    cursor: default;
}

.next-prev-icons:not(.swiper-button-disabled):hover {
    color: #ffffff;
    background-color: #ffce07;
    cursor: pointer;
}

.font-16 {
    font-size: 16px;
}

.font-15 {
    font-size: 15px;
}

.font-13 {
    font-size: 13px;
}

.swiper-pagination span {
    transition: 0.4s;
    height: 6px;
    width: 14px;
    border-radius: 4px;
    background-color: var(--bs-yellow);
}

.swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    height: 6px;
    background-color: var(--bs-yellow);
}

.clients-section {
    background-color: rgb(242 242 242 / 63%);
}

.contact-us-section .form-control::placeholder {
    color: #000;
}

.contact-us-section .form-control {
    background-color: rgb(195 193 191 / 14%);
    border-color: rgb(195 193 191 / 14%);
    transition: 0.4s;
    font-size: 14px;
    border-radius: 6px;
    padding: 8px 13px;
    color: #000;
}

.form-control {
    font-family: var(--main-font);
}

.btn-submit {
    background-color: #000000;
    color: var(--bs-yellow);
    border-radius: 9px;
    width: 235px;
    height: 70px;
    border: 0;
    font-size: 19px;
    border: 1px solid #000;
}

.btn-submit:hover {
    background-color: transparent;
    color: #000;
}

.logo-text-foot {
    color: #fffcfa;
}

.bg-black {
    background-color: #000;
}

.newletter-input::placeholder {
    color: #fff;
}

.newletter-input {
    color: #fff;
    background-color: transparent;
    border: 0.5px solid #ffffff59;
    border-width: 0.5px 0 0.5px 0.5px;
    padding: 15px 11px;
    font-size: 13px;
}

.btn-newsletter {
    background-color: var(--bs-yellow);
    border: 0;
    transition: 0.4s;
    border: 1px solid var(--bs-yellow);
}

.btn-newsletter:hover {
    background-color: transparent;
    color: var(--bs-yellow);
}

.newletter__input {
    width: 65%;
}

.bottom-footer {
    background: #171717;
}

.full-dropdown {
    box-shadow: -9px 10px 79px #62626212;
    padding: 35px 80px 35px 40px;
}

.full__col {
    padding-left: 20px;
    border-left: 1px solid rgb(112 112 112 / 21%);
    padding-top: 5px;
    padding-bottom: 20px;
}

.full__col figure {
    width: 28px;
}

.full__col:nth-of-type(1),
.full__col:nth-of-type(2),
.full__col:nth-of-type(3) {
    /* border-bottom: 1px solid rgb(112 112 112 / 21%); */
}

.full__col:nth-of-type(4),
.full__col:nth-of-type(5),
.full__col:nth-of-type(6) {
    padding-top: 15px;
}

.desc__col {
    width: 28%;
    margin-right: 3%;
}

.full__details li {
    position: relative;
    list-style: none;
}

.full__details li:before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--bs-yellow);
    border-radius: 1px;
    position: absolute;
    top: 14px;
    left: -10px;
}

.header .full__title>span {
    border-bottom: 1px dashed #c6c6c6;
    padding-bottom: 15px;
}

.header .full__title figure {
    align-self: baseline;
}

.header .full__title {
    padding-bottom: 0 !important;
    margin-right: 15px;
    gap: 4px;
    font-size: 15px;
}

.full__details>ul {
    padding-top: 5px;
}

.full__details a {
    font-size: 12px;
    color: rgb(0 0 0 / 83%);
    font-family: var(--main-font-bold);
}

.gap-0 {
    gap: 0;
}

.custom-dropdown-li .custom-dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 16px);
    display: none;
}

.custom-dropdown-li button {
    position: relative;
}

.custom-dropdown-li button:before {
    content: '';
    width: 100%;
    height: 26px;
    top: 100%;
    position: absolute;
    border-bottom: 3px solid transparent;
    transition: 0.4s;
}

.custom-dropdown-li:hover .custom-dropdown-menu {
    display: block;
}

.custom-dropdown-li:hover button:before {
    border-color: var(--bs-yellow);
}

.banner-section:before {
    content: '';
    position: absolute;
    background: #00000080;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.91;
}

.banner-section {
    height: 500px;
}

.benefits-section .--item {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: -10px 20px 50px #8080802c;
    border-radius: 14px;
    opacity: 0.74;
    /* padding: 30px 20px; */
}

.pricing-item {
    border: 1px solid #f4c811;
    border-radius: 20px;
    padding: 35px 0 18px 0;
}

.pricing-item:hover {
    box-shadow: -15px 30px 60px #0814204d;
    border-color: transparent;
}

.pricing-item:hover .--price,
.pricing-item:hover .btn-pricing {
    background-color: var(--bs-yellow);
}

.benefits-section .accordion-box.active button i:before {
    content: '\f068';
}

.microsoft-section .service-card {
    color: #000;
    transition: 0.4s;
}

.microsoft-section .service-card:hover {
    background-color: var(--bs-yellow);
    color: #000;
}

.pricing-item:hover .--price * {
    color: #000;
}

.gray {
    color: #70798b;
}

.price-unit {
    position: relative;
    top: -42px;
}

.btn-pricing {
    border: 2px solid #fece0b;
    width: 220px;
    height: 55px;
    color: #000 !important;
    max-width: 95%;
}

.accordion-head {
    padding: 30px 40px 25px 40px;
}

.line-32 {
    line-height: 32px;
}

.accordion-head[aria-expanded='true'] i:before {
    content: '\f068';
}

.accordion-box {
    box-shadow: 4px 3px 12px #0000001a;
}

.capability-banner .btn {
    width: 230px;
    height: 70px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    position: relative;
}

.capability-banner .btn:hover {
    background-color: #fff !important;
}

.capability-banner .btn:hover {
    background-color: var(--bs-yellow);
}

.cap-section {
    background: url(../image/customer-service.svg) no-repeat;
    background-size: contain;
}

.cap-item .normal-item-box {
    background-image: url(../image/card-patt.svg) !important;
}

.cap-item .normal-item-box,
.cap-item .normal-item-box figure img {
    transition: 0.4s;
}

.cap-item .normal-item-box:hover {
    color: #000;
    background-color: var(--bs-yellow) !important;
}

.cap-item .normal-item-box:hover figure img {
    filter: brightness(0);
}

.cap-item .--title {
    height: 72px;
}

.row-gap-60 {
    row-gap: 60px;
}

.row-gap-20 {
    row-gap: 20px;
}

.discuss-section {
    background: url(../image/discus-bg.png) no-repeat;
    background-size: cover;
}

.discuss-section .discuss-btn {
    border: 1px solid #000;
}

.bg-soft {
    background-color: rgb(250 250 250 / 72%);
}

.testimonials-section .arrow {
    position: absolute;
    left: -35px;
    margin: auto;
    top: -90px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #f2f2f2; */
    border-radius: 50%;
    z-index: 2;
    cursor: pointer;
}

.testimonials-section .arrow.right {
    left: auto;
    right: 45px;
}

.testimonials-section .arrow.left {
    left: -170px;
}

.swiper-button-disabled {
    opacity: 0.4;
}

.social-footer a {
    color: var(--bs-yellow);
    /* font-size: ; */
    border: 1px solid #fffcfa33;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.4s;
}

.social-footer a:hover {
    background-color: var(--bs-yellow);
    color: #000000;
}

.normal-banner-section {
    padding: 100px 0;
    background-size: cover;
    background-position: bottom;
}

.pre-line {
    white-space: pre-line;
}

.toggler-section .mobile-active-tab-toggle {
    display: none;
}

.toggler-section a {
    color: #000000;
    font-size: 17px;
    transition: 0.4s;
    padding: 30px 0 25px 0;
    opacity: 0.69;
    position: relative;
}

.toggler-section a:first-of-type {
    padding-left: 0;
}

.toggler-section a.active {
    opacity: 1;
}

.toggler-section a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    max-width: 90px;
    height: 4px;
    background-color: var(--bs-yellow);
    transition: 0.4s;
}

.toggler-section a.active:after,
.toggler-section a:hover:after {
    opacity: 1;
}

.designed-for-section button {
    background-color: transparent;
    border: 3px solid transparent;
    border-width: 0 0 3px 0;
    padding: 5px 15px;
    transition: 0.4s;
    position: relative;
    top: 0;
}

.designed-for-section button:not(.active):hover {
    transform: scale(1.1);
    color: var(--bs-yellow);
}

.designed-for-section button.active {
    border-color: var(--bs-yellow);
    font-family: var(--main-font-medium);
}

.points-list li {
    list-style: none;
    position: relative;
}

.points-list li:before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: var(--bs-yellow);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: -30px;
    top: 5px;
}

.normal-btn {
    width: 200px;
    background-color: var(--bs-yellow);
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--main-font-medium);
}

.normal-btn.arrow i {
    transition: 0.4s;
}

.normal-btn.arrow:hover i {
    transform: translateX(5px);
}

[data-toggle-tab]:not(.active) {
    display: none;
}

[data-toggle-tab].active {
    display: block !important;
}

.benefits-section .right-box {
    box-shadow: 4px 3px 12px #0000001a;
    border: 1px solid #fece0baa;
    border-radius: 10px;
}

.benefits-section .right-box .minus-icon {
    position: absolute;
    right: 20px;
    top: 28px;
}

.benefits-section .accordion-box {
    box-shadow: none;
    border-radius: 7px;
    border: 0.6px solid var(--bs-yellow);
}

.benefits-section .accordion-box,
.benefits-section .accordion-box i {
    transition: 0.4s;
}

.benefits-section .accordion-box .accordion-head {
    padding: 15px 20px 15px 25px;
    font-size: 16px;
    width: 100%;
    border: 0;
    background: transparent;
}

.accordion-box.active,
.accordion-box:hover {
    background-color: var(--bs-yellow);
}

.accordion-box.active i,
.accordion-box:hover i {
    color: #000;
}

.accordion-box [data-bs-toggle] i {
    transform: rotate(0);
    position: relative;
}

.accordion-box.active i,
.capa__accordion .accordion-box [data-bs-toggle].active i {
    transform: rotate(360deg);
}

.capa__accordion .left .points-list li {
    cursor: pointer;
    transition: 0.4s;
}

.capa__accordion .left .points-list li:before {
    transition: 0.4s;
}

.capa__accordion .left .points-list li.active,
.capa__accordion .left .points-list li:hover {
    color: var(--bs-yellow);
}

.capa__accordion .left .points-list li.active:before,
.capa__accordion .left .points-list li:hover:before {
    width: 20px;
    height: 20px;
    top: 3px;
}

.capa__accordion .left:before {
    content: '';
    position: absolute;
    top: 0;
    right: 11px;
    width: 1px;
    height: 100%;
    background: #000;
    opacity: 0.2;
}

.capa__accordion .collapse {
    background: rgb(247 247 247 / 74%);
}

.related-prod-item {
    box-shadow: -10px 20px 50px #8080802c;
    border-radius: 14px;
}

.box-hover,
.related-prod-item {
    transition: 0.4s;
}

.related-prod-item:hover,
.box-hover:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 40px 70px -30px rgb(19 33 54 / 16%), 0 20px 70px -30px rgb(0 0 0 / 30%);
}

.prod-365-section .item {
    border-radius: 19px;
}

.prod-365-section .box .item {
    /* width: 32%; */
}

.whats-new-section .box-body {
    background-color: #fcfcfc;
    padding: 20px;
}

.whats-new-section .item__details {
    margin-top: -20px;
}

.trans {
    transition: 0.4s;
}

.item-box:hover img {
    filter: grayscale(1);
}

.item-box:hover .--title {
    color: var(--bs-yellow);
}

.prod-365-section-small .item {
    flex: 1;
}

.theme-table table {
    border-spacing: 5px 0;
    border-collapse: initial;
    width: 100%;
}

.theme-table th {
    background-color: var(--bs-yellow);
    border-radius: 5px;
    padding: 15px 10px 10px 10px;
    text-align: center;
    line-height: 18px;
    font-size: 15px !important;
}

.theme-table th,
.theme-table td {
    font-family: var(--main-font-medium);
    font-size: 14px;
    text-align: center;
}

.theme-table th:first-of-type {
    text-align: left;
    padding: 15px 5px 10px 10px;
}

.theme-table td:first-of-type:before {
    content: '\2b';
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    color: var(--bs-yellow);
    margin-right: 10px;
    transition: 0.4s;
    position: relative;
    align-self: baseline;
}

.theme-table [toggle].active td:first-of-type:before {
    content: '\f068';
    transform: rotate(360deg);
}

.theme-table td {
    padding: 20px 0;
}

.theme-table td:first-of-type {
    padding: 20px 5px 10px 10px;
    text-align: left;
    display: flex;
}

.theme-table [toggle] {
    cursor: pointer;
}

.theme-table td {
    position: relative;
}

.theme-table td span,
.circle-span:before {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #555555;
    display: block;
    margin: auto;
}

.circle-span:before {
    content: '';
    width: 15px;
    height: 15px;
}

.theme-table td.active span,
.circle-span.yellow:before {
    background-color: var(--bs-yellow);
}

.clients-slider .swiper-slide img {
    max-width: 100%;
}

.theme-table [data-toggle-tab].active {
    display: table-row !important;
}

.theme-table [data-toggle-tab] td:first-of-type:before {
    content: none;
}

.theme-table [data-toggle-tab] td:first-of-type {
    padding-left: 32px;
}

.theme-table [toggle].active,
.theme-table [toggle].active~[data-toggle-tab].active {
    background-color: #fece0b12;
}

.theme-table tbody:before {
    line-height: 1em;
    content: '_';
    color: white;
    display: block;
}

.our-mission-section {
    background: url(../image/mission-bg.jpg) no-repeat;
    background-size: cover;
}

.our-mission-section .main-color {
    color: var(--bs-yellow) !important;
}

.what-do-section {
    padding: 70px 0;
    background: url(../image/what-do-bg.jpg) no-repeat;
    background-size: cover;
}

.spliter span {
    display: block;
    width: 0.5px;
    height: 100%;
    background: #000000;
}

.contact-details__item i,
.contact-social-box a {
    align-self: baseline;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-yellow);
    border-radius: 7px;
    border: 1px solid var(--bs-yellow);
    font-size: 22px;
}

.contact-social-box a {
    transition: 0.4s;
    background-color: #000000;
    border-width: 0;
}

.contact-social-box a:hover {
    background-color: var(--bs-yellow);
    color: #000;
}

.contact-page-details .spliter span {
    background: transparent;
    border-right: 1px dashed #00000030;
}

.contact-page-details .right .form-control {
    height: 55px;
    background: #f5f5f5;
    font-size: 14px;
    color: #141414;
    border-radius: 8px;
    border-color: #f5f5f5;
}

.contact-page-details .right textarea.form-control {
    height: auto;
}

.contact-page-details .right .btn-submit {
    height: 60px;
    width: 100%;
    font-family: var(--main-font-bold);
}

.map-iframe iframe {
    border: 0;
    border-radius: 8px;
    width: 100%;
    height: 500px;
}

.intro-section .time-line-box {
    position: sticky !important;
    top: 0;
    max-height: 100vh;
    height: calc(100vh - 5px);
    /* overflow-y: auto; */
}

.intro-section [data-toggle-tab] {
    display: block !important;
    min-height: 100vh;
}

.intro-section .right-sticky {
    height: 100%;
}

.time-item-body a,
.time-line-title {
    transition: 0.4s;
}

.time-item-body a:hover,
.time-line-title:hover {
    color: var(--bs-yellow) !important;
}

.time-line-title {
    cursor: pointer;
}

.pricing-custom-box__price {
    height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

form :required {
    background-size: 15px !important;
    background-repeat: no-repeat !important;
    background-position: 98% center !important;
}

form textarea:required {
    background-position: 98% 10px !important;
}

form [aria-required='true'].error {
    background-image: url(../image/error.svg) !important;
    border-color: red !important;
}

header .logo img {
    width: 13rem;
}

@media (min-width: 1200px) {
    .landing__desc {
        max-width: 510px;
    }
}

@media (max-width: 1199px) {
    .landing__desc {
        max-width: 410px;
    }
}

@media (min-width: 992px) and (max-width: 1190px) {
    .landing__desc {
        max-width: 510px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .landing__desc {
        max-width: 410px;
    }
}

@media (max-width: 768px) {
    .landing__desc {
        max-width: 410px;
    }
}



@media (max-width: 1199px) {
    .prod-365-section .col-md-9 {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .w-100-p,
    .header-main-links {
        width: 100% !important;
    }

    header .logo img {
        width: 150px;
    }

    .accordion-head {
        padding: 20px;
    }

    .landing-section .box-text {
        width: 100%;
    }

    .landing-section .lg-btns>* {
        min-width: 47%;
    }

    .landing__desc {
        font-size: 15px;
    }

    .advanced-banner {
        background-position: top;
    }

    .pt-50-p {
        padding-top: 50px;
    }

    .pb-50-p {
        padding-bottom: 50px;
    }

    .br-0-p br {
        display: none;
    }

    .section-title {
        font-size: 27px;
    }

    .timeline-img img {
        transform: none;
    }

    .capability-banner {
        background-position: bottom;
    }

    .capability-banner .btn {
        width: 180px;
        height: 50px;
    }

    .cap-section .box {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .cap-section .box .cap-item {
        width: 85%;
    }

    .testimonials-section .arrow {
        display: none;
    }

    .clients-slider .swiper-slide img {
        width: 90%;
    }

    .discuss-btn {
        width: 240px;
        height: 50px;
        font-size: 17px !important;
    }

    .btn-submit {
        width: 220px;
        height: 55px;
    }

    .cap-section .normal-item-box {
        padding: 20px !important;
    }

    .cap-section .normal-item-box img {
        width: 70px;
        height: auto;
    }

    .cap-item .--title {
        height: 65px;
    }

    .toggler-section .box {
        gap: 12px !important;
        overflow-x: auto;
    }

    .toggler-section a {
        padding: 10px 0 19px 0;
    }

    .toggler-section a,
    .toggler-section a.active {
        font-size: 17px;
        white-space: nowrap;
    }

    .normal-banner-section .box-text {
        width: 100%;
    }

    .normal-banner-section {
        padding: 70px 0;
        /* background-size: contain; */
        background-color: #f1f1f1;
        background-repeat: no-repeat;
    }

    .secondary-title {
        font-size: 24px;
    }

    .designed-for-section .btns-toggle {
        overflow-x: auto;
        justify-content: start !important;
    }

    .designed-for-section button {
        font-size: 15px;
        white-space: nowrap;
        padding: 5px 8px;
    }

    .benefits-section .right-box .minus-icon {
        right: 12px;
        top: 15px;
    }

    .powered-section .grid-5,
    .grid-3-p {
        grid-template-columns: repeat(3, 1fr);
    }

    .capa__accordion .left:before {
        content: none;
    }

    .capa-page-section .left {
        margin-bottom: 30px;
    }

    .prod-365-section .box {
        justify-content: start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
    }

    .prod-365-section .box>* {
        width: 80%;
    }

    .prod-365-section-small .item {
        width: 40%;
        flex: auto;
    }

    .landing-section {
        padding: 70px 0 100px 0;
    }

    .landing-img {
        width: 70%;
        position: relative;
        display: block;
        margin: -30px auto 30px auto;
    }

    .landing-patt {
        width: 90%;
        top: 21px;
        bottom: auto;
        left: -25vw;
        right: 0;
        margin: auto;
    }

    .landing-logo {
        width: 150px;
    }

    .theme-table td:first-of-type {
        min-width: 200px;
    }

    .map-iframe iframe {
        height: 300px;
    }

    .toggler-section .box,
    .toggler-section .box a.active {
        display: none !important;
    }

    .toggler-section .mobile-active-tab-toggle:before {
        content: '\f078';
        font-weight: 900;
        font-family: 'Font Awesome 6 Free';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
        height: 30px;
    }

    .toggler-section {
        background: #f2f2f2;
        margin-bottom: 10px;
    }

    .toggler-section .mobile-active-tab-toggle {
        display: block;
        position: relative;
        padding: 20px;
    }

    .toggler-section a:after {
        content: none;
    }

    .toggler-section .mobile-active-tab-toggle.active~.box {
        z-index: 1;
        position: relative;
        display: flex !important;
        flex-direction: column;
        gap: 0 !important;
    }

    .pb-0-p {
        padding-bottom: 0 !important;
    }

    .cap-section .cap-item,
    .pricing-section .pricing-item {
        width: 90%;
        margin: auto;
    }
}

/*Page Services*/
.page-services .icon {
    width: 15%;
    border-radius: 10px;
}

.bg-cover {
    background-size: cover;
}

.careers-page ul {
    display: flex;
    flex-flow: wrap;
    align-items: end;
    justify-content: end;
    margin-top: 30px;
}

.careers-page ul li {
    flex: 0 0 calc(35.33% - -70px);
    padding-bottom: 20px;
    position: relative;
    list-style: none;
}

.careers-page ul li:before {
    position: absolute;
    content: '';
    height: 40px;
    width: 40px;
    background-image: url('../image/list-icon.png');
    background-size: cover;
    left: -60px;
}

.location-icon {
    background-image: url('../image/location-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 28px;
    background-position: 2%;
}

.email-icon {
    background-image: url('../image/email-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 20px;
}

.search-icon {
    background-image: url('../image/search-icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    height: 28px;
}

.careers-form {
    padding: 0px 35px;
    border: none;
    width: 100%;
    outline: unset;
}

.form-main {
    border: 1px solid #0000003d;
    padding: 0px 0px 0px 3px;
    border-radius: 12px;
    align-items: center;
}

.form-main:before {
    position: absolute;
    content: '';
    height: 90px;
    width: 1px;
    background-color: #0000003d;
    right: 0px;
    left: 10px;
    margin: auto;
}

.form-main:after {
    position: absolute;
    content: '';
    height: 90px;
    width: 1px;
    background-color: #0000003d;
    right: 0;
    left: -660px;
    margin: auto;
}

.form-main ::placeholder {
    color: black;
}

.form-main button {
    height: 90px;
    background-color: #fece0b;
    border: none;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color: black;
    text-transform: capitalize;
    font-weight: bold;
}

.text-right {
    text-align: right;
}

.vecancy-main {
    box-shadow: 0px 4px 40px #70707014;
    padding: 40px;
    border-radius: 12px;
}

.vecancy-main .icon {
    border-radius: 15px;
}

.btn-grey {
    background-color: #f0f0f0;
    color: #1a1818;
}

.vecancy-main .medium {
    padding: 16px;
    text-transform: uppercase;
}

.object-cover {
    object-fit: cover;
}

.recent-post-menu {
    padding: 0;
}

.recent-post-menu li {
    padding: 10px 10px 10px 40px;
    list-style: none;
}

.recent-post-menu li:hover {
    background-color: white;
}

.recent-post-menu li a {
    color: black;
}

.tags-post-menu {
    padding: 20px;
    margin-left: 20px;
}

.tags-post-menu li {
    padding: 10px 10px 10px 10px;
    list-style: none;
    display: inline-block;
    background-color: white;
    border-radius: 5px;
    margin-bottom: 5px;
}

.tags-post-menu li a {
    color: black;
}

.hastaging {
    padding: 0;
    margin-bottom: 0.5rem !important;
}

.hastaging li {
    display: inline-block;
}

.border-bottom-recent {
    border-bottom: 3px solid white;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.careers-accordian:hover {
    color: #fece0b;
}

.bg-main.menus {
    border-radius: 10px;
}

.hidden-md-up {
    display: none;
}

.hashtaglink {
    color: #fece0b;
}

@media (max-width: 767px) {
    .for-mobile-box {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        font-size: 18px;
    }

    .hidden-md-down {
        display: none;
    }

    .hidden-md-up {
        display: block;
    }

    .bg-main.menus {
        margin-top: 20px;
    }

    .img-sec {
        width: 100%;
        margin: auto;
        height: 100px;
        object-fit: cover;
    }

    .careers-page ul {
        display: unset;
    }

    .careers-page ul li:before {
        left: -50px;
    }

    .vecancy-main {
        padding: 10px;
    }

    .col-lg-6.text-right {
        text-align: left;
        margin-top: 0px;
    }

    .vecancy-main .medium {
        padding: 0.375rem;
        margin-top: 10px;
    }

    .mob-mb {
        margin-bottom: 40px;
    }

    .form-main {
        grid-template-columns: unset;
        padding: 30px 20px;
    }

    .form-main:before {
        display: none;
    }

    .form-main:after {
        display: none;
    }

    .careers-form {
        margin-bottom: 20px;
    }

    .email-icon {
        height: 19px;
    }

    .search-icon {
        height: 25px;
    }

    .location-icon {
        height: 26px;
        background-position: unset;
    }

    .form-main button {
        height: 40px;
        border-radius: 10px;
    }

    .careers-banner:before {
        position: absolute;
        content: '';
        background: #ffffff47;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
    }

    .careers-banner p {
        position: relative;
    }

    .careers-banner h1 {
        position: relative;
    }
}

.small-title {
    font-size: 18px;
}

.section-li-item {
    color: rgb(0 0 0 / 76%);
    font-size: 16px;
}

.floating-whatsapp-fixed , .floating-whatsapp{
    position: fixed;
    bottom: 10px;
    margin-right: 10px;
    right: 10px;
    z-index: 99999;
    max-width: max-content;
}

/* body {
    overflow-x: hidden;
} */

.text-btns .btn.btn-outline-dark {
    display: none !important;
}

.clients-slider .swiper-slide img {
    height: 62px;
    width: 120px;
    object-fit: contain;
}

.clients-slider {
    min-height: 100px;
}

.swiper-slide {
    margin: auto;
}
.contact-us-section {display:none !important}
textarea {resize:none}
.crmEntityFormView .cell .field-label {
    font-size: 90%;
}
.crmEntityFormView .cell {
	margin-bottom:0 !important;
}
.get-demo-form .form-control-cell {
	padding-bottom:1rem !important;
}

.get-demo-form .crmEntityFormView .actions input {
	padding: .5rem 4rem !important;
	width:auto !important;
}
.get-demo-form .actions {
	 display: flex;
    justify-content: end;
}
.form-control:focus {
    border-color: #fece0b !important;
    box-shadow:inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(254 206 11)!important;
}
.get-demo-form :-webkit-autofill,
.get-demo-form input:-webkit-autofill:hover, 
.get-demo-form input:-webkit-autofill:focus,
.get-demo-form textarea:-webkit-autofill,
.get-demo-form textarea:-webkit-autofill:hover,
.get-demo-form textarea:-webkit-autofill:focus,
.get-demo-form select:-webkit-autofill,
.get-demo-form select:-webkit-autofill:hover,
.get-demo-form select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #f5f5f5 inset;
  transition: background-color 5000s ease-in-out 0s;
}
.accordion-head {
	    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.capa__accordion .accordion-head:hover {
    color: #fece0b;
}
.page-content, #mainContent {
	padding-bottom:1.5rem
}
.form-group {
	margin-bottom:1rem;
}

.form-horizontal input.form-control,.form-horizontal input.form-control:focus {
	height: 55px;
    background: #f5f5f5;
    font-size: 14px;
    color: #141414;
    border-radius: 8px;
    border-color: #f5f5f5
}
.form-horizontal label {
	margin-bottom:.25rem;
	font-size: 90%;
}
.form-horizontal input[type=checkbox]  {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
	border-radius: .25em;
	margin-right: .25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.form-horizontal input:checked[type=checkbox] {
    background-color: var(--bs-yellow);
    border-color: var(--bs-yellow);
}
.form-horizontal input:checked[type=checkbox] {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}
.form-horizontal .btn-primary, .form-horizontal .btn-default {
	min-width:100px;
	padding: 9px;
}
.form-horizontal .btn[class*="btn-"]:hover,.crmEntityFormView .actions input:hover {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.15) 0px 5px 10px !important;
}
.form-horizontal .col-sm-offset-4.col-sm-8{
	justify-content: space-between;
    display: flex;
}
.btn-primary {
    --bs-btn-bg: #000;
    --bs-btn-border-color: #000;
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #000;
    --bs-btn-disabled-border-color: #000
}
.nav-profile .panel-heading {
	    margin: 1rem 0 .5rem 0;
}
.btn-primary {
    --bs-btn-hover-border-color: #000;
    --bs-btn-focus-shadow-rgb: 0, 0, 0;
    --bs-btn-active-bg: #000;
	-bs-btn-active-border-color: #000;
	color:#fff !important;
}
.btn-primary:hover {
    background-color:#000;
}
.well, .profile-info {
	margin-bottom:1.5rem
}
.list-group-item.active {
    background-color: var(--bs-yellow);
    border-color: var(--bs-yellow);
}
.crmEntityFormView .actions input:hover {
	    background-color: #000 !important;
}
.crmEntityFormView .actions input {
	font-size:1.1rem !important;
}
.help-block {
	font-size:90%;
}