/* ==============GLOBAL CSS================= */
:root {
    --primnary-color:#011F5D;
    --blue-primary: #011F5D;
    --blue-dark: #011F5D;
    --cyan: #011F5D;
    --text-gray: #828282;
    --text-1E334B: #011F5D;
}

/*================= RESET CSS ========================*/
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

 /*================= RESET CSS ========================*/

/*================= gLobal CSS ========================*/
/* width */
/* Apply globally */
html, body {
  user-select: none;      /* Modern browsers */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE/Edge */
}

body{
    overflow-x: hidden;
}
body::-webkit-scrollbar {
    width: 10px;
}

/* Track */
body::-webkit-scrollbar-track {
    box-shadow: lightgrey;
}

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #00285e;
}

body::-webkit-scrollbar-thumb:hover {
    background: #44489D;
}

.main_color {
    background: #44489D !important;
}

.common_container {
    width: 90%;
}

/* Base Button Styles */
.btn_primary {
    background: #00A5EC;
    border: 1px solid #00A5EC;
    border-radius: 2px;
    padding: 9px 24px;
    color: rgb(255, 255, 254);
    font-family: var(--fontRailWay);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
    z-index: 1;
}

/* Animated Background Layer */
.btn_primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--blue-primary);
    /* White overlay */
    transition: width 0.4s ease-out;
    z-index: -1;
}

/* Hover States */
.btn_primary:hover {
    color: rgb(255, 255, 254);
    /* Maintain text color */
    box-shadow: 0 4px 12px rgba(0, 165, 236, 0.3);
    /* Blue glow */
}

.btn_primary:hover::before {
    width: 100%;
    /* Full width overlay */
}

/* Active/Pressed State */
.btn_primary:active {
    transform: translateY(1px);
    /* Subtle push effect */
    box-shadow: 0 2px 6px rgba(0, 165, 236, 0.3);
}

/* Focus State */
.btn_primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 165, 236, 0.4);
}

.btn_primary img {
    margin-left: 3px;
    transition: 0.35s ease-in;
    position: relative;
    bottom: 1px;
}

.btn_primary:hover img {
    transform: translateX(10px);
}

.btn_primary.shadow-none:hover {
    box-shadow: none;
}

.btn_white_border {
    border: 1px solid #0163E1;
    border-radius: 2px;
    color: #0163E1;
    padding: 12px 24px;
    font-size: 16px;
    font-family: var(--fontRailWay);
    font-weight: 700;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
    z-index: 1;
}

.btn_white_border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #07499E;
    transition: width 0.4s ease-out;
    z-index: -1;
}

.btn_white_border:hover {
    color: #ffffff;
    border-color: #07499E;
}

.btn_white_border:hover::before {
    width: 100%;
}

/* Optional: Add focus state for accessibility */
.btn_white_border:focus {
    outline: 2px solid rgba(7, 73, 158, 0.5);
    outline-offset: 2px;
}

.btn_white_border img {
    margin-left: 3px;
    transition: 0.35s ease-in;
}

.btn_white_border:hover img {
    transform: translateX(10px);
}

.btn-nav {
    background-color: #61C6C4;
    border-color: #61C6C4;
    color: #ffffff;
}

.btn-nav:hover {
    color: #ffffff;
    box-shadow: 2px 2px 15px #c5c4c4;
}

.navbar .navbar-nav .nav-item.bb-none:hover {
    border-bottom: none;
}

.top-header {
    background-color: #EDEDF1;
}

.top-header a.a {
    color: #071331;
    font-size: 13px;
    font-family: var(--fontMerriweather);
    font-weight: 400;
    opacity: .5;
    transition: 0.35s opacity ease-in;
}

.top-header a.a:hover {
    text-decoration: none;
    opacity: 1;
}

.top-header a img {
    margin-right: 5px;
    position: relative;
    bottom: 1px;
}

/* Define the keyframes animation */
@keyframes blink {
    0% {
        opacity: 1;
        /* Fully visible */
    }

    50% {
        opacity: 0;
        /* Fully transparent */
    }

    100% {
        opacity: 1;
        /* Fully visible */
    }
}

/* Apply the animation to the button */
.blinking-button {
    animation: blink 3s infinite;
    /* 1-second duration, infinite loop */
}

.blinking-button:hover {
    animation: none;
}

.btn_primary_color {
    color: #F26C67 !important;
}

.btnoutline_white {
    font-size: 14px;
    border-color: #fff;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-appearance: unset !important;
    -webkit-appearance: none !important;
}

.btnoutline_white:hover {
    border-color: #fff;
    color: #fff;
}

.btnoutline_primary {
    font-size: 14px;
    border-color: #F26C67;
    color: #F26C67;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    -webkit-appearance: unset !important;
    -webkit-appearance: none !important;
}

.sec-gap {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sec-gap-top {
    padding-top: 60px;
}

.sec-gap--bottom {
    padding-bottom: 60px;
}

.btn-white {
    background-color: #fff;
    border-radius: 42px;
    padding: .375rem 1.2rem;
    color: #1ABED5;
}

.btn_primary-modi {
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 16%);
    text-transform: uppercase;
}

.btn_secondary:hover,
.btn_primary:hover {
    color: #fff;
}

.btn_secondary:focus,
.btn_primary:focus,
.btn_primary-shdw:focus,
.btn_secondary-shdw:focus,
.btn_buy:focus,
.btn_add-custom:focus,
.btn_custom:focus {
    box-shadow: none;
}

.btn_secondary {
    background: #313c97;
    border-radius: 25px;
    font-size: 16px;
    font-weight: normal;
    padding: 6px 12px;
    letter-spacing: .5px;
    color: rgb(255, 255, 254);
    text-transform: uppercase;
}

.btn_primary-shdw,
.btn_secondary-shdw {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    padding: 4px 12px;
    border-radius: 42px;
    text-transform: uppercase;
}

.btn_buy {
    width: 120px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    text-transform: uppercase;
}

.btn_add-custom:hover,
.btn_buy:hover,
.btn_primary-shdw:hover,
.btn_secondary-shdw:hover {
    color: #fff;
}

.btn_add-custom {
    background: #313c97;
    width: 130px;
    padding: 4px 12px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 26px;
    color: #fff;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    text-transform: uppercase;
}

.btn_custom {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 14px 26px;
    line-height: 1;
    text-transform: uppercase;
}

.cancel_btn:focus {
    outline: none;
    border: 1px solid transparent;
    box-shadow: none !important;
}

.custom-modal .modal-header {
    background-color: #313c97;
    padding: 0 !important;
    color: #322f31;
}

.input__shadow:focus {
    box-shadow: 0 0 0 0.2rem #ec6b29;
    border-color: 1px solid #ec6b29;
}

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

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

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

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

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

.f-18 {
    font-size: 18px;
}

.f-20 {
    font-size: 20px;
}

.f-600 {
    font-weight: 600;
}

.color-theme {
    color: #44489D;
}

.w-80 {
    width: 80%;
}

.dropdown-toggle::after {
    display: none;
}

.tntn_tab_link.active {
    background-color: #cd3ea0 !important;
    color: #fff !important;
}

.h-vh {
    min-height: 80vh;
}

.bg-color {
    background-color: #FCFCFE;
}

.para-1 {
    color: #282B31;
    opacity: 0.7;
    letter-spacing: 0.9px;
    font-weight: 500;
    line-height: 30px;
}

.para-2 {
    color: #676C75;
    letter-spacing: 0px;
    line-height: 1.8;
}

.para-3 {
    color: #232323;
    letter-spacing: 1.26px;
    opacity: 0.8;
    line-height: 1.8;
}

.home-title {
    font-weight: 700;
    letter-spacing: 2.52px;
    font-family: "Cardo-Regular";
}

.allHeading {
    font-size: 20px;
    font-weight: 600;
    font-family: "Cardo-Bold";
    color: #23233f;
    text-transform: capitalize !important;
}

.usrtable thead th {
    padding: .75rem 0 !important;

}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("<?php echo IMAGE_PATH?>dropdown.svg");
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 225px 22px;
    background-repeat: no-repeat;
    outline: none;
}

.main-color {
    background-color: #0262d3;
}

/*-- removing of  by default's password eye icon for edge and ie-- */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}

::-ms-reveal {
    display: none;
}

/*-- removing of  by default's password eye icon for edge and ie-- */

#country_id {
    /* background-position: 355px 14px !important; */
    background-position: 98% 14px !important;
}

/* .select__user__infrm {
     position: relative;
 }
 */
.custom_addForm_control,
.edit_usr_input {
    background-position: 98% 12px !important;
}

.country_id {
    background-position: 98% 12px !important;
}

.disable__select {
    background-image: none !important;
}

.close_modal_div {
    position: absolute;
    right: -4%;
    top: -30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 2px solid #fff;
    opacity: 1;
    cursor: pointer;
}

.custom__modal-dialog {
    top: 10% !important;
}

.modal__dialog__forgot__password {
    top: 0% !important;
    -webkit-box-shadow: 0 6px 12px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 16%);
}

.select2-dropdown {
    z-index: 1 !important;
}

.margin_btn_left {
    margin-left: -20px;
}

.btn-primary-active {
    background-color: #fff;
    color: #282b31;
    border-radius: 5px;
    box-shadow: 0px 3px 6px 0 rgba(40, 43, 49, 0.08);
    padding: 5px 20px !important;
    display: inline-block;
    letter-spacing: 0.40px;
    font-size: 14px;
    font-family: "Cardo-Bold";
}

.btn-register {
    border-radius: 5px;
    box-shadow: 0px 3px 6px 0 rgba(40, 43, 49, 0.08);
    padding: 8px 20px !important;
    display: inline-block;
    letter-spacing: 0.40px;
    font-size: 14px;
    font-family: "Cardo-Bold";
}

.text__blue {
    color: #469af4;
    font-weight: normal;
    font-family: "Cardo-Regular";
    text-decoration: underline;
}

/*================= gLobal CSS ========================*/
#sidebarCollapse {
    /* width: 40px; */
    z-index: 1024;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    outline: none;
    border: none;
    background-color: transparent;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: ease-in0.1s;
    -o-transition: ease-in 0.1s;
    transition: ease-in0.1s;
    position: relative;
}

.bar1,
.bar2,
.bar3 {
    width: 26px;
    height: 2px;
    background: #ffffff;
    margin: 6px 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#side-click-close {
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 0;
    position: fixed;
    left: 0;
    top: 96px;
    z-index: 999;
    display: none;
    backdrop-filter: blur(100px);
}

#side-click-close.active {
    display: block;
    height: 100vh;
    backdrop-filter: blur(3px);
}

/* ------Top Header----- */
.top_header {
    background-color: #FAFAFC;
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.top_header .container {
    padding-right: 5px;
}

.top_lft_ul .lft_li a {
    color: #232323;
    text-decoration: none;
    letter-spacing: 0.81px;
    opacity: 0.8;
    font-weight: 500;
}

.top_rgt_ul .rgt_li {
    margin-right: .7rem;
}

.top_rgt_ul .rgt_li:nth-child(5) {
    margin-right: 0;
}

.left_content {
    width: 100%;
    height: 500px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    margin: 0;
    position: relative;
}

.register__left-content {
    height: 545px !important;
    margin-bottom: -1px;
}

.left_content .discover_logo {
    position: absolute;
    top: 0;
    left: 0;
}

.custom__modal-content {
    border-radius: 10px !important;
}

.radius__top__left-right {
    border-top-left-radius: 8px;
}

.custom_input-group-text {
    background-color: #fff !important;
    border: .05px solid rgb(219, 217, 217);
    border-right: none !important;
}

.b-left-radius {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input__group-customright {
    background-color: transparent !important;
    border: .05px solid rgb(219, 217, 217) !important;
    border-left: none !important;
}

.radius__bottom__right {
    border-bottom-right-radius: 8px !important;
}

input#EmployeeId:focus,
input#exampleInputPassword1:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

input#EmployeeId {
    border-top-right-radius: 8px !important;
}

input#EmployeeId,
input#exampleInputPassword1 {
    border: .05px solid rgb(219, 217, 217);
    border-left: none !important;
}

.custom_form-input {
    border-radius: 0;
    height: 50px;
}

.custom__register-input {
    border-radius: .25rem !important;
}

.custom_form-input:focus {
    border-top: .05px solid rgb(219, 217, 217) !important;
    border-left: .05px solid rgb(219, 217, 217) !important;
    border-right: .05px solid rgb(219, 217, 217) !important;
    box-shadow: none !important;
}

input#exampleInputPassword1:focus {
    border-right: none !important;
}

.b-b-none {
    border-bottom: none !important;
}

.custom_login-form {
    margin-bottom: 0 !important;
}

.radius__top__left-right {
    border-top-left-radius: 8px;
}

.radius__bottom__left {
    border-bottom-left-radius: 8px;
}

.custom_input-password {
    border-right: none !important;
    border-radius: 0 !important;
}

.check-rem-span {
    display: inline-block;
    line-height: 1.2;
    font-size: 13px;
    color: #21212a;
    font-family: "Cardo-Regular";
}

#onForgot,
.remember-btn {
    opacity: 0.9;
    font-size: 13px;
    letter-spacing: 0.47px;
    color: #21212a;
    font-family: "Cardo-Regular";
}

.custom__register-select.form-control:not([size]):not([multiple]) {
    height: calc(2.45rem + 13px);
    font-size: 14px;
    opacity: 0.7;
    color: #828282;
    font-family: "Cardo-Regular";
}

/* --custom  checkbox-- */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 2px;
    background-color: #fff !important;
    border: .5px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input~.checkmark {
    background-color: #ccc;
}

.container-checkbox input~.checkmark {
    background-color: rgb(35, 35, 63);
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked~.checkmark {
    background-color: rgb(35, 35, 63) !important;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-checkbox .checkmark:after {
    left: 5px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.register__checkbox {
    display: inline-block;
    line-height: 1.2;
    font-size: 11px;
    color: rgb(236, 107, 41);
}

.register_link:hover {
    color: rgb(236, 107, 41);
}

.register_link {
    font-weight: bold;
    color: #ec6b29;
    text-decoration: none;
}

.go_back h6 {
    font-family: "DiscoverSans-Book";
    font-size: 18px;
    color: #23233f;
    font-weight: normal;
}

.goToLogin {
    color: #23233f;
    font-weight: normal;
}

.btn.btn-signIn.active {
    background: #ec6b29;
    border-radius: 25px;
    font-size: 20px;
    font-weight: 600;
    padding: 6px 18px;
    letter-spacing: .24px;
    font-family: "Cardo-Regular";
}

/* ======END LOGIN MODAL==== */
/* ======MODAL REGISTER====== */
.padng_right {
    padding-right: 10px;
}

.padng_left {
    padding-left: 6px;
}

.nav_tab_heading {
    padding-right: 16px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative !important;
}

.select {
    position: relative;
}

.custom__select {
    padding-right: 25px;
}

/* ===========CRM======= */
.chevron__right-fa {
    font-size: 12px !important;
}

.navbar {
    z-index: 1 !important;
    padding: .5rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand:hover {
    color: #fff;
}

.logo_purple {
    display: none;
}

.logo_white {
    display: block;
}

.navbar .navbar-nav .nav-item {
    margin-right: .5rem;
    font-weight: normal;
    color: #fff;
    position: relative;
    margin-left: 1.4rem;
}

.navbar .navbar-nav .nav-item a {
    text-decoration: none;
}

#nav-link1 {
    font-size: 12px !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    padding-left: 10px;

}

#Drop-down {
    width: 40vh;
}

.navbar .nav-item .nav-link {
    padding: 4px 0;
    font-size: 16px;
    font-weight: 400 !important;
}

.navbar .nav-item .nav-link,.navbar .nav-item .nav-link i {
    color: #fff !important;
}
.navbar .nav-item .nav-link i{
    margin-right: 3px;
    position: relative;
    bottom: 2px;
}
.downLoadItem{
    cursor: pointer;
}
.downLoadItem i{
    margin-right: 5px !important;
}
.contatctIcon{
    bottom: 0 !important;
    margin-right: 6px !important;
}

.navbar-nav .nav-item .nav-link:hover {
    opacity: 1 !important;
}

.opacity-1 {
    opacity: .9 !important;
}

.navbar .nav-item.active a {
    color: #F26C67;
}

.navbar .nav-item:hover a {
    color: #fff;
}

.navbar .nav-item a.dropdown-item,
.service_dropdown-menu .dropdown-item {
    color: #071331;
    font-weight: 800;
    font-family: var(--fontRailWay);
    font-size: 14px;
    cursor: pointer;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--cyan) !important;
    color: #fff !important;
}

.navbar .nav-item:nth-child(7):after {
    content: none !important;
}

/* ================ */
.middSec {
    padding-top: 92px;
    padding-bottom: 72px;
}

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

.middSec.new {
    padding-top: 82px;
}

.bg-gaps {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mb {
    margin-bottom: 40px;
}

.heading {
    font-size: 40px;
    color: #2A2930;
    opacity: 0.9;
    font-weight: 700;
    letter-spacing: 1.25px;
    padding-bottom: 10px;
    font-family: "Cardo-Regular";

}

.heading-2 {
    font-size: 40px;
    line-height: 1.5;
    color: #282B31;
    opacity: 0.9;
    font-weight: 700;
    letter-spacing: 1.25px;
    padding-bottom: 10px;
    font-family: "Cardo-Regular";
}

.heading__testimonial {
    opacity: 1;
}

.feature__card {
    background: #FCFCFE;
    margin-bottom: 30px;
}

.feature__card-heading {
    letter-spacing: 0.81px;
    line-height: 2;
    opacity: 0.9;
}

.video__content {
    position: relative;
}

.play-btn-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.ytbe_play-btn {
    width: 60px;
    height: 60px;
}

/* ----get-in-touch--- */

.form-box {
    box-shadow: 0px 6px 12px #20212714;
    border-radius: 12px;
    padding: 3.5rem 3rem;
}

.send-input {
    border: 1px solid #bdbdbd;
    border-radius: 6px;

}

.get-intouch-content h3 {
    font-weight: 700;
    color: #282B31;
    letter-spacing: 1px;
    font-family: "Cardo-Regular";
}

/* --------download---- */
.download {
    background-color: blue;
}

.download-heading {
    font-weight: 700;
    letter-spacing: 0.88px;
    font-family: "Cardo-Regular";
}

.downloadcontent-p {
    letter-spacing: 0.48px;
    opacity: 0.8;
    line-height: 30px;
    font-size: 15px;
}


/* ------------footer----------- */

.footer_heading {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize !important;
    margin-bottom: .8rem;
    font-weight: 500 !important;
}

.footer-para {
    letter-spacing: 0.63px;
    opacity: 0.8;
    line-height: 2;
}

.copy-right-p {
    font-size: 12px;
    letter-spacing: 0.22px;
    color: #FFFFFF;
    opacity: 0.8;
}

.footer-icon {
    transform: scale(1);
    transition: .3s linear;
    width: 40px;
    margin-right: 10px;

}

.footer-icon:hover {
    transform: scale(1.2);
}

/* ---------- */
.scrollTop {
    width: 40px;
    height: 40px;
    background-color: #00285e;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    position: fixed;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 500px;
    right: 8px;
    border: none;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    border-radius: 4px;
    transition: 2s ease;
    cursor: pointer;
    color: #fff;
}

.scrollTop.active {
    bottom: 40px;
    visibility: visible;
    opacity: 1;
}

.goog-te-menu2 {
    width: 500px !important;
}

.nav-item .nav-link.bg_active {
    color: #010101 !important;
    padding: 5px 20px !important;
    font-family: "NunitoSans-Bold", sans-serif;
    font-weight: 500;
}

.bg__logo {
    width: 110px;
    height: 110px;
    background-color: #fff;
    border-radius: 20px;
}

.banner__title {
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.44px;
    font-size: 30px;
}

.banner__title-light {
    font-weight: 400 !important;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: 0.40px;
    opacity: 0.9;
    font-size: 30px;
}


.main .container {
    position: relative;
}

.main .container img.bg_phone {
    position: absolute;
    top: -22%;
    right: 0;
    height: 550px;
    z-index: 1;
}

.bg-video__content {
    width: 100%;
    height: 100%;
}

/* -------features----- */
.bg_gaps {
    padding-top: 70px;
    padding-bottom: 70px;
}


.margin-top {
    margin-top: 70px;
}

.max_width-div {
    max-width: 450px;

}

.social-btns .social-btn-color {
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    -o-transition: transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
}
.social-link:hover{
    text-decoration: none;
}
.opacity-0{
    opacity: 0;
}
.social-btn-color {
    transition: -webkit-transform 0s;
    -o-transition: transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
    color: #ffffff;
    border: 0 !important;
    border-radius: 3px !important;
}

.testimonials {
    background-color: #0163E1;
    padding-top: 96px;
    padding-bottom: 96px;
}

.slider__item {
    background-color: #ffffff;
    box-shadow: 0px 10px 30px 0px #0000000D;
    padding: 30px;
}

.owl-carousel .owl-item img.quotes {
    width: 48px;
}

.slider_item_body p {
    font-size: 20px;
    font-weight: 400;
    color: var(--blue-dark);
    font-family: var(--fontMerriweather);
    line-height: 36px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.slider_item_header_l {
    gap: 1rem;
}

.slider_profile_title h5 {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: .3rem;
}

.slider_profile_title p {
    color: #0DA2EF;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
}

.testimonials span .fa-star {
    color: #fff;
}

.owl-theme.test_carousel .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme.test_carousel .owl-dots .owl-dot.active span {
    background: #ffffff !important;
}

.testimonial__card {
    position: relative;
    border-radius: 12px;
    height: 188px;
}

.testimonial__body,
.testimonial___img-div {
    padding: 0 1.4rem;
}

.testimonial__content {
    padding-top: 1rem;
}

.testimonial__content p {
    opacity: 0.8;
    color: #232323;
    line-height: 1.7;
}

.testimonial__card img {
    width: 42px !important;
    height: 42px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 3px 6px 0 rgba(40, 43, 49, 0.16);
    object-fit: cover;
    margin-right: 12px;
}

.review-title {
    color: #232323;
    font-size: 18px;
    font-weight: 600;
}

.review-desig {
    color: #999EA8;
    font-size: 13px;
    line-height: 1;
}

.test--twitr-fa {
    color: #999EA8;
    opacity: 0.5;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 3px !important;
    background: rgba(238, 238, 236, 0.5) !important;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 12px;
    height: 12px;
    background: #61C6C4 !important;
}

.social__share-ul li {
    padding: 4px 8px;
    border: 1px solid rgb(231, 227, 227);
    box-shadow: inset 0px 0.5px 0 0 #e7e8ea,
        inset 0px -0.5px 0 0 #e7e8ea;
    background-color: #ffffff;
}

.social__share-ul li:nth-child(1) {
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    border-right: none;
}

.social__share-ul li:nth-child(3) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: none;
}

.footer-parent .social-btns.social-btns-edit {
    margin-left: 6px;
}

.footer__allLinks li {
    padding-bottom: 5px;
}

.footer__allLinks li a {
    text-decoration: none;
    margin-bottom: 0 !important;
}

.copyrightsec {
    background-color: var(--blue-dark);
    padding: 100px 0 30px;
}

.footer-copyright a {
    text-decoration: none;
    letter-spacing: 0.22px;
    color: #000;
}

.footer-copyright a:hover {
    opacity: 1;
}

.title {
    color: #282b31;
    line-height: 1.43;
    letter-spacing: 0.40px;
}

.sub_title {
    letter-spacing: 0.33;
}

.fontweight_bold {
    font-weight: 900;
}

.fontweight_light {
    font-weight: 400 !important;
}

.para {
    color: rgba(40, 43, 49, 0.8);
    letter-spacing: 0.31px;
    line-height: 1.6;
}

.check__para {
    text-indent: -13px;
}

.check__fa {
    margin-right: 10px;
    color: #188b9e;
}

.para__footer {
    color: #676c75 !important;
}

.para_white {
    color: #fff;
    letter-spacing: 0.31px;
    line-height: 1.89;
}

.fontweight_bold-white {
    font-weight: 800;
}

.testimonial_title {
    color: #999ea8;
    font-size: 14px;
}

.mobile:hover {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mobile {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

/* ------------//-CRM------- */
.pro_img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-top: 6px;
}

.bg_primary {
    background-color: #313c97;
}

.srch_container_fluid {
    top: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    margin-top: 0;
}

.catalog_ul .catalog_list {
    margin: .5rem .5rem .5rem 0;
}

.alert__no__products {
    font-size: 20px;
    color: #23233f;
    padding-left: 15px;
}

.catalog_ul .catalog_list a {
    color: #ffff;
    font-weight: 600;
    font-family: "Cardo-Regular";
    font-size: 16px;
    text-decoration: none;
    padding: .25rem .5rem;
}

.custom_drop_item,
.options_name {
    color: #23233f !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.src_input_text:focus {
    outline: none;
    border: none;
}

.search__form::placeholder {
    opacity: 0.5 !important;
}

.options_name {
    font-family: "Cardo-Regular";
}

.custom__input-group>.form-control:not(:last-child) {
    border-bottom-left-radius: 16px;
}

.custom__input-group>.input-group-append>.input-group-text {
    border-bottom-right-radius: 16px;
}

.quick_search {
    border: none;
    padding: .375rem 0rem .375rem .2rem;
}

.quick_search_append {
    margin-left: -5px;
}

.notification-li {
    position: relative;
}

.notification-Bx {
    position: absolute;
    top: 0px;
    width: 16px;
    height: 16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #ec6b29;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 11px;
}

.total_cart_items {
    color: #fff;
    font-size: 12px;
}

.quick_search:focus {
    box-shadow: none;
    background-color: transparent;
}

.quick_search::placeholder {
    font-size: 13px;
    color: #23233f;
    opacity: .4;
}

.btn_seach {
    padding: .1 .2rem !important;
    font-size: 11px !important;
    box-shadow: 0 6px 12px 0 rgb(0 0 0 / 16%)
}

.input_text_srch {
    background-color: #fff;
    padding: .1rem .3rem;
    border: none !important;
}

.searchForm .custom_search-div {
    max-width: 700px;
    margin-left: -10px;
    width: 650px;
}

.searchForm .custom_search-div .form-control:focus {
    box-shadow: none;
}

.searchForm .custom_search-div .form-control {
    border: none !important;
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
}

.searchForm .custom_search-div .form-control::placeholder {
    color: #23233f;
    opacity: 0.7;
    font-size: 16px;
}

.src_input_text {
    border-top-right-radius: 44px;
    border-bottom-right-radius: 44px;
    background-color: #fff;
    border: none;
}

.search_ul .search_ul_list {
    text-align: center;
}

.search_ul .search_ul_list a>p,
.search_ul .search_ul_list>p {
    font-size: 12px !important;
    font-family: "Cardo-Regular";

}

.quick_srch_menu {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    margin-top: 10px;
    border-radius: 8px;
    position: relative;
}

.catalog_drop_menu {
    width: 230px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 16px;
    margin-top: 15px;
    position: relative;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.catalog_drop_menu .triangle {
    position: absolute;
    top: -17px;
    font-size: 19px;
    left: 10px;
    color: #fff !important;
}

.triangle__mobile-edit {
    position: absolute;
    left: 20px;
    top: -11px;
    font-size: 19px;
    color: #fff !important;
}

.dropdown_li .dropdown-item {
    -webkit-transition: .1s ease-in-out;
    -o-transition: .1s ease-in-out;
    transition: .1s ease-in-out;
}

.dropdown_li .dropdown-item:hover {
    background-color: #313c97 !important;
    color: #ffff !important;
    border-radius: 20px;
}

.dropdown_li {
    display: flex;
    align-items: center;
}

.cvn_right {
    font-size: 12px !important;
    font-family: "Cardo-Regular";
}

/* =======PAGINATION======== */
.pagination_div h6 {
    opacity: 0.8;
    font-size: 14px;
}

.center {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center h6 {
    font-size: 22px;
    color: #23233f;
    opacity: 0.8;
}

.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 1px 20px;
    text-decoration: none;
    transition: background-color .3s;
    border: none;
    margin: 0 4px;
}

.pagination a i {
    font-size: 12px;
}

.pagination a.active {
    border-radius: 8px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    padding: 1px 20px;
    font-family: "DiscoverSans-Medium";

    font-size: 18px;
    font-weight: 600;
}

/* .pagination a:hover:not(.active) {background-color: #ddd;} */
/* ============HOME======== */
.register_link {
    font-weight: bold;
    color: #ec6b29;
    text-decoration: none;
    font-family: 'DiscoverSans-Bold', sans-serif;
}

.home_title {
    font-weight: 600;
    line-height: 1;
    color: #23233F !important;
    font-family: "Cardo-Bold";
}

.home_title-edit {
    color: #fff;
}

.home_login {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 32px;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
    font-family: 'DiscoverSans-Bold;

}

.title__home_sec {
    color: #23233f;
    font-weight: bold;
}

.loginHref {
    color: #ec6b29 !important;
    font-weight: bold;
    text-decoration: none !important;
    font-family: "Cardo-Bold";
}

.right_content {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* ========cvd====== */
.position-relative {
    position: relative;
}

.cvdimg_one {
    position: absolute;
    left: 0;
    top: -30px;
    width: 600px;
}

.cvdimg_two {
    position: absolute !important;
    /* top: 0; */
    bottom: -21%;
    right: 0;
    width: 600px;
    height: auto;
}

.cvd .cvd_title {
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 40px;
    font-family: 'DiscoverSans-Semibold';
}

.cvd_para {
    margin-bottom: 95px;
}

.cvd_para p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.2;
    font-family: "DiscoverSans-Medium", sans-serif;
    font-weight: 500;
}

.text_sm_center>div {
    max-width: 400px;
}

.contact_info:hover {
    color: #fcb116;
}

.contact_info {
    color: #fcb116;
    font-size: 20px;
}

/*=========customer home======= */
.ftr_title {
    font-size: 30px;
    color: #23233f;
    font-weight: 600;
    line-height: 1.31;
    font-family: "Cardo-Regular";
}

.customer_home {
    position: relative;
}

.dcv_home {
    position: relative;
    background-position: top !important;
}

.div_relative_home {
    position: absolute;
    width: 200px;
    left: 45%;
    transform: translateX(-70%);
    bottom: 2%;
    font-size: 14px;
    text-align: justify;
    color: #3d3f44;
    line-height: 1;
}

.banner__customer::before {
    position: absolute;
    content: '';
    width: 230px;
    height: 100%;
    background-color: #313c97;
    top: 0;
    left: 0;
}

.circle__div {
    width: 448px;
    height: 448px;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    border: double 8px transparent;
    background-image: linear-gradient(white, white), radial-gradient(circle at top left, #ffc107, #ec6b29);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.circle__div-title {
    color: #23233f !important;
    text-align: center;
    font-weight: bold;
    width: 320px;
    line-height: 1;
}

.popular__search__card:hover {
    transform: scale(1);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 12%);
}

.popular__search__card {
    width: 100%;
    height: 320px;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.16);
    border-radius: 5px;
    -webkit-transform: scale(.98);
    -ms-transform: scale(.98);
    transform: scale(.98);
}

.card__img {
    padding-top: 30px;
}

.popular__search__card .card__img img {
    width: 230px;
    height: 230px;
    object-fit: contain;
}

/* --signage-- */
.signage {
    height: auto;
    margin-bottom: 175px;
}

.signage .container .signage_div h4 {
    font-size: 30px;
    font-weight: bold;
    color: #23233f;
    letter-spacing: .4px;
    line-height: 1.31;
    font-family: 'DiscoverSans-Bold';
}

.signage .container .signage_div p {
    font-size: 16px;
    line-height: 1.33;
    color: #042948;
    font-weight: 500;
    font-family: "DiscoverSans-Medium", sans-serif;
}

.count_div p {
    font-size: 16px;
    line-height: 1.33;
    color: #042948;
    font-family: "DiscoverSans-Medium", sans-serif;
}

.service {
    background-color: #23233F;
}

.service .service_container {
    transform: translateY(-180px);
    height: 340px;
}

.service .container h4 {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    font-family: "Cardo-Bold";
    text-transform: capitalize;
}

.service .container .service_card {
    border: none;
    height: 450px;
    border-radius: 30px;
}

.service .container .service_card .card-img img {
    height: 182px;
}

.service .container .service_card .card-body {
    position: relative;
}

.service .container .service_card .btnService {
    position: absolute;
    bottom: 0%;
}

.service .container .service_card .card-body h4 {
    color: #23233f;
    font-size: 20px;
    font-weight: 600;
    font-family: "Cardo-Regular";
}

.service .container .service_card .card-body p {
    font-size: 16px;
    color: #23233f;
    line-height: 1.33;
    color: #23233f;
    font-weight: 500;
    font-family: "DiscoverSans-Medium";
    text-align: justify;
}

/* -----resources--- */
.card_resource {
    background-color: #23233F;
    border: none;
}

.card_resource .card-body {
    position: relative;
    height: 180px;
}

.card_resource .card-body h4 {
    color: #fff;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 22px;
    font-family: "Cardo-Regular";
}

.card_resource .card-body p {
    color: #fff;
    line-height: 1.13;
    font-size: 16px;
    font-weight: 500;
    opacity: .8;
}

.card_resource .card-body a {
    position: absolute;
    bottom: 10px;
    color: #fcb116;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    font-family: "Cardo-Regular";
}

.links_box {
    overflow-y: hidden !important;
    background-color: #fff;
    width: 99%;
}

.quick_links_block {
    display: inline-block;
}

.quick_links_block li {
    display: inline-block;
}

.quick_links_block li {
    border-right: 1px solid #23233f;
}

.quick_links li {
    margin: .5rem .5rem 0 0;
}

.quick_links li a {
    padding: 0px 15px 0px 0;
    color: #23233f;
    font-size: 16px;
    font-family: "Cardo-Regular";
}

.quick_links_block li {
    margin-right: 22px;
}

.quick_links li .quick_links_a {
    font-size: 13px !important;
    padding: 0;
}

.quick_links_flex li a {
    color: #313c97 !important;
    font-family: "DiscoverSans-Bold" !important;
}

.social_icon_ul li a img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.social_icon_ul li a img {
    width: 35px;
    height: auto;
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

.footer__padding {
    padding-right: 2.4rem;
}

.social_icon_ul li {
    margin: .5rem 0;
}

.social_icon_ul li a {
    padding: 20px 10px;
}

.social__icons__new {
    width: 45px;
    height: 45px;
    margin-right: 5px;
}

.quick__links_new {
    font-size: 13px;
}

/* =========POST LOGIN====== */
.dcv_logoDiv h6 {
    display: inline !important;
    color: #000000;
    font-weight: normal;
    font-family: "DiscoverSans-Book", sans-serif;
    font-size: 14px;
    line-height: 1 !important;
}

.help_content h6 {
    display: inline !important;
    color: #000000;
    font-weight: 500;
    display: block !important;
    font-family: "DiscoverSans-Medium", sans-serif;
    font-size: 15px;
    line-height: 1.29 !important;
}

.emv_migration {
    background-color: #23233f;
}

.emv_migration .container h2 {
    font-size: 30px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Cardo-Regular";
}

.emv_migration .container .emv_para {
    color: #ffffff;
    line-height: 1.31;
    font-size: 18px;
    opacity: 0.8;
    font-weight: 400;
}

.emv_migration .emv_card {
    background-color: #23233f;
    border: none;
    width: 330px;
}

.emv_card .card-img img {
    height: 320px;
}

.emv_card .emv_card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    font-family: "Cardo-Regular";
}

.emv_migration .container_fluid {
    width: 98% !important;
    border-radius: 8px;
}

.emv_migration .container_fluid .ftr_title {
    font-size: 30px;
    color: #23233f;
    font-weight: 600;
    line-height: 1.31;
    font-family: "Cardo-Regular";
}

.alert__product__status {
    font-size: 13px;
}

.alert__product__status,
.text__danger {
    color: #9B0303 !important;
}

.ftr_card {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    height: 325px;
}

.ftr_card .ftr_cardImg img {
    height: 230px;
    width: 230px;
}

.product_desc {
    height: 80px !important;
}

.product__name {
    font-size: 18px;
}

.custom__btn-add {
    position: absolute;
    bottom: 0;
    right: 50% !important;
    transform: translateX(50%);
    width: 90%;
}

.ftr_card .card-body {
    padding: 0 1.25rem;
}

.ftr_card .card-body p {
    color: #23233f;
    line-height: 1;
    font-weight: 500;
    font-family: "DiscoverSans-Medium";
}

.owl-carousel .owl-item .whats__new__carousel__img {
    width: 230px !important;
}

.owl_img {
    -webkit-box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
}

.btn_ftr:hover {
    color: #fff;
}

.btn_ftr {
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.16);
    color: #fff;
}

.viewAll:hover {
    color: #23233f;
}

.viewAll {
    font-size: 20px;
    color: #23233f;
    font-family: "DiscoverSans-Medium";
    font-weight: 500;
}

.fa.viewAll_i {
    font-size: 12px !important;
    color: #23233f;
    transform: translateY(-2px) !important;
}

.owl_card .owl_cntnt p {
    color: #23233f;
    font-weight: 500;
    font-family: "DiscoverSans-Medium";
    font-size: 18px;
}

/* ======PRIDE DECAL====== */


.btn-container .prev_Btn {
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    left: 0 !important;
}

.btn-container .next_Btn {
    transform: translateY(-50%);
    top: 50%;
    right: 0 !important;
    position: absolute;
}

.prev_Btn,
.next_Btn {
    background: transparent;
    border-color: transparent;
    font-size: 1.75rem;
    cursor: pointer;
    margin: 0 0.25rem;
    text-transform: capitalize;
    letter-spacing: 2px;
    outline: none !important;
}

.prev_Btn i,
.next_Btn i {
    font-size: 16px;
    color: #23233f;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.close.popup-close {
    position: absolute;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -6%;
    top: -9%;
    border-radius: 50%;
    color: white;
    border: solid 2px #ffffff;
    padding: 8px 14px;
    opacity: 1;
    z-index: 1;
}

#watch-video-tour {
    top: 15%;
}

.btn.watch-video-btn:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.headingImg {
    display: none;
}

.hero-banner {
    background-color: red;

}

.banner-content {
    transform: translateY(100%);
}

.swiper {
    height: 615px;
    overflow-x: hidden !important;
    position: unset !important;
    margin-bottom: 50px;
}

.swiper-wrapper {
    position: unset !important;
}

.swiper-scrollbar-drag {
    background: #F26C67 !important;
    border-radius: 0 !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    height: 3px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 85% !important;
    bottom: -9px !important;
}

.swiper-scrollbar {
    background: #ffffff !important;
}

.pinkbg {
    background: #f26c6766;
}

.industry .card img {
    width: 80px;
}

.industry .card {
    border-radius: 20px;
    margin-bottom: 2rem !important;
    height: 270px;
}

.industry .card:hover {
    background-color: #F26C67;
    color: #fff;
    transition-duration: 0.5s;
}

.industry .card:hover .btnoutline_primary {
    border-color: #fff;
    color: #fff;
}

.industry .card.active {
    background-color: #F26C67;
    color: #fff;
}

.featureSec .card.f_card_box {
    margin: auto;
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.featureUser {
    position: absolute;
    bottom: -62px;
    right: -185px;
}

.card.f_card_box h4 {
    font-size: 18px !important;
    text-align: left;
}

.client_say .slider__item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;

}

.client_say .slider_profile_title {
    margin-left: 15px;
}

.client_say .slider_item_body {
    margin-top: 19px;
}

.client_say h2 {
    color: #fff;
    margin-bottom: 4rem !important;
}

.client_say .slider_profile_title p {
    color: #181818;
    opacity: 0.6;
}

/* faq */
.faqs {
    background: #F2F2F8 0% 0% no-repeat padding-box;
}

.category_row {
    margin-top: 33px;
}

.question {
    background-color: #fff;
    margin-bottom: 27px;
    border-radius: 0 20px 0 0;
}

.question-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 28px 40px;
    border-radius: 0 20px 0 0;
}

.faq_haeder {
    letter-spacing: 1.82px;
    color: #2a2930;
    opacity: .8;
    font-size: 26px;
}

.minus-icon {
    display: none;
}

.question-text {
    padding: 0 40px 28px 100px;
    letter-spacing: 1.82px;
    color: #2A2930;
    opacity: .8;
    font-size: 20px;
}

.show-text .question-text {
    display: block;
}

.question-text {
    display: none;
}

button:focus {
    outline: none;
    outline: unset;
}

.arrowIcon {
    width: 60px;
    text-align: left;
}

.show-text .plus-icon {
    display: none;
}

.show-text .minus-icon {
    display: inline;
}

.faq-card-body a {
    color: #F26C67;
    text-decoration: none;

}

article.question.show-text {
    border-left: 4px solid #f26c67;
}

/* Blog */
.widget {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #eee;
}

.widget.search .h6,
.widget.latest-posts .h6 {
    font-size: 1.3rem;
}

.widget.search input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: .95em;
    font-family: open sans, sans-serif;
    font-weight: 400;
    background: 0 0;
}

.widget.latest-posts a {
    display: block;
    color: #555;
    text-decoration: none;
}

.widget.latest-posts .item {
    margin-bottom: 20px;
}

.widget.latest-posts .image {
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    overflow: hidden;
    margin-right: 20px;
}

.post .avatar {
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 10px;
}

.btnPrimary {
    color: #fff;
    margin-left: 16px;
    padding: 8px 16px;
    border: 2px solid #44489d;
    border-radius: 5px;
    background-color: #44489d;
    font-weight: 600;
}

.outlineBtn {
    color: #44489d;
    margin-left: 16px;
    padding: 8px 16px;
    border: 2px solid #44489d;
    border-radius: 5px;
    background-color: #fff;
    font-weight: 600;
}

.outlineBtn:hover {
    background-color: #44489d;
    color: #fff;
}

.all-blog-cards .category {
    padding: 0px 0px;
}

.blog-titles {
    display: inline-block;
    padding: 5px 2px;
    font-size: 16px;
    font-size: 20px;
}

button:focus {
    outline: unset;
    outline: unset;
}

#searchData::placeholder {
    font-weight: 400 !important;
    font-size: 1rem;
    color: gray;
}

.blog_sec_img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 230px;
    width: 100%;
}

/* end blog */
.blogs-cards .card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 20%);
}

.blogs-cards .card:hover {
    -webkit-box-shadow: 2px 6px 25px 6px rgb(0 0 0 / 25%);
    box-shadow: 2px 6px 25px 6px rgb(0 0 0 / 25%);

}

.hide_upcoming_seminars .card.border-0 {
    height: 480px;
    overflow: hidden;
}

.hide_upcoming_seminars .owl-stage.all_upcoming_seminars {
    margin-bottom: 10px;
}

.blogs .blogs-cards .card .card-title {
    line-height: normal;
    color: #f26c67 !important;
    height: 75px;
    text-align: left;
    overflow: hidden;
}

.blogs .blogs-cards .card a.card-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.57;
    letter-spacing: normal;
    color: rgba(0, 1, 19, 0.6);
    text-decoration: none;
    height: 442px;
    overflow: hidden;
}

.blogs .blogs-cards .card img.card-img-top {
    height: 210px;

}

.blogs a {
    text-decoration: none;
    color: rgba(0, 1, 19, 0.6);
}

.blogs a.card-desc:hover {
    color: rgba(0, 1, 19, 0.6);
}

.h-line__orange {
    width: 100px;
    height: 6px;
    border-radius: 3.5px;
    background-color: #f26c67;
    margin: auto;
}

form.web_analysis {
    border-radius: 6px;
    -webkit-box-shadow: 0px 0.5px 14.6px 1.4px rgb(2 4 28 / 10%);
    box-shadow: 0px 0.5px 14.6px 1.4px rgb(2 4 28 / 10%);
    background-color: #f26c67;
    -webkit-transition: all ease-in .5s;
    -o-transition: all ease-in .5s;
    transition: all ease-in .5s;
    color: #fff;
    position: sticky;
    top: 0px;
    padding-bottom: 1rem;
}

.industry .card .dis {
    height: 106px;
    overflow: hidden;
}

.notfound a {
    background: 61C6C4 !important;
    box-shadow: 0px 4px 15px -5px 61C6C4 !important;
}

.heroSlider .slide {
    position: static;
}

.heroSlider .carousel-caption {
    position: absolute;
    left: 10%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
    top: 50%;
    right: unset;
    transform: translateY(-50%);
}

.heroSlider .carousel-item:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

.heroSlider .item {
    height: 100vh;
    position: relative;
}

.heroSlider .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heroSlider .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.heroSlider .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
}

.heroSlider .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}

.heroSlider .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
}

.heroSlider .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
}

.heroSlider .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
}

.heroSlider .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.heroSlider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.heroSlider .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

.heroSlider .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
}

.heroSlider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.heroSlider .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
}

.heroSlider .owl-nav .owl-prev:focus {
    outline: 0;
}

.heroSlider .owl-nav .owl-prev:hover {
    background: #000 !important;
}

.heroSlider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

.heroSlider .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
}

.heroSlider .owl-nav .owl-next:focus {
    outline: 0;
}

.heroSlider .owl-nav .owl-next:hover {
    background: #000 !important;
}

header:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

header:hover .owl-next {
    right: 0px;
    opacity: 1;
}

ul.handright {
    list-style: none;
    padding: 0;
}

ul.handright li {
    padding-left: 1.5em;
}

ul.handright li:before {
    content: "\f0a4";
    font-family: FontAwesome;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.5em;
    color: #F26C67;
}

.card-body.news-body {
    height: 263px;
}

span.ribbon3 {
    display: none !important;
}

/* video */
.play__icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.modal-width {
    max-width: 60%;
}

/* new design */

.custom-container {
    width: 70%;
    margin: auto;
}

.banner-text {
    padding: 200px 0 45px 0px;
}

.banner-text h1 {
    font-size: 4rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.banner-text p {
    margin-bottom: 2rem;
}

p.count-number.mb-3 {
    font-size: 2rem;
    font-weight: 800;
}

.counter hr {
    border-color: rgba(255, 255, 255, 0.26);
}

.banner .counter {
    margin-top: 5rem;
}

.banner .img-container img {
    position: absolute;
    bottom: 0px;
    left: 50%;
}

.aboutSec h4 {
    margin-bottom: 2rem;
}

.aboutSec h4.mb {
    margin-bottom: 1.5rem;
}

.aboutSec p {
    color: #051330;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
    margin-bottom: 1rem;
    line-height: 26px;
    text-align: justify;
}

.work-card p {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #38343D;
    font-family: "Cardo-Bold";
}

.sec-heading {
    font-size: 32px !important;
    color: var(--blue-dark);
    font-weight: 700;
    font-family: var(--fontRailWay);
}

.textLowercase {
    font-size: 32px !important;
    color: var(--blue-dark);
    font-weight: 700;
    font-family: var(--fontRailWay);
    display: inline-block;
}

.sec-heading.color-48 {
    color: #1E334B;
    margin-bottom: 1.2rem;
}

.how-work .sec-card {
    background: #FAFAFC;
    border-radius: 40px;
    padding: 60px 50px;
}

/* service */
.service-sec {
    background-color: #22252E;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.service-sec .sec-heading {
    color: #fff;
    font-size: 40px !important;
}

.service-sec .card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    margin-bottom: 1rem;
    width: 90%;
    min-height: 400px;
    position: relative;
}

.service-sec img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-sec p.card-heading {
    color: #fff;
    letter-spacing: 0.02em;
    font-size: 1.7rem;
    margin-top: 1rem;
    font-family: "Cardo-Bold";
    margin-top: 1.5rem;
    margin-bottom: 1.2rem;
}

.service-sec p {
    color: #fff;
    margin-bottom: 1.2rem;
}

.service-sec a.learnMoreBtn {
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 16px;
}

img.arrowIcon {
    width: 17px;
    margin-left: 10px;
}

.second-card .card {
    position: relative;
    top: 6rem;
}

.five-card .card {
    top: 3.5rem;
}

.morcontent {
    position: relative;
    top: 5rem;
    width: 50px;
    height: 50px;
    background: #31343C;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
}

.morcontent img {
    transform: rotate(90deg);
    width: 19px;
}

/* pricing plaan */
.pricing-plan-sec .card {
    border-color: #DADADA;
    padding: 60px 35px;
    text-align: center;
}

h4.plan-title {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    height: 72px;
}

p.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

p.plan-price span {
    color: #61C6C4;
    letter-spacing: 0.03em;
    font-size: 2rem;
    font-weight: 700;
}

p.plan-time {
    color: rgba(15, 36, 32, 0.5);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.plan-feature {
    padding-top: 3.5rem;
    margin-bottom: 2rem;
}

.plan-feature ul {
    list-style: disc !important;
}

.plan-feature ul li {
    color: #0F2420;
    font-weight: 600;
    font-size: 18px;
    line-height: 50px;
}

.plan-feature ul ::marker {
    color: #0F2420 !important;
}

.btn-black {
    background: #0F2420;
    border-color: #0F2420;
    border-radius: 2px;
    padding: 20px !important;
    border-radius: 2px;
    padding: 15px 25px;
    letter-spacing: .5px;
    color: #fff;
    width: 208px;
    font-family: "PlusJakartaSans";
    margin-top: 2rem;
    margin: auto;
    font-size: 1.2rem;
}

.btn-black:hover {
    color: #fff;
}

.rating-count {
    color: #87918F;
    font-weight: 600;
}

.client_say .slider_profile_title img {
    width: 18px;
    height: 18px;
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.client_say h5 {
    font-family: "PlusJakartaSans";
    margin-bottom: 1rem;
    color: #000;

}

.client_say p {
    color: #0F242080;
}

/* blog */
.latest-blog-sec p.h3 {
    font-family: "PlusJakartaSans";
}

.para-gray {
    color: #171717;
    opacity: 0.5;
    line-height: 30px;
}

.blog-right p.h5 {
    font-family: "PlusJakartaSans";
    font-size: 1.1rem;
    margin-top: 0.7rem;
    margin-bottom: 0.6rem;

}

/* get in touch */
.get-in-touch {
    background-color: #F6F6F6;
}

.getin__touch {
    color: #fff;
}

.get-in-touch h4 {
    color: #fff;
    font-size: 4rem !important;
}

.touch__form {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 50px 38px;
}

.get_form_group {
    position: relative;
}

.get_form_group img {
    position: absolute;
    top: 50%;
    left: 19px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.touch__form label {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.12px;
    color: #0B0B0B;
    margin-bottom: 12px;
}

.touch__input {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    height: 58px;
    border-radius: 10px;
    border: 1px solid rgba(11, 11, 11, 0.5);
    padding-left: 55px;
}

.touch__input--texarea {
    padding-left: 20px;
    padding-top: 20px;
}

.touch__input::-webkit-input-placeholder {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    opacity: 0.5;
}

.touch__input::-moz-placeholder {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    opacity: 0.5;
}

.touch__input:-ms-input-placeholder {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    opacity: 0.5;
}

.touch__input::-ms-input-placeholder {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    opacity: 0.5;
}

.touch__input::placeholder {
    font-size: 14px;
    letter-spacing: 0.116667px;
    color: #0B0B0B;
    opacity: 0.5;
}

.mail-envelope {
    color: #E5BE68;
    font-size: 30px !important;
    position: relative;
    bottom: 2px;
}

.get-in-touch button.btn.btn.btn_primary {
    font-family: "PlusJakartaSans";
    font-weight: 600;

}

/* footer */
.footer-parent p,
.footer-copyright span {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    font-family: var(--fontMerriweather);
}

.bottomLinks {
    gap: 28px;
    flex-wrap: wrap;
}

.bottomLinks li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}

.footerContent {
    padding-top: 70px;
}

.footer-parent .heading {
    font-size: 1.5rem;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--fontRailWay);
    opacity: 1;
}

.topheader {
    transition: all 0.3s ease;
    background-color: var(--primnary-color);
}


.topheader.scrolled {
    background-color:var(--primnary-color);
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.navbar-brand img{
    transition: 0.35s ease-in;
}
.topheader.scrolled .navbar-brand img{
    width: 200px;
}

.page-footer.footer {
    background-color: #121824;
    padding: 25px 0;
}

span.stric {
    color: red !important;
    position: relative;
    bottom: 30px;
}

/* about main page */
.aboutUsMain.scrolling-about {
    overflow-x: hidden;
    height: 100%;
}

.aboutUsMain .mission-head {
    background-color: #44489d;
    width: 192px;
    height: 84px;
    margin: 0 auto;
    border-radius: 47px;
    line-height: 5;
    color: #fff;
    font-size: 17px;
    -webkit-box-shadow: 0 9.5px 25px 5.5px #ececeb;
    box-shadow: 0 9.5px 25px 5.5px #ececeb;
}

.aboutUsMain .vertical-line {
    width: 1px;
    border-left: 4px dashed #cacaca;
    margin: 0 auto;
    height: 100%;
}

.aboutUsMain .mission {
    position: relative;
    left: -572px;
    width: 500px;
    text-align: center;
    top: -33px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: -1px 5px 20px 4px rgb(0 0 0 / 10%);
    box-shadow: -1px 5px 20px 4px rgb(0 0 0 / 10%);
}

.aboutUsMain .vision-head {
    position: relative;
    left: -96px;
    top: 22px;
    -webkit-box-shadow: 0 9.5px 25px 5.5px #ececeb;
    box-shadow: 0 9.5px 25px 5.5px #ececeb;
}

.aboutUsMain .mission-head.values-head {
    position: relative;
    left: -99px;
}

.aboutUsMain .vision {
    position: relative;
    left: 66px;
    width: 500px;
    text-align: center;
    top: -20px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: -1px 5px 20px 4px rgb(0 0 0 / 10%);
    box-shadow: -1px 5px 20px 4px rgb(0 0 0 / 10%);
}

.aboutUsMain .no-mission,
.aboutUsMain .no-vision {
    background-color: #44489d;
    color: #fff;
}

.aboutUsMain .noscroll-about {
    margin-top: 15px;
}

.aboutUsMain .about__us {
    background-color: var(--main-bg-white);
}

.aboutUsMain .mb-28 {
    margin-bottom: 28px;
}

.aboutUsMain .about__us p {
    letter-spacing: 0.99px;
    color: #323442;
    opacity: 0.8;
    font-size: 16px;
}

.aboutUsMain .img-center img {
    border-radius: 40px 0px 40px 0px;
}

.client_logo {
    background-color: #22252E;
}

.client_logo .sec-heading {
    color: #fff;
}

.client_logo .slider_profile.client-logo {
    background-color: #fff;
    height: 170px;
    padding: 1.3rem;
    overflow: hidden;
}

.client_logo .slider_profile.client-logo img {
    max-height: 150px;
}

/* home blog */
.latest-blogs.sec-gap {
    padding-bottom: 40px;
}

.latest-blogs .owl_items {
    background-color: #ffffff;
    position: relative;
    border-radius: 20px;
    position: relative;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    -o-transition: transform .2s;
    transition: transform .2s;
    transition: transform .2s, -webkit-transform .2s;
    margin-bottom: 1rem;
    width: 95%;
    box-shadow: 3px 5px 15px 2px #bdb9b9e0;
    padding-bottom: 10px;
}

.latest-blogs .owl-stage {
    padding-bottom: 2rem;
}

.latest-blogs .owl_items:hover {
    -webkit-box-shadow: 12px 15px 20px 0 rgb(46 61 73 / 15%);
    box-shadow: 12px 15px 20px 0 rgb(46 61 73 / 15%);
}

.latest-blogs .blog_sec_img {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 230px;
    width: 100%;
}

.latest-blogs .owl_items_body {
    padding: 10px 6px 10px 14px;
    overflow: hidden;
}

.latest-blogs .latest-blogs .owl_items_body {
    min-height: 217px;
}

.latest-blogs .owl_items_body .blog-heading {
    height: 60px !important;
    overflow: hidden !important;
}

.latest-blogs .owl_items_body .blog-des {
    min-height: 100px;
}

.latest-blogs .blog-content p {
    letter-spacing: 0.81px;
    color: #000;
}

.latest-blogs .blog-date {
    letter-spacing: 0.9px;
    color: #181818;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1;
    transform: translateY(2px);
}

.latest-blogs .owl_items .owl_items_body img {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    -webkit-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
}

.latest-blogs a {
    text-decoration: none;
}

nav#banner {
    z-index: 9999 !important;
}

.office-address {
    color: #fff;
    font-family: "Cardo-Bold";
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6em;
    background-color: #44489d;
}

p.reading-content.pt-2 {
    padding: 1rem;
}

.social-media a:hover {
    text-decoration: none !important;
}

.departments {
    background-color: #FAFAFC;
}

.departments .card {
    background: #fff;
    border: none;
    padding: 2rem;
    border-radius: 40px;
}

.departments .grid-container {
    display: inline-grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
}

.departments .grid-item {
    padding: 15px;
    font-size: 30px;
    text-align: center;
    margin: auto;
    display: flex;
}

.departments .grid-item img {
    max-width: 250px;
    width: 100%;
}

.top-bg-div {
    background-color: #ffffff;
    min-height: 91px;
    width: 100%;
}

.banner.banner-py {
    padding-top: 56px;
    padding-bottom: 56px;
    background: url("../images/header-banner-png.webp");
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.service-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

.serv-sub-title {
    color: #1E334B;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 24px;
    text-transform: uppercase;
}

.serv-sub-title-sm {
    font-size: 40px;
}

/* Card Container */
.modernCard {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px 25px;
    text-align: left;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    justify-content: space-between;
}

.modernCard .btn_primary {
    width: fit-content;
}

.modernCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.modernCardIcon {
    width: 70px;
    height: 70px;
    margin: 0 0 20px 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #f58925, #dd7c22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(245, 137, 37, 0.4);
}

.modernCardIcon img {
    width: 25px;
}

.sub_Para {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--blue-dark);
    text-align: justify;
    font-weight: 500;
}

.newHeading {}

/* Content */
.modernCardContent h3,
.modernCard h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #1E334B;
    min-height: 47px;
}

.modernCardContent p {
    font-size: 0.95rem;
    /* font-family: var(--fontMerriweather); */
    color: var(--blue-dark);
    line-height: 1.6;
}

.bookkeeping-section {
    margin-top: 60px;
}

.bookkeeping-section .col-md-6 {
    display: flex;
    flex-direction: column;
}

.bookkeeping-block {
    flex: 1;
    padding: 15px 30px;
    border-left: 5px solid #61C6C4;
    background: #f9fafb;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.bookkeeping-block:hover {
    transform: translateY(-4px);
}

.bookkeeping-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1E334B;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.bookkeeping-title::before {
    content: "📌";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #f58925;
}

.bookkeeping-desc {
    font-size: 1rem;
    color: #051330;
    text-align: justify;
    line-height: 1.7;
    margin: 0;
}

/* Alternate background for visual rhythm */
.bookkeeping-block:nth-child(even) {
    background: #fff;
}



.service-content-para {
    margin-top: 40px;
    margin-bottom: 40px;
    line-height: 26px;
    font-weight: 400;
    font-size: 16px;
}

.service-content-para p {
    color: #051330;
    font-size: 16px;
    line-height: 26px;
    text-align: justify;
    font-weight: 400;
}

.serviceFaqs h5 {
    font-size: 32px;
    color: #1E334B;
    font-weight: 800;
    margin-bottom: 1rem;
}

.serviceFaqs p {
    color: #828282;
    line-height: 26px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}

.faqsContent h6.lg {
    color: #1E334B;
    font-size: 32px;
    font-weight: 800;
}

.mt-30 {
    margin-top: 30px;
}

.serve-sm-title {
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 32px;
    font-size: 24px;
    color: #38343D;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 22px;
}

.serve-sm-title-lg {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
}

.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 20px;
}

.service-list li a {
    font-size: 14px;
    line-height: 18px;
    color: #38343D;
    text-decoration: none;
    position: relative;
}

.service-list li a::before {
    position: absolute;
    top: 8px;
    left: -13px;
    content: '';
    width: 6px;
    height: 6px;
    background-color: #61C6C4;
    border-radius: 50%;
    display: none;
}

.service-list li a:hover:before,
.service-list li a.active::before {
    display: block;
}

.touch__form-border {
    border: 1px solid rgba(11, 11, 11, 0.5);
    border-radius: 10px;
    padding: 28px 26px;
    max-width: 397px;
    width: 397px;
}

#service .serviceHeading {
    height: 111px;
    overflow: hidden;
}

#service .serviceDesc {
    height: 141px;
    overflow: hidden;
}

.service-card-item::nth-child(3n) {
    margin-top: 2rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.service_dropdown-menu a {
    display: none;
}

.service_dropdown-menu a:nth-child(1),
.service_dropdown-menu a:nth-child(2),
.service_dropdown-menu a:nth-child(3),
.service_dropdown-menu a:nth-child(4),
.service_dropdown-menu a:nth-child(5),
.service_dropdown-menu a:nth-child(6) {
    display: block;
}

.services_footer-list li {
    display: none;
}

.services_footer-list li:nth-child(1),
.services_footer-list li:nth-child(2),
.services_footer-list li:nth-child(3),
.services_footer-list li:nth-child(4),
.services_footer-list li:nth-child(5),
.services_footer-list li:nth-child(6) {
    display: block;
}

.servicesCards>div {
    display: none;
}

.servicesCards>div:nth-child(1),
.servicesCards>div:nth-child(2),
.servicesCards>div:nth-child(3),
.servicesCards>div:nth-child(4),
.servicesCards>div:nth-child(5),
.servicesCards>div:nth-child(6) {
    display: block !important;
}

.serviceDetail .service-list li {
    display: none;
}

.serviceDetail .service-list li:nth-child(1),
.serviceDetail .service-list li:nth-child(2),
.serviceDetail .service-list li:nth-child(3),
.serviceDetail .service-list li:nth-child(4),
.serviceDetail .service-list li:nth-child(5),
.serviceDetail .service-list li:nth-child(6) {
    display: block;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #fff;
}

/* .blogTitle {
    height: 54px;
    overflow: hidden;
} */

.serviceDetail .serv-sub-title {
    line-height: 41px !important;
}

.dropdown-menu {
    max-width: 350px;
    overflow: auto;
}

#blog .owl-nav {
    display: none !important;
}

.client-profile {
    width: 60px !important;
}

.client_say .owl-item .slider__item {
    height: 290px !important;
}

.footer-text {
    color: #818181;
    opacity: 1 !important;
}

.top-header .footer-icon {
    width: 27px;
}

.top-header .social-media {
    margin-left: 2rem;
}

.corpkit-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    /* required */
    z-index: 1020;
    padding-top: .2rem;
    padding-bottom: .2rem;
}

.moretext {
    display: none;
}

.top-header i.fa.fa-map-marker.pr-2 {
    position: absolute !important;
    left: -3px;
    top: 4px;
}

.fa-envelope_fa {
    font-size: 20px !important;
}

.floating_button {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    right: 10px;
    bottom: 30%;
    border-radius: 29px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    z-index: 4;
}

.floating_button img {
    width: 60px;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}

.floating_button span {
    background-color: #fff;
    color: #000;
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    margin-right: 10px;
    box-shadow: 0px 1px 19px 4px #a5a3a3;
    font-size: 14px;
}

.message_icon {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.message_close_icon {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
    -webkit-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
}

.message_icon.active {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: none;
}

.message_close_icon.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    display: block;
}

.send_message_box {
    /* bottom: -100%; */
    right: -100%;
    position: fixed;
    height: auto;
    overflow-y: auto;
    width: 382px;
    border: 1px solid #44489d;
    border-radius: 20px;
    background-color: #fff;
    -webkit-box-shadow: rgb(0 0 0 / 25%) 0px 3px 18px;
    box-shadow: rgb(0 0 0 / 25%) 0px 3px 18px;
    z-index: 1111;
    -webkit-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.send_message_box.active {
    top: 80px;
    right: 20px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.send_message_header {
    padding: 24px 24px 56px 24px;
    background-color: #44489d;
    border-color: #44489d;
    z-index: 1;
}

.send_message_header h4 {
    color: rgb(240, 240, 241);
    letter-spacing: 2px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Old Standard TT', serif;
}

.send_message_notification {
    margin: -24px 24px 0 24px;
    border-radius: 5px;
    background-color: var(--main-bg-white);
    z-index: 2;
    position: relative;
}

.send_message_notification p {
    padding: 12px 15px;
    line-height: 1.5;
    font-weight: normal;
    font-size: 16px;
    background-color: rgba(13, 34, 86, 0.3);
    font-family: 'Old Standard TT', serif;
}

.formSec {
    background: #fff;
    border-radius: 40px 40px 0px 0px;
    padding-top: 1rem;
    height: 89.5%;
    padding: 2rem;
}

.formSec .form {
    width: 50%;
    height: 60px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.formSec .form .animatedField {
    width: 100%;
    height: 100%;
    color: #000;
    padding-top: 25px;
    border: none;
    outline: none;
}

.formSec .form label {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0%;
    pointer-events: none;
    border-bottom: 1px solid black;
}

.formSec .form label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 3px solid #ed2951;
    bottom: -1px;
    left: 0px;
    transform: translateX(-100%);
    transition: all 0.3s ease;
}

.formSec .content-name {
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all .3s ease;
}

.formSec .form .animatedField:focus+.label-name .content-name,
.formSec .form .animatedField:valid+.label-name .content-name {
    transform: translateY(-150%);
    font-size: 14px;
    color: #212529;
}

.formSec .form .animatedField:focus+.label-name::after,
.formSec .form .animatedField:valid+.label-name::after {
    transform: translateX(0%);
}

.formSec .made {
    position: absolute;

    bottom: 10%;
}

.formSec .made i {
    color: red;
}

.formSec input,
.formSec select,
.formSec textarea {
    font-size: 16px;
    font-weight: 500;
}

.floating_button.closechatBtn.active {
    position: absolute !important;
    width: 40px;
    height: 40px;
    right: 1px;
    top: 2px;
    background-color: #000;
}

.floating_button.closechatBtn i {
    font-size: 24px;
    margin: auto;
}

.enquirymodalbtn {
    cursor: pointer;
}

#enquiryModal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

#enquiryModal .modal-header {
    background-color: #22244e;
    color: #fff;
}

#enquiryModal button.close {
    color: #fff;
    opacity: 1;
}

.testimonial_carousel .item {
    -webkit-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s;
}

.testimonial_carousel .item img {
    height: 240px;
    object-fit: contain;
}

.overlay-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: .8;
}

.our-videos .item img {
    height: 400px;
}

.btn-paly {
    border: none;
    opacity: 1;
    border: none;
    outline: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.home-new .owl-two .item:hover {
    cursor: pointer;
}

.testimonial_carousel .item:hover>.overlay-video {
    background-image: none;
}

button.close.quoteRequestRemove {
    position: absolute;
    right: -22px;
    top: -22px;
    background-color: #000;
    opacity: 1;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    margin: 0px;
}

#quoteRequest .modal-dialog {
    margin-top: 2rem;
}

#quoteRequest .modal-content,#service_request .modal-content{
    background-image: url("../images/serviceBg.png");
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#quoteRequest .form-sec,.common_model_class  .form-sec{
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

#quoteRequest .form-sec label>span {
    color: gray;
}

#quoteRequest .form-sec .btnSubmit {
    background-color: #44489d;
    color: #fff;
    border-color: #44489d;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 25px;
}

#quoteRequest .content,.common_model_class .content{
    position: absolute;
    top: 36%;
    left: 18%;
}

#quoteRequest .content p, .common_model_class .content p {
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
}

#quoteRequest .content p.textBold,.common_model_class .content p.textBold{
    font-weight: 900;

}

section.sec-gap.client_say {
    background-image: url('../images/client-bg.webp');
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.getin__touch {
    background-image: url('../images/get-in-touch.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 50px;
}

.business-consultant {
    background-image: url('../images/business-consultant.webp');
    color: #fff;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 60px;
    font-size: 18px;
}

.latest-blogs a {
    text-decoration: none;
    color: #000;
}

.card-work {
    border: 1px solid #dcd8d8;
    box-shadow: 1px 1px 17px 5px #dcd8d8;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    min-height: 290px;
    position: relative;
    padding-bottom: 3rem;
}

.card-work .card-heading {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "Cardo-Bold";
}

.morecontent span {
    display: none;
}

.morelink {
    display: block;
}

.btn-read {
    background-color: #61C6C4;
    border: 1px solid #61C6C4;
    border-radius: 2px;
    color: #fff;
    width: auto !important;
    height: 38px !important;
    font-size: 16px !important;
    letter-spacing: .5px;
    font-family: "Cardo-Regular";
    position: absolute;
    bottom: 15px;
}

.btn-read:hover {
    color: #fff;
    box-shadow: 2px 2px 15px #c5c4c4;
}

/* faq */
.faq-sec .question {
    border: 2px solid #F6F8F9 !important;
    border-radius: 18px !important;
    margin-top: 20px !important;
}

.faq-sec .question-btn {
    outline: none !important;
    border: none !important;
    background: transparent !important;
    padding: 24px 24px 13px 24px !important;
}

.faq-sec .question-btn:focus {
    outline: none !important;
}

.faq-sec .question-btn p {
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 130% !important;
    letter-spacing: 1px !important;
    color: var(--text-124) !important;
}

.faq-sec .question-text.faq-card-body {
    padding-left: 24px !important;
    width: 84%;
    padding-right: 20px !important;
    padding-bottom: 13px !important;
}

.faq-sec .question-text.faq-card-body .faq_para {
    font-size: 18px !important;
    line-height: 180% !important;
    letter-spacing: 1px !important;
    color: var(--text-124) !important;
}

.faq-sec .question-text.faq-card-body .faq_para a {
    color: var(--blue-light-primary) !important;
}

.faq-sec .question-text.faq-card-body .faq_para a:hover {
    text-decoration: none;
}

.faq-sec .question-text {
    display: none;
}

.faq-sec .show-text .question-text {
    display: block;
}

.faq-sec .minus-icon {
    display: none;
}

.faq-sec .show-text .plus-icon {
    display: none;
}

.faq-sec .show-text .minus-icon {
    display: inline;
}

p.mb-0.faq-title.faq_haeder {
    font-weight: 700 !important;
}

/* banner */
.text-content {
    padding: 165px 0 170px 0px;
}

.banner-hero {
     background-image: url("../../assets/images/heroBg.jpeg");
     width: 100%;
     height: 100%;
     padding-top: 10%;
     padding-bottom: 18%;
     background-repeat: no-repeat;
     background-position: center;
     background-size: cover;
     position: relative;
}
.banner-hero::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(8,8,8,.1);
    pointer-events: none;
    top: 0;
    left: 0;
}

.banner-hero h1 {
    text-transform: uppercase;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.container{
    max-width: 1270px;
}
.banner-hero p {
    color: #FFFFFF;
    font-weight: 300;
    line-height: 1.5;
}
.modal-title{
    font-size: 1.4rem;
    color: #4d4f56;
    padding: 15px;
    font-weight: bolder;
}
.menu_close_modal{
    background-color: var(--primnary-color) !important;
    background: var(--primnary-color) !important;
    width: 50px;
    height: 50px;
    border: 1px solid var(--primnary-color);
    border-radius: 0;
    color: #fff;
    font-size: 35px !important;
    position: absolute;
    top: 2px;
    right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}
.menu_button{
    color: var(--primnary-color);
    border: 1px solid var(--primnary-color);
    background-color: transparent;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    font-weight: bold;
    transition: 0.35s ease-in;
}
.menu_button:hover{
    background-color: var(--primnary-color);
    color: #fff;
    letter-spacing: 1px;
}
.layer_box{
    background-color: rgba(0,0,0,.8);
    border-radius: .5rem;
}
.layer_box hr{
    border-top: 1px solid #fff;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.image_gallery{
    background-color: var(--primnary-color);
    width: 100%;
    padding:30px 0 20px;
}
    .gallery {
      margin-top: 10px;
    }
    .gallery img {
      height: 130px;
      object-fit: cover;
      cursor: pointer;
      border-radius: 0;
    }
    .main-preview img {
      width: 100%;
      height: 600px;
      object-fit: contain;
      border-radius: 5px;
      cursor: pointer;
    }
.custom-prev{
    left: 0 !important;
}
.custom-next{
    right: 0 !important;
}
.custom-next, .custom-prev, .custom-close {
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1 !important;
}
.glightbox-clean .gclose{
    opacity: 1 !important;
}
.gbtn{
    background: transparent;
    background-color: transparent !important;
    outline: 0;
}
.custom-next,.custom-prev,.custom-close i{
    font-size: 42px;
    color: #fff;
}
.custom-next { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.custom-prev { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); }
.custom-close { position: absolute; top: 20px; right: 20px; }
.glightbox-clean .gdesc-inner{ 
    display: none;
    padding: 0;
}
.landing-submit-btn:hover{
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
}
.home_contact{
    background-image: url("../../assets/images/contactBg.jpeg");
    width: 100%;
    background-attachment: fixed;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.home_contact::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(8,8,8,.4);
    pointer-events: none;
}
.home_contact .container{
    padding-top: 10%;
    padding-bottom: 10%;
}
.home_contact h3{
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: .5rem;
    font-family: "Source Sans Pro",sans-serif;
}
.home_contact hr{
    border-top: 1px solid #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.home_contact p{
    color: #fff;
}
.form_outer .flex a{
    color: #fff;
    justify-content: center;
    align-items: center;
}
.form_outer .flex a:hover{
    text-decoration: none;
}
.form_outer form{
    padding: 15px;
    background-color: hsla(0, 0%, 100%, .74);
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}
.form_outer form .form-control{
    margin-bottom: 10px;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #939395;
    font-size: 1.1rem;
    padding: 15px 10px;
    border-radius: 0;
}
.form_outer form textarea.form-control{
    height: 136px;
}
.form_outer form .form-control:focus{
    outline: none;
    background-color: #fff;
}
.map-container {
  position: relative;
  width: 100%;
  height: 800px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Custom location pin */
.pin {
  position: absolute;
  top: 50%;  /* Adjust according to your location */
  left: 50%;
  transform: translate(-50%, -100%);
  cursor: pointer;
  font-size: 32px;
  color: red;
  z-index: 2;
}

/* Info box */
.info-box {
  position: absolute;
  top: 45%; /* Adjust for positioning */
  left: 55%;
  transform: translateY(-100%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 12px;
  min-width: 200px;
  display: none;
  z-index: 3;
}

/* Little triangle pointer */
.info-box::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 20px;
  border-width: 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* Close button */
.info-box .close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

/* Button inside box */
.info-box button {
  margin-top: 10px;
  padding: 6px 12px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}
  #map { height:800px; width:100vw;overflow: hidden; }

    /* Custom popup */
    .custom-popup {
      position: relative;
      padding: 12px 12px 16px 12px;
      border-radius: 10px;
      background: #fff;
      font-size: 13px;
      min-width: 280px;
      line-height: 1.4;
    }
    .custom-popup h3 {
      text-align: center;
      margin-bottom: 8px;
      margin-top: 30px;
      color: #25282b;
      font-size: 1.2rem;
      font-weight: 500;
      font-family: "Source Sans Pro", sans-serif;
    }
    .custom-popup .close-btn {
      position: absolute;
      top: 6px;
      right: 12px;
      background: transparent;
      border: none;
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      color: #333;
    }
    .leaflet-popup-content{
        max-width: 300px !important;
        margin: 0 !important;
    }
    .leaflet-popup-content-wrapper{
     box-shadow: 0 2px 7px 1px rgba(0,0,0,.3) !important;
     border-radius: 8px !important;
     padding: 12px;
    }
    .leaflet-popup-tip{
    box-shadow: 0 2px 7px 1px rgba(0,0,0,.3) !important;
    }
    /* Leaflet tooltip custom style */
.leaflet-tooltip {
  background: black !important;
  color: white !important;
  border: none !important;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 15px;
  font-weight: 500;
}
.leaflet-tooltip::before {
  border-top-color: black !important; /* arrow matches background */
}

    .leaflet-popup-content p{
        margin-top: 0 !important;
        margin-bottom: 3px !important;
        text-align: center;
        color:  #4d4f56;
        font-weight: 400;
        font-family: "Roboto", Arial, sans-serif;
        opacity: 0.8;
    }
    .leaflet-popup-content p.green{
        color: #5cb85c;
    }
    .leaflet-popup-content p.number{
        margin-bottom: 18px !important;
    }
    .menuBtn{
        border: 2px dashed var(--primnary-color);
        color: var(--primnary-color);
        border-radius: 2px;
        font-weight: 400;
        font-family: "Roboto", Arial, sans-serif;
        transition: 0.35s ease-in;
    }
    .menuBtn:hover{
        background-color: var(--primnary-color);
        color: #fff;

    }
.page-footer h6{
    font-size: 1.75rem;
    color: #9c9da5;
    font-weight: 400;
    font-family: "Source Sans Pro",sans-serif;
}
.page-footer p,.page-footer a{
    color: #9c9da5;
    font-weight: 400;
}
.page-footer a{
    font-weight: 300;
}
.page-footer a:hover{
    text-decoration: none;
}
.banner-hero h2 {
    font-size: 3.3rem;
    text-shadow: 3px 2px 3px #999797b3;
}

.banner-hero .img-container img {
    position: absolute;
    bottom: 0px;
    left: 50%;
}

.banner-hero .counter {
    margin-top: 5rem;
}

button.question-btn.w-100.d-flex.justify-content-between {
    text-align: left;
}

.founderContent img {
    max-height: 550px;
}

.founderContent h4 {
    font-weight: 800;
    font-size: 30px;
    color: var(--blue-dark);
    font-family: var(--fontRailWay);
    margin-top: 25px;
    margin-bottom: 10px;
}

.founderContent p {
    font-weight: 400;
    font-size: 16px;
    color: #91BCCE;
    font-family: var(--fontMerriweather);
}

.subTitile {
    color: #13A2F0;
    font-weight: 400;
    font-family: var(--fontMerriweather);
    font-size: 18px;
}

.subTitile.fontSourecePro {
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
}

.subTitile.new {
    color: #91BCCE;
}

.secHeading {
    font-size: 44px;
    font-weight: 900;
    font-family: var(--fontRailWay);
    color: #ffffff;
    text-transform: uppercase;
}

.sec-heading.fontOverpass {
    color: #021137;
    font-weight: 700;
    font-family: "Overpass", sans-serif;
    letter-spacing: -1px;
}

.sec-para {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--fontMerriweather);
}

.leftMargin {
    background-color: #ffffff;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
    /* padding:30px 0; */
    /* margin-left: -128px;
    width: calc(100% + 135px); */
    width: 100%;
    margin-top: 1rem;
    display: flex;
}

.leftMarginLeft {
    flex: 0 0 262px;
}

.leftMarginRight {
    flex: 1;
    padding-left: 30px;
}

/* .leftMargin.leftMarginNew{
    margin-left: -15px;
} */
.faq-container {
    max-width: 800px;
    font-family: var(--fontRailWay);
}

.faq-item {
    border-bottom: 1px solid #EFF5F7;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    font-size: 14px;
    font-family: var(--fontRailWay);
    padding: 16px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 800;
    color: var(--blue-dark);
    transition: all 0.3s ease;
    text-transform: uppercase;
}


.faq-question:hover,
.faq-item.active .faq-question {
    color: #00A5EC;
}

.faq-question span {
    display: inline-block;
    padding-right: 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item .faq-icon.faq-iconBlue img {
        margin-top: 4px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #051330;
    line-height: 1.6;
    text-align: justify;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon.faq-iconBlue {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon.faq-iconBlue.rotate-0 {
    transform: rotate(0);
}

.faq-item.active .faq-icon.faq-iconBlue.rotate-0 {
    transform: rotate(0);
}

.faq-item .faq-icon.faq-iconBlue .arrowUp,
.faq-item.active .faq-icon.faq-iconBlue .arrowDown {
    display: none;
}

.faq-item .faq-icon.faq-iconBlue .arrowDown,
.faq-item.active .faq-icon.faq-iconBlue .arrowUp {
    display: block;
}

.faq-item.active .faq-answer {
    max-height: fit-content;
    padding-bottom: 20px;
    padding-left: 0;
}

.faqsContent h6 {
    font-size: 17px;
    font-weight: 800;
    color: rgb(19, 162, 240);
    font-family: var(--fontRailWay);
}

.faqsContent h6.new {
    font-size: 32px;
    color: #1E334B;
}

.flexCounter {
    display: flex;
    justify-content: center;
    gap: 28px;
    /* Exact 30px gap between items */
    flex-wrap: wrap;
    /* Allows responsive wrapping */
    margin: 0 auto;
    max-width: 100%;
    margin-top: 30px;
    /* margin-right: -14px; */
}

.flexCounterItem {
    background: url("../../assets/images/shadow.svg");
    background-position: center;
    background-color: #F5F5F5;
    background-size: cover;
    background-repeat: no-repeat;
    width: 130px;
    /* Exact width */
    height: 100px;
    /* Exact height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Perfect center alignment */
    text-align: center;
    padding: 18px;
}

.flexCounter.new .flexCounterItem {
    flex: 1 1 0;
    /* Grow and shrink equally, initial width 0 */
    min-width: 130px;
    /* Optional: prevents items from getting too narrow on smaller screens */
    background-image: none;
}

.flexCounterItem h6 {
    font-size: 1.5rem;
    font-weight: 800;
    font-weight: 800;
    margin: 0;
    color: #071331;
    /* Your primary color */
    line-height: 1;
}

.flexCounterItem p {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
    margin: 0;
    color: var(--blue-dark);
    /* Secondary text color */
}

.text-container h3.subHead {
    color: #1E334B;
    font-size: 32px;
    font-weight: 800;
}

.services-section {
    overflow: hidden;
    /* Contain the background */
    padding-top: 96px;
    padding-bottom: 100px;
}

.services-section .sec-para {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}



/* Card styling */
.service-card {
    background: white;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* For z-index stacking */
    z-index: 1;
    /* Above background */
    overflow: hidden;
    /* For any card-inner effects */
    box-shadow: 0px 10px 30px 0px #0000000D;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.row.serviceRow {
    display: flex;
    flex-wrap: wrap;
}

.newCol {
    display: flex;
}

.newColLink {
    margin-top: 56px;
    position: relative;
}

.newColLink:hover {
    text-decoration: none;
}

.serviceRow>.newCol:last-of-type {
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    border-radius: 0;
}

.cyanRightArrow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #00DBFF;
    /* if needed */
    color: #ffffff;
    overflow: hidden;
    transition: 0.35s ease;
}

.cyanRightArrow img {
    transition: 0.8s linear;
}

.newColLink:hover .cyanRightArrow img {
    transform: translateX(7px);
}

.newColLink:hover .cyanRightArrow {
    width: auto;
    padding: 0 16px;
    border-radius: 8px;
}

.arrowText {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translate(-50%, -50%) scale(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: #ffffff;
    font-weight: 800;
}

.newColLink:hover .cyanRightArrow .arrowText {
    position: unset;
    transform: translate(0) scale(1);
    opacity: 1;
}

.service-card img {
    max-height: 230px;
    object-fit: cover;
    height: 100%;
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 16px 20px 16px;
    text-align: center;
    min-height: 250px;
}

.service-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-dark);
    font-family: var(--fontRailWay);
}

.service-card-content p {
    color: #051330;
    line-height: 26px;
    font-family: var(--fontMerriweather);
    margin-bottom: .5rem;
}

.how-work {
    padding-bottom: 38px;
}

.sudoImage {
    position: relative;
}

.sudoImage::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 443px;
    background-color: #EFF5F7;
    left: -92px;
    bottom: -92px;
    z-index: -1;
}

.timeline {
    position: relative;
    margin: 20px 0 40px 0;
    /* enough space for icon and line */
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    /* position exactly in center of icons */
    width: 2px;
    height: 87%;
    background: #FBD242;
    /* Yellow line */
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: #146CDD;
    /* Blue background */
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.timeline-item:first-child .timeline-icon {
    background: #89B5ED;
    /* Lighter blue for first */
}

.timeline-item:last-child .timeline-icon {
    background: #0A3D91;
    /* Lighter blue for first */
}

.timeline-content h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-dark);
    font-family: var(--fontRailWay);
}

.timeline-content p {
    margin: 2px 0 0 0;
    font-family: var(--fontMerriweather);
    font-size: 14px;
    line-height: 24px;
    color: #051330;
    max-width: 477px;
}

.pricing {
    /* padding-top: 65px; */
    padding-bottom: 95px;
}

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

.plansContainer {
    padding-left: 80px;
    padding-right: 80px;
    width: 100%;
}

.price_card {
    box-shadow: 10px 10px 50px 0px #00000012;
    padding: 26px 18px;
    background-color: #ffffff;
    margin-top: 40px;
}

.price_card.active {
    background-color: #146CDD;
    box-shadow: 10px 10px 50px 0px #00000012;
}

.price_card .tag {
    border-radius: 6px;
    background-color: #FFFFFF;
    padding: 0 8px;
    height: 28px;
    color: #146CDD;
    font-size: 14px;
    font-weight: 600;
    font-family: "Source Sans 3", sans-serif;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price_card h3 {
    font-weight: 900;
    font-size: 24px;
    color: #021137;
    margin-bottom: 1.2rem;
}

.price_card.active h3 {
    color: #ffffff;
}

.price_card p {
    color: #02113799;
    font-size: 15px;
    font-family: var(--fontMerriweather);
    margin-bottom: 28px;
    font-weight: 400;
}

.price_card.active p {
    color: #ffffff;
}

.price_card ul li {
    gap: 5px;
    color: #021137;
    font-size: 13px;
    font-family: var(--fontMerriweather);
    margin-bottom: 1rem;
}

.price_card.active ul li {
    color: #ffffff;
}

.dashed-border {
    margin-top: 1rem;
    margin-bottom: .6rem;
}

/* .price_card.active .dashed-border{
    border-top: 1px dashed #ffffff;
} */

.price_card .amout {
    color: #021137;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.price_card.active .amout {
    color: #ffffff;
}

.price_card .amout span {
    font-size: 14px;
    font-weight: 700;
    color: #02113799;
    text-transform: uppercase;
    font-family: var(--fontMerriweather);
}

.price_card.active .amout span {
    color: #ffffff;
}

.price_card a.bottom_button {
    border: 1px solid #146CDD;
    color: #146CDD;
    width: 100%;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 24px;
}

.price_card.active .bottom_button {
    background-color: #00DBFF;
    color: #ffffff;
    border: 1px solid #00DBFF;
}

.color-828282 {
    color: #828282;
}

a.bottom_button img {
    margin-left: 3px;
    transition: 0.35s ease-in;
}

a.bottom_button:hover {
    color: #146CDD;
}

a.bottom_button:hover img {
    transform: translateX(6px);
}

.videSection {
    background-color: #EFF5F7;
    padding-top: 95px;
}

.playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.playBtn img {
    position: absolute;
    top: -7px;
    left: -1px;
}



.quickQuestion.bgNone {
    background-image: none !important;
    padding-bottom: 90px;
}

.quickQuestion h5 {
    font-size: 45px;
    margin-bottom: 1rem;
    font-weight: 900;
    color: var(--blue-dark);
    text-transform: uppercase;
}

.quickQuestionContent {
    padding: 60px 45px;
    box-shadow: 10px 10px 30px 0px #00000008;
    /* max-height: 481px;
    min-height: 480.23px; */
    overflow-y: auto;
    height: 100%;
}

.quickQuestion.bgNone .quickQuestionContent {
    padding: 55px 45px;
    max-height: 634px;
    min-height: 634px;
}

.quickQuestion.bgNone .quickQuestionContentAuto {
    max-height: 100%;
    min-height: auto;
}

.contactFormBox {
    background-color: #146CDD;
    padding: 55px;
    height: 634px;
}

.contactFormBoxAuto {
    height: 690px;
}

.quickQuestion .contactFormBox h5 {
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
}

.quickQuestion.bgNone h5 {
    font-size: 40px;
}

.contactFormBox p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--fontMerriweather);
    margin: 20px 0 26px;
}

.contactFormBox .form-control,
.contactFormBox textarea {
    height: 52px;
    border: 2px;
    border: 1px solid transparent;
}

div.form-group {
    margin-bottom: .75rem;
}

.contactFormBox .form-control:focus,
.contactFormBox textarea:focus {
    outline: none;
    border: 1px solid var(--blue-dark);
}

.contactFormBox .form-control::placeholder,
.contactFormBox textarea::placeholder {
    color: #828282;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}

.contactFormBox textarea.form-control {
    height: 168px;
}

.form-control.heightArea {
    height: 180px;
}

.btn.btn_primary.bgCyan {
    background: #00DBFF;
    border: 1px solid #00DBFF;
}

#submit_contact_questionnaireForm .form-control,
#questionnaireForm .form-control {
    height: 45px !important;
    font-size: 16px !important;
}

#submit_contact_questionnaireForm .form-control:focus,
#questionnaireForm .form-control:focus {
    border-color: #146CDD !important;
    box-shadow: none !important;
}

#submit_contact_questionnaireForm .form-control.heightArea,
#questionnaireForm .form-control.heightArea {
    height: 120px !important;
}

/* Floating label styles */
.floating-label {
    position: relative;
    margin-bottom: 1rem;
}

.floating-label .form-control {
    /* keep default padding but add a little left padding so label doesn't collide with text */
    padding-left: 12px;
    padding-right: 12px;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    pointer-events: auto;
    transition: all 0.15s ease;
    cursor: text;
    background: transparent;
    padding: 0 4px;
}

.floating-label label span {
    color: red;
    font-size: 18px !important;
    font-weight: bold !important;
    display: inline-block;
}

/* Float label to top-left when focused or when input has value (.filled toggled by JS) */
.floating-label.focused label,
.floating-label.filled label {
    top: -8px;
    left: 8px;
    transform: none;
    font-size: 12px;
    color: #146CDD;
    background: #fff;
    line-height: 1;
}

/* For textarea, keep the same behavior (label centers vertically in tall box) */
.floating-label textarea.form-control {
    padding-top: 14px;
    padding-bottom: 14px;
}

.news {
    padding-top: 100px;
    padding-bottom: 100px;
}

.newsLink {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.newsLink:hover {
    text-decoration: none;
}

.newsCard {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.newsCard.card {
    border-radius: 0;
    border: 0;
    box-shadow: 0px 10px 30px 0px #0000000D;
}

.newsCard.card .newsContent {
    padding: 24px 32px 15px 32px;
}

.newsCard.card .newsContent h3 {
    color: var(--blue-dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
}

.newsCard.card .newsImg {
    overflow: hidden;
    width: 100%;
    height: 215px;
}

.newsCard.card .newsImg img {
    width: 100%;
    height: 100%;
    transition: 0.40s linear;
}

.newsLink:hover .newsCard.card .newsImg img {
    transform: scale(1.3);
}

.newsCard.card .newsContent p,
.newsCard.card .newsContent p span {
    color: #828282;
    font-size: 13px;
    font-family: var(--fontMerriweather);
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.locationBox {
    background-color: #055AC9;
    /* greenish */
}

.emailBox {
    background-color: #0163E1;
    /* blue */
}

.contactBox {
    background-color: #0163E14D;
    /* red */
}

.locationBox .div,
.emailBox .div,
.contactBox .div {
    gap: 12px;
}

.locationBox .div img,
.emailBox .div img,
.contactBox .div img {
    position: relative;
    bottom: 2px;
}

.locationBox .div h4,
.emailBox .div h4,
.contactBox .div h4 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    line-height: 26px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.locationBox .div a,
.emailBox .div a,
.locationBox .div p,
.emailBox .div p,
.contactBox .div p {
    font-size: 16px;
    font-weight: 400;
    font-optical-sizing: auto;
    font-family: var(--fontMerriweather);
    color: #ffffff;
    line-height: 26px;
    margin-bottom: 0;
    font-variation-settings:
        "wdth" 100;
}

.contactBox .div a {
    font-weight: 400;
    font-size: 16px;
    font-weight: 400;
    font-optical-sizing: auto;
    color: #ffffff;
    line-height: 26px;
    margin-bottom: 0;
    font-variation-settings:
        "wdth" 100;
}

.social-media-footer {
    /* Ensure proper alignment of icons and text */
    align-items: center;
}

.social-icon {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon img {
    transition: transform 0.3s ease;
}

.platform-name {
    position: absolute;
    bottom: -20px;
    font-size: 14px;
    color: #fff;
    /* Adjust color as needed */
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 600;
}

.social-icon:hover .platform-name {
    opacity: 1;
    transform: translateY(0);
}

.social-icon:hover img {
    transform: translateY(-5px);
    /* Optional: makes icon lift up slightly */
}

.social-icon:hover img {
    transform: translateY(-5px);
    transition: transform 0.2s ease;
}

.social-icon:hover .platform-name {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease 0.1s;
    /* 0.1s delay */
}

/* Optional: Add color effects on hover */
.social-icon:hover {
    color: #4267B2;
    /* Facebook blue */
}

.social-icon .platform-name {
    color: #fff;
    /* X/Twitter black */
}

input.subscRiptionInput {
    border-radius: 2px;
    height: 52px;
}

.subscRiptionGroup {
    margin-bottom: 13px;
}

.f-16 {
    font-size: 16px !important;
}

.relativeTopBannerContent {
  position: relative;
  width: 100%;
}

.banner-img {
  width: 100%;
  height: 460px;       /* fixed banner height */
  object-fit: cover;   /* ensures the image covers nicely */
  display: block;
}

.topBannerSection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;        /* cover the entire image area */
  display: flex;
  align-items: center;  /* vertical center */
  justify-content: center; /* horizontal center (optional) */
  background: url("../../assets/images/overlay.png") no-repeat center/cover;
}

.bannerContent {
  text-align: center;
  color: #fff; /* or your theme color */
}


.topBannerSection.postBg {
    background-image: url("../../assets/images/postBg.png");
    height: 593px;
}

.topBannerSection.contactBg {
    background-image: url("../../assets/images/contactUs.png");
}


.topBannerSection.blogsBg {
    background-image: url("../../assets/images/blogsBg.png");
}

.topBannerSection.pricingBg {
    background-image: url("../../assets/images/priceBg.png");
}

/* .topBannerSection.serviveDetailsBg {
    background-image: url("../../assets/images/serviceDetails.png");
} */

.topBannerSection.requestQtn {
    background-image: url("../../assets/images/requestQtn.png");
}

.topBannerSection h1 {
    font-size: 65px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: .2rem;
}

.topBannerContent {
    /* margin-top: 140px; */
}

.breadcrumb {
    --bs-breadcrumb-divider: url("../../assets/images/arrightBig.svg");
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
}
.relativeTopBannerContent{
    height: 100%;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: #ffffff;
    font-size: 20px;
    font-family: var(--fontMerriweather);
    /* opacity: 0.9; */
}

.breadcrumb-item.active {
    color: #ffffff;
    font-size: 20px;
    font-family: var(--fontMerriweather);
    opacity: 1;
}

.breadcrumb-item a:hover {
    text-decoration: none;
}

.breadcrumb-item a img {
    position: relative;
    bottom: 2px;
    margin-right: 6px;
}

.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    content: '';
    background-image: var(--bs-breadcrumb-divider);
    background-repeat: no-repeat;
    background-size: 12px 12px;
    /* Adjust as needed */
    width: 12px;
    height: 12px;
    margin: 0 0.5rem;
    vertical-align: middle;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
}

.maxWidthPara {
    max-width: 450px;
}

.contactTexts {
    max-width: 570px;
    width: 100%;
    height: 224px;
    box-shadow: 0px 10px 30px 0px #0000000D;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    bottom: -300px;
    left: 50%;
    transform: translateX(-50%);
    /* background-image: url("../../assets/images/get-in-touch.webp"); */
    background-color: #4682B4;
    border-radius: 35px 0px 35px 0px;
}

.contactTexts h6 {
    color: white;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}

.contactTexts h3 {
    color: white;
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
}

.contactTexts p {
    color: whitesmoke;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: var(--fontMerriweather);
}

.contactFormSection {
    padding-top: 192px;
    padding-bottom: 80px;
    margin-top: 20vh;
}

.contactFormSection p {
    font-size: 16px;
    line-height: 2em;
}

.contactFormBox.new {
    height: auto;
}

.contactFormBox.new h5 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.bottomAddress {
    background-color: #EFF5F7;
    padding: 24px;
    width: 60vh;
}

.bottomAddress h5 {
    font-size: 20px;
    color: #1E334B;
    font-weight: 800;
    margin-bottom: 30px;
}

.bottomAddress a img {
    margin-right: 10px;
}

.bottomAddress a {
    font-size: 18px;
    font-weight: 400;
    color: #1E334B;
    transition: 0.35s ease;
}

.bottomAddress a:hover {
    text-decoration: none;
    color: var(--blue-primary);
    font-weight: 500;
}

.bottomAddress .mid {
    margin: 18px 0;
}

.planBg {
    padding-top: 80px;
    background-color: #EFF5F7;
}

.bg-lightBlue {
    background-color: #EFF5F7;
}

.plansOverlay {
    position: relative;
}

.plansOverlay::before {
    position: absolute;
    content: '';
    width: 100%;
    height: calc(100% - (95px + 52px + 20px));
    z-index: -1;
    pointer-events: none;
    top: 0;
    left: 0;
    background-color: #EFF5F7;
}

.blogBannner {
    background-image: url("../../assets/images/blogBg.png");
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 80px;
}

.text-blue {
    color: #91BCCE !important;
}

.blogSingleCard {
    margin-top: 38px;
    box-shadow: 0px 10px 30px 0px #0000000D;
}

.blogSingleCard:hover {
    text-decoration: none;
}

.blogSingleCard:hover .btn_primary::before {
    width: 100%;
}

.blogSingleCard:hover .btn_primary img {
    transform: translateX(10px);
}

.blogSingleCard h3 {
    color: #1E334B;
    font-size: 32px;
    line-height: 37px;
    font-weight: 800;
}

.blogSingleCard .info {
    color: #828282;
    font-size: 13px;
    margin: 15px 0;
}

.blogSingleCard p {
    color: #828282;
    line-height: 26px;
    font-weight: 400;
}

.postDateText,
.postDateText span {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}

.shareSection {
    background-color: #EFF5F7;
}

.shareSection ul {
    gap: 13px;
    margin-bottom: 0;
    padding: 20px 0;
}

.shareSection ul li {
    color: #1E334B;
    font-weight: 700;
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sharePlatforms {
    color: #1E334B;
    font-weight: 400;
}

.latestNews3 {
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.latestNews3::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 78%;
    background-color: #146CDD;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.add-comment {
    background-color: #0163E1;
    border-radius: 2px;
    padding: 64px;
}

.form-control {
    height: 52px;
    border-radius: 2px;
    background-color: #ffffff;
    color: #495057 !important;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--fontMerriweather);
}

#nav-link1:focus,
#nav-link1:hover {
    background-color: #00A5EC !important;
    color: white !important;
}

#addCommentForm textarea {
    height: 168px;
}

.form-control::placeholder {
    color: #828282;
    font-weight: 400 !important;
    font-size: 16px;
    font-family: var(--fontMerriweather);
}

#addCommentForm h4 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
}

#addCommentForm P {
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--fontMerriweather);
    margin: 25px 0;
}

.subPara {
    color: #91BCCE;
    font-size: 18px;
    font-weight: 400;
}

.custom-box.box-1,
.custom-box.box-3 {
    box-shadow: 0px 10px 30px 0px #0000000D;
    background-color: #ffffff;
    padding: 25px;
    transition: 0.35s ease-in;
}

.custom-box.box-1:hover,
.custom-box.box-3:hover {
    background-color: #146CDD;
}

.custom-box.box-1:hover h3,
.custom-box.box-3:hover h3,
.custom-box.box-1:hover p,
.custom-box.box-3:hover p {
    color: #ffffff;
}

.custom-box.box-2 {
    padding: 38px 25px;
}

.custom-box.box-2 {
    box-shadow: 0px 10px 30px 0px #0000000D;
    background-color: #146CDD;
}

.custom-box h3 {
    color: #1E334B;
    font-size: 20px;
    font-weight: 800;
    margin-top: .6rem;
    transition: 0.35s ease-in;
}

.row.no-equal-height {
    align-items: flex-end !important;
}

.custom-box p {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
    line-height: 26px;
    color: #828282;
    margin-bottom: 0;
    transition: 0.35s ease-in;
}

.serviceBoxViews {
    position: relative;
}

#serviceBoxViews {
    background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 60%, #ffffff 100%);
    padding: 70px 0;
}

.serviceBoxViews::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 86%;
    bottom: 0;
    left: 0;
    background-color: #EFF5F7;
}

.verticalLineContent {
    padding-left: 25px;
    border-left: 5px solid #89B5EE;
    margin-bottom: 50px;
}

.verticalLineContent.mb-0 {
    border-left: 5px solid #146CDD;
}

.verticalLineContent h3 {
    font-size: 18px;
    font-weight: 800;
    color: #1E334B;
    margin-bottom: 1rem;
}

.verticalLineContent p {
    line-height: 26px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
    color: #828282;
}

.color-828282 {
    color: #828282;
}

.quoteText {
    color: #1E334B;
    font-size: 20px;
    line-height: 26px;
    font-family: var(--fontMerriweather);
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('../../assets/images/dropdown.svg') no-repeat right 10px center;
  background-size: 16px 16px;
  padding-right: 40px;
  width: 100%;
  cursor: pointer;
  background-color: #ffffff;
  font-family: var(--fontMerriweather);
  font-weight: 500 !important;
  height: 52px;
}

/* when the selected option is the disabled placeholder, make it grey */
.custom-select:has(option:checked[disabled]),
.custom-select:has(option:checked[value=""]) {
  color: #828282;
}

/* (optional) dropdown list colors – not fully consistent across browsers */
.custom-select option[disabled] { color: #828282; }
.custom-select option:not([disabled]) { color: #8E9092; }

/* Optional: Hide the native arrow in IE */
.custom-select::-ms-expand {
    display: none;
}

.blogSingleImage {
    max-height: 351px;
}

.topSection {
    margin-top: -74px;
}

@-webkit-keyframes pulse {

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

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

@keyframes pulse {

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

    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}

.post-comments h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--blue-dark);
}

.post-comments h3 .countComment {
    display: inline-block;
    background-color: #ededed;
    border-radius: 30px;
    padding: 2px 20px;
    color: #021137;
}

.post .title.titleNew {
    color: var(--blue-dark);
    display: flex;
    flex-direction: column;
}

.post .title.titleNew span.date {
    color: var(--text-gray);
}

.comment-body {
    border-bottom: 1px solid #eee;
    margin: 20px 0 0 0;
}

.comment-body p {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.comment {
    margin-bottom: 42px;
}

.getInTouch {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    right: -40px;
    color: #fff !important;
    background-color: #ffc107;
    border-color: #ffc107;
    z-index: 10;
    font-weight: 700;
    animation: colorCycle 4s infinite ease-in-out;
    transition: background-color 1s ease-in-out;
    border-radius: 2px;
}

/* Animation Keyframes */
@keyframes colorCycle {
    0% {
        background-color: #f58925;
        /* Vibrant Orange */
    }

    25% {
        background-color: #e63946;
        /* Bold Reddish */
    }

    50% {
        background-color: #007bff;
        /* Bright Blue */
    }

    75% {
        background-color: #6f42c1;
        /* Vivid Purple for contrast */
    }

    100% {
        background-color: #f58925;
        /* Back to Orange */
    }
}

.header-divider {
    height: 4px;
    width: 80px;
    border-radius: 2px;
}

.icon-container {
    position: relative;
    display: inline-block;
}

.financial-icon {
    transition: transform 0.3s ease;
}

.animated-line {
    animation: pulseOpacity 2s infinite alternate;
}

@keyframes pulseOpacity {
    0% {
        fill-opacity: 0.2;
    }

    100% {
        fill-opacity: 0.5;
    }
}

.feature-card {
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.feature-card h5 {
    color: var(--text-1E334B);
    font-weight: 600;
}

.feature-card p {
    color: var(--blue-dark);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hover-grow:hover {
    transform: scale(1.01);
}

.section-highlight:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
    border-radius: 3px;
}

.cta-pulse {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.cta-pulse:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-pulse:hover:after {
    transform: translateX(100%);
}

.display-4 {
    color: var(--text-1E334B);
    font-weight: 900;
}

.lead {
    line-height: 1.7;
    font-size: 16px !important;
    color: var(--blue-dark);
}

.lead1 {
    font-size: 20px;
}

.subtext {
    color: var(--text-1E334B);
    font-weight: 900;
}

.compilation-services {
    background-color: #F8FAFC;
}

.section-title {
    font-weight: 900;
    font-size: 3.5rem;
    position: relative;
    display: inline-block;
}

.text-color {
    color: var(--blue-dark);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #146CDD;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.serviceCard {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #E9ECF1;
}

.serviceCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 108, 221, 0.1);
    border-color: rgba(20, 108, 221, 0.3);
}

.serviceCard h4 {
    font-weight: 700;
    color: var(--blue-dark);
    min-height: 57px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--blue-dark);
    line-height: 1.6;
}

.feature-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #146CDD;
    font-size: 1.5rem;
    line-height: 1;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #E9ECF1;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 108, 221, 0.1);
}

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h5 {
    min-height: 48px;
    font-weight: 700;
}

.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(20, 108, 221, 0.3);
}

.font-xtra-bold {
    font-weight: 900;
}

.font-bold {
    font-weight: 700;
}

.textBlue {
    color: var(--text-1E334B) !important;
}

.compilation-process {
    background-color: #f8fafc;
}

.process-section-title {
    margin-bottom: 1rem;
    position: relative;
}

.process-section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #146CDD;
    border-radius: 2px;
}

.process-section-subtitle {
    color: #5A6D80;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Cards */
.process-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecf1;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 108, 221, 0.1);
    border-color: rgba(20, 108, 221, 0.3);
}

.process-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #146CDD;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #146CDD;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-title {
    color: #1E334B;
    margin-bottom: 15px;
    font-weight: 600;
}

.process-step-description {
    color: #5A6D80;
    line-height: 1.6;
    margin-bottom: 0;
}

.bookkeeping-descNew {
    position: relative;
    padding-left: 30px;
}

.bookkeeping-descNew::before {
    content: "📌";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #f58925;
}

.moderCards a:hover {
    text-decoration: none;
}

.financial-service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid #e9ecf1;
    height: 100%;
}

.financial-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 108, 221, 0.1);
    border-color: rgba(20, 108, 221, 0.3);
}

.service-header {
    margin-bottom: 20px;
    text-align: center;
    min-height: 133px;
}

.financial-service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background-color: rgba(20, 108, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146CDD;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.financial-service-card:hover .service-icon {
    background-color: rgba(20, 108, 221, 0.2);
    transform: scale(1.1);
}

.service-subtitle {
    color: var(--blue-dark);
    font-size: 0.9rem;
    margin-top: -5px;
    margin-bottom: 15px;
}

.service-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--blue-dark);
    line-height: 1.5;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #146CDD;
    font-size: 1.5rem;
    line-height: 1;
}

.financial-service-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-1E334B);
}

/* Additional Info Card */
.info-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9ecf1;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(20, 108, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146CDD;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.our-process .process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.our-process .process-step {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.our-process .process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 108, 221, 0.1);
}

.our-process .step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #146CDD;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.our-process .step-content {
    padding-left: 60px;
    width: 100%;
}

.our-process .step-icon {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(20, 108, 221, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146CDD;
    font-size: 1.5rem;
}

.our-process .step-connector {
    position: absolute;
    bottom: -30px;
    left: 50px;
    width: 2px;
    height: 30px;
    background-color: #146CDD;
    opacity: 0.3;
}

.our-process .process-step:last-child .step-connector {
    display: none;
}

.our-process .process-step h3 {
    color: var(--text-1E334B);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.our-process .process-step p {
    color: var(--text-1E334B);
    margin-bottom: 0;
}

/* Make nav tabs clean and distinct */
#servicesTab.nav-tabs {
    border-bottom: 0;
    justify-content: center;
}

#servicesTab.nav-tabs .nav-link {
    color: #495057;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border: 1px solid #3498db;
    border-radius: 0;
    transition: all 0.3s ease;
}

#servicesTab.nav-tabs .nav-link:hover {
    border-color: #3498db;
    color: #3498db;
    background-color: #f8f9fa;
}

#servicesTab.nav-tabs .nav-link.active {
    color: #fff;
    background-color: #3498db;
    border-color: #3498db #3498db #fff;
    border-radius: 0.25rem 0.25rem 0 0;
}

.topModalLink {
    font-weight: bold;
    font-size: 18px;
    color: var(--blue-primary);
    transition: 0.3s ease-in;
}

.topModalLink:hover {
    text-decoration: none;
    color: var(--cyan);
}

.CustomIcon {
    width: 31px;
    height: 31px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #39425A;
    color: #ffffff;
}

.CustomIcon:hover {
    color: #ffffff;
}

.blueLinkedin {
    width: 31px;
    height: 31px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #CCEDFB;
    color: #00A5EC;
}

.blueLinkedin:hover {
    color: #00A5EC;
    transform: translateY(-8px);
}
.custom-nav-left{
    transform: rotate(180deg);
}
.custom-nav-left,.custom-nav-right{
    width: 32px !important;
    height: auto !important;
}
button.owl-prev.disabled,button.owl-next.disabled{
    cursor: not-allowed !important;
    pointer-events: none;
}
.landing-btns a{
    border: 1px solid #fff !important;
    border-radius: 12px !important;
    display: inline-block;
}
/* .serviceMainImage{
    margin-top: 100px;
} */
/* =========media Query======= */
@media (min-width: 310px) {
    .landing-submit-btn {
        display: inline-block;
        color: #fff;
        background-color: var(--primnary-color);
        font-weight: 700;
        padding: 15px 10px;
        border-radius: 4px;
        border: none;
        white-space: nowrap;
        overflow: hidden;
        transition: all .2s;
    }
    .landing-btns {
        margin: auto;
        width: auto;
    }
}
@media (min-width: 370px) {
    .landing-submit-btn {
        display: inline-block;
        color: #fff;
        background-color: #00285e;
        font-weight: 700;
        padding: 14px 30px;
        border-radius: 4px;
        border: none;
        transition: all .2s;
    }
}
@media (min-width: 600px) {
  .form_outer{
        width: 600px;
        margin-left: auto;
        margin-right: auto; 
   }
}
@media (min-width:768px) {

    /* =======MODAL REGISTER===== */
    .modal__register {
        max-width: 700px;
    }

    .contactFormBox {
        transform: translateX(15px);
    }

    .contactFormBox.new {
        transform: translateX(0);
    }

    .leftMarginLeft {
        flex: 0 0 230px;
    }
    .service-card-content{
        min-height: 268px;
    }
    .navbarContainer{
        width: 97% !important;
    }
}

@media (min-width:992px) {
    .banner-hero p{
        font-size: 1.15rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    .landing-btns {
        margin: auto;
        width: 60%;
    }
}
@media (min-width:1025px) {
 .service-card-content{
        min-height: 282px;
    }
}

@media only screen and (max-width:1199px) {

    .navbar .navbar-nav .nav-item>.nav-link {
        font-size: 13px;
    }

    .navbar .navbar-nav .nav-item {
        margin-right: 0;
    }

    .searchForm .custom_search-div {
        width: 500px;
    }

    .custom__input-group {
        width: 270px !important;
    }

    /* =======POST LOG IN === */
    .emv_migration .emv_card,
    .ftr_card {
        width: 100%;
    }

    .customer_card {
        width: 100% !important;
    }

    .dcv_help {
        background-position: 20% 100% !important;

    }

    .cvd .cvdimg_one,
    .cvd .cvdimg_two {
        width: 230px;
    }

    .usr_prfle .usr_ul .usr_ul_li a {
        font-size: 15px;
    }

    /* -----FOOTER----- */
    .quick_links li a {
        font-size: 14px;
    }

    .social_icon_ul {
        justify-content: center !important;
        padding-top: 0 !important;
    }

    .freesignage__logo__img {
        width: 250px;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        height: 60vh;
        width: calc(99% - -11px);
        padding-left: 0px;
    }

    .swiper-horizontal>.swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        width: 70% !important;
    }
}

@media only screen and (min-width:1768px) {
    .service-card img {
        max-height: 266px;
    }

    .newsCard.card .newsImg {
        height: 268px;
    }

    .paddright_gap {
        padding-right: 50px;
    }
}

@media only screen and (min-width:1920px) {
    #wrap {
        min-height: 87% !important;
    }

    .dcv_login_home {
        height: 35vh !important;
    }

    /* circle text */
    .div_relative_home {
        left: calc(31% - -10px);
        transform: translateX(0%);
    }

    .div_relative_home {
        width: 336px;
        font-size: 22px;
        bottom: 3%;
    }

    .circle__div-title {
        width: 443px;
    }

    .circle__div-heading p:nth-of-type(1) span {
        font-size: 77px !important;
    }

    .circle__div-heading p:nth-of-type(3) span {
        font-size: 22px !important;
    }

    /* end */
    .banner_home,
    .cvd {
        height: 624px !important;
    }

    /* update */
    .px-lg-0 nav.navbar.navbar-expand-lg.second-navbar .container {
        max-width: 1573px;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        width: calc(95% - 10px);
    }

    .banner_home .container {
        max-width: 1500px;
    }

    .cvd .container {
        max-width: 1573px;
    }

    .banner_home,
    .cvd {
        height: 500px !important;
    }

    .cvd~.page-footer.footer .links_box .container {
        max-width: 1573px;
    }

    /* banner befor login */
    .dcv_home.banner__customer {
        height: 676px !important;
    }

    .circle__div.d-flex.justify-content-center.align-items-center {
        width: 677px !important;
        height: 677px !important;
    }

    .banner__customer::before {
        width: 344px;
    }

    .container {
        max-width: 1270px;
    }

    section.dcv_home.free__signage_sec {
        height: 60vh;
    }

    section.dcv_home.dcv__faq {
        height: 50vh;
    }

    section.dcv_home.dcv_help {
        height: 50vh !important;
    }

    /* searchbat */
    .searchForm .custom_search-div {
        max-width: 980px;
        margin-left: -10px;
        width: 960px;
    }

    .service-card img {
        max-height: 395px;
        object-fit: cover;
    }

    .newsCard.card .newsImg {
        height: 292px;
    }
}

@media (min-width: 992px) {
    .col_lg_2 {
        -ms-flex: 0 0 19% !important;
        flex: 0 0 19% !important;
        max-width: 19% !important;
    }
}

@media (min-width: 1025px) {
    .timelineNew::before {
        height: 80%;
    }
}

@media only screen and (min-width:1200px) {
    .col_lg_2 {
        -ms-flex: 0 0 17% !important;
        flex: 0 0 17% !important;
        max-width: 17% !important;
    }

    .links_box,
    .links_box .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .popular__search__card {
        width: 320px;
    }

    .quick_links_block {
        display: flex;
    }

    .quick_links_block li {
        border-right: none !important;
    }

    .notification_update_modal_content {
        max-width: 700px;
    }

    .loc-card {
        height: 217px;
        background-color: #e0e0e16e;
    }

    .timelineNew::before {
        height: 80%;
    }
}

@media only screen and (min-width:1280px) {
    .leftMarginLeft {
        flex: 0 0 232px;
    }

    .timelineNew::before {
        height: 70%;
    }
}

@media only screen and (min-width:1365px) {
    .timelineNew::before {
        height: 76%;
    }
}
@media only screen and (min-width:1379px) {
    .service-card-content{
        min-height: 250px;
    }
}

@media only screen and (min-width:1440px) {
    .banner-hero {
        background-position: unset;
    }

    .banner-hero h1,
    .topBannerSection h1 {
        font-size: 3.5rem;
    }

    /* .leftMargin{
        margin-left: -128px;
        width: calc(100% + 135px);
    } */
    .faq-question {
        font-size: 17px;
    }

    .faqsContent h6 {
        font-size: 20px;
    }

    .flexCounterItem {
        width: 135px;
        height: 100px;
    }

    .flexCounterItem h6 {
        font-size: 2rem;
    }

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

    .section-bg {
        height: calc(100% - 257px);
    }

    .service-card-content h3 {
        font-size: 18px;
    }

    .sec-heading {
        font-size: 48px !important;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 26px;
    }

    .price_card {
        padding: 30px 26px;
    }

    .quickQuestionContent {
        padding: 64px 50px;
    }

    .quickQuestion h5 {
        font-size: 48px;
    }

    .quickQuestion.bgNone h5 {
        font-size: 44px;
    }

    .topBannerSection.postBg {
        height: 630px;
    }

    .leftMarginLeft {
        flex: 0 0 252px;
    }

    .timelineNew::before {
        height: 76%;
    }

}

@media only screen and (min-width:1475px) {
    .timelineNew::before {
        height: 90%;
    }
}

@media only screen and (min-width:1500px) {
    .service-card-content {
        min-height: 210px;
    }
}

@media only screen and (min-width:1600px) {
    .how-work {
        padding-bottom: 92px;
    }

    .leftMarginLeft {
        flex: 0 0 262px;
    }

    .service-card-content {
        min-height: 185px;
    }
}

@media only screen and (min-width:1768px) {
    .topBannerSection.postBg {
        height: 700px;
    }

    .plansContainer {
        padding-left: 120px;
        padding-right: 120px;
    }

    /* .leftMargin {
        margin-left: -137px;
    } */
    .flexCounter {
        gap: 40px;
    }

    .flexCounterItem {
        width: 180px;
        height: 145px;
    }
}

@media only screen and (min-width:1920px) {
    .loc-card {
        height: 217px;
        background-color: #e0e0e16e;
    }

    .price_card ul li {
        font-size: 14px;
    }

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

    /* .leftMargin{
        margin-left: -136px;
    } */
    .flexCounter {
        gap: 54px;
    }

    .flexCounterItem {
        width: 190px;
        height: 155px;
    }
}

@media only screen and (min-width:1921.98px) {
    .banner-hero {
        background-position: 100% -100px !important;
        background-size: 100% 100% !important;
        height: 700px;
    }
}

@media only screen and (min-width:2000px) {
    .custom-container {
        width: 1400px;
    }

    .banner-hero {
        height: 780px;
    }
}

@media only screen and (min-width:2560px) {
    .newsCard.card .newsImg {
        height: 397px;
    }

    .serviceMainImage {
        max-height: 500px;
        object-fit: cover;
    }

    .contactBanner {
        height: 500px;
    }
}

@media only screen and (max-width:1350px) {
    .navbar .nav-item .nav-link {
        font-size: 14px;
    }

    section#howwork .card-work {
        min-height: 400px;
    }

    .text-content {
        padding: 130px 0 120px 0px;
    }

    .how-work {
        padding-bottom: 0;
    }

    .banner-hero .img-container img {
        left: 20%;
    }

    .quickQuestion.bgNone h5 {
        font-size: 37px;
    }

    .plansContainer {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media only screen and (max-width:1300px) {
    .banner-hero h1 {
        font-size: 63px;
    }

    .timeline-content p,
    .aboutSec p {
        font-size: 13px;
    }

    .sudoImage::before {
        bottom: -100px;
    }

    .quickQuestion h5 {
        font-size: 42px;
    }

    .service-card-content h3 {
        font-size: 16px;
    }
}

@media only screen and (max-width:1280px) {
    .swiper {
        height: 576px;
    }

    .aboutSec .img-container img {
        width: 100%;
    }

    h4.plan-title {
        height: 55px;
    }

    .service-sec .card {
        width: 100%;
    }

    .banner-text h1 {
        font-size: 3rem;
    }

    .latest-blogs .owl_items_body .blog-des {
        min-height: 120px;
    }

    .latest-blogs .owl_items {
        width: 100%;
    }

    .client_say .owl-item .slider__item {
        height: 354px !important;
    }

    .banner-text {
        padding: 70px 0 45px 0px;
    }
}

@media only screen and (max-width:1199.98px) {
    .plansContainer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .price_card h3 {
        font-size: 18px;
    }

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

    .price_card .amout {
        font-size: 30px;
    }

    .price_card {
        padding: 20px 14px;
    }

    .price_card .amout span {
        font-size: 13px;
    }
}

@media only screen and (max-width:1100px) {
    .custom-container {
        width: 85%;
    }
}

@media only screen and (max-width:1024px) {
    .freesignage__logo__img {
        width: 240px;
    }

    .free__signage__banner__logo {
        width: 150px !important;
    }

    .free__signage_sec {
        height: 300px !important;
    }

    .signage__title {
        font-size: 25px;
    }

    .customer_home {
        height: 300px !important;
    }

    .dcv_help {
        background-position: 10% 100% !important;
        height: auto !important;
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .cvd {
        height: auto !important;
    }

    .profile_menu_box {
        left: -90px;
    }

    .triangle__mobile-edit {
        left: 115px;
    }

    h4.plan-title {
        margin-bottom: 3rem;
        font-size: 1rem;
    }

    p.plan-price {
        font-size: 2.5rem;
    }

    .btn-black {
        width: 164px;
        padding: 15px 5px !important;
    }

    .common_container {
        width: 95%;
    }

    .custom-container {
        width: 95%;
    }

    .departments .grid-container {
        display: inline-grid;
        grid-template-columns: 25% 25% 25% 25%;
    }

    /* .blogTitle {
        height: 74px;
        overflow: hidden;
    } */

    .top-header {
        display: none;
    }

    section#howwork .card-work {
        min-height: 430px;
    }

    .banner .img-container img {
        left: 0%;
        width: 100%;
    }

    .banner-hero .img-container img {
        left: 2%;
    }

}

@media only screen and (max-width:991.98px) {
    .navbar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .discover_logo {
        max-width: 100px;
    }

    .searchForm .custom_search-div {
        width: 400px;
    }

    .search_ul .search_ul_list {
        margin: 0 .5rem;
    }

    .logo_brand {
        width: 250px;
    }

    .cvd .cvdimg_one,
    .cvd .cvdimg_two {
        width: 250px;
    }

    .quick_links li {
        margin: .5rem 1rem 0 0;
    }

    .quick_links li a {
        font-size: 14px;
    }

    .quick_links_flex li {
        margin: 0.5rem 0;
    }

    .quick_links li .quick_links_a {
        padding: 0 5px 0 0 !important;
    }

    .social_icon_ul li a img {
        width: 30px;
        height: auto;
    }

    .social_icon_ul li a {
        padding: 20px 5px;
    }

    .service .container .service_card {
        width: 100% !important;
    }

    /* =======POST LOG IN === */
    .emv_migration .emv_card,
    .ftr_card {
        width: 100%;
    }

    .customer_card {
        width: 100% !important;
    }

    /* ---------DECAL------- */
    .pride_decal_card {
        width: 100%;
    }

    /* ------FOOTER----- */
    .social_icon_ul {
        justify-content: center !important;
        padding-top: 0 !important;
    }

    .quick_links {
        justify-content: center !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* .home_title{
         font-size: 35px;
     } */
    .dcv_help {
        background-position: 10% 100% !important;
    }

    .free__signage_sec {
        height: 250px !important;
    }

    .free__signage__banner__logo {
        width: 120px !important;
    }

    .customer_home {
        height: 250px !important;
    }

    .topBannerSection {
        height: 100%;
    }

    .contactFormBox {
        height: 600px;
    }

    .quickQuestion.bgNone .quickQuestionContent {
        max-height: 600px;
        min-height: 600px;
    }

    .contactFormBox,
    .quickQuestion.bgNone .quickQuestionContent,
    .bottomAddress {
        padding: 30px;
    }

    .topBannerSection h1 {
        font-size: 42px;
    }

    .middSec.pt {
        padding-top: 30px;
    }

    .service-card-content p {
        font-size: 13px;
    }

    .service-card-content h3 {
        font-size: 14px;
    }

    .service-card-content {
        padding: 15px 10px 20px 10px;
    }
}

@media only screen and (max-width:1199px) {
    .catalog_ul .catalog_list a {
        font-size: 14px;
    }

    .catalog_ul .catalog_list .catalog_list_a {
        margin-right: 20px !important;
    }

    .cvd .cvdimg_two {
        bottom: -11%;
    }

    .div_relative_home {
        left: 56%;
        bottom: 0 !important;
    }
}

@media only screen and (max-width:1024px) {
    .dcv_home {
        height: auto !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .banner__customer {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .desktop-bg {
        width: 500px !important;
        right: 0 !important;
    }

    .circle__div {
        width: 360px;
        height: 360px;
    }

    .div_relative_home {
        left: 50% !important;
        bottom: 2% !important;
    }

    .banner__customer::before {
        width: 200px;
    }

    .banner-content {
        transform: translateY(50%);
    }

    .heading {
        font-size: 30px;
    }
}

@media only screen and (max-width:1023.98px) {
    .circle__div {
        width: 300px;
        height: 300px;
        padding: 8px;
        border: double 1px transparent;
    }
    #collapsibleNavbar.active{
        top: 88px;
        opacity: 1;
    }
    ul.navbar-nav.ml-auto {
        padding: 20px 15px 20px 0;
    }
    .navbar .navbar-nav .nav-item{
        margin-left: 16px;
    }
    .circle__div-heading>p:nth-child(1)>span {
        font-size: 30px !important;
    }

    .circle__div-heading>p:nth-child(2)>span {
        font-size: 14px !important;
    }

    .circle__div-heading>br {
        display: none !important;
    }

    .banner__customer::before {
        width: 150px;
    }

    #Our-comprehensive1 {
        color: #1E334B;
        font-size: 40px !important;
        font-weight: 900;
        text-align: left;
        margin-top: 70px;
        margin-right: 70px;
        text-transform: uppercase !important;
    }

}

@media only screen and (max-width:991.98px) {
    #sidebarCollapse.active .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        -ms-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-9px, 6px);
    }

    #sidebarCollapse.active .bar2 {
        opacity: 0;
    }

    #sidebarCollapse.active div.bar3 {
        -webkit-transform: rotate(45deg) translate(-5px, -3px);
        -ms-transform: rotate(45deg) translate(-5px, -3px);
        transform: rotate(45deg) translate(-5px, -3px);
        width: 26px;
    }

    #collapsibleNavbar {
        width: 100%;
        top: -100%;
        position: fixed;
        right: 0;
        background: var(--primnary-color);
        z-index: 999;
        -webkit-transition: opacity .3s linear, top .3s ease-out;
        -o-transition: opacity .3s linear, top .3s ease-out;
        transition: opacity .3s linear, top .3s ease-out;
        display: block;
        padding-left: 20px;
        padding-right: 20px;
        opacity: 0;
        /* background-color: var(--cyan); */
    }

    #collapsibleNavbar.active {
        right: 0;
        width: 100%;
        height: fit-content;
    }

    .navbar .navbar-nav .nav-item>.nav-link {
        font-size: 16px;
    }

    div.mblogoDv {
        margin-left: 0 !important;
    }

    .right-btn {
        position: absolute;
        top: 50%;
        right: 90px;
        transform: translateY(-50%);
    }

    .navbar-collapse.show+.right-btn {
        top: 20px;
        transform: translateY(0);
    }

    .searchForm {
        margin-left: -15px;
    }

    .main .container img.bg_phone {
        height: 450px;
        top: 8%;
    }

    .navbar .navbar-nav .nav-item {
        width: fit-content;
    }

    .navbar .nav-item:nth-child(7) {
        border-radius: 5px;
        box-shadow: 0px 3px 6px 0 rgb(40 43 49 / 8%);
        width: 200px;
        text-align: center;
        border-radius: 42px;
    }

    .desktop-bg {
        width: 450px !important;
        top: 50% !important;
        right: -10% !important;
    }

    #quoteRequest .content p {
        font-size: 2rem;
    }

    .quickQuestion h5,
    .sec-heading {
        font-size: 32px !important;
    }

    .newsCard.card .newsContent {
        padding: 15px;
    }

    .text-content {
        padding: 110px 0 70px 0px;
    }

    .middSec,
    .services-section,
    .testimonials,
    .pt-65,
    .videSection,
    .news {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .pricing {
        padding-bottom: 0;
    }

    .services-section {
        padding-bottom: 50px;
    }

    .sudoImage::before {
        bottom: 0;
        height: 80%;
    }
    .corpkit-header{
        padding-top: .25rem;
        padding-bottom: .25rem;
    }
    .navbar .navbar-nav .nav-item {
        margin-bottom: 20px;
    }

    .navbar .navbar-nav .nav-item>.nav-link {
        font-size: 16px;
    }

    body.stop-scroll {
        overflow-y: hidden;
    }

    .footer-parent .heading {
        font-size: 14px;
        letter-spacing: .5px;
    }

    .footer__allLinks>li a,
    .footer__allLinks>li span,
    .footer-parent p.f-16 {
        font-size: 13px !important;
    }

    .subscribe_button {
        font-size: 14px;
    }

    .founderContent h4 {
        font-size: 28px;
    }
    .topheader.scrolled .navbar-brand img{
        width: 150px;
    }
   .topheader.scrolled #collapsibleNavbar.active{
        top: 55px;
    }
    #side-click-close{
        top: 150px;
    }
}

@media only screen and (max-width:882px) {

    .cvd .cvdimg_one,
    .cvd .cvdimg_two {
        width: 200px;
    }

    .freesignage__logo__img {
        width: 240px;
    }

    .nav-pills .nav__pill__link {
        font-size: 14px;
    }

    .dcv_help {
        background-position: 23% 100% !important;
    }

    .desktop-bg {
        width: 400px !important;
        top: 50% !important;
        right: 0% !important;
    }

    .departments .grid-container {
        display: inline-grid;
        grid-template-columns: 33.33% 33.33% 33.33%;
    }

    .pricing-plan-sec .card {
        margin-bottom: 2rem;
    }
}

@media only screen and (max-width:768px) {
    .flexCounter {
        gap: 20px;
        /* Reduce gap on smaller screens */
    }

    .flexCounterItem {
        /* width: calc(50% - 15px);  */
        height: auto;
        min-height: 116px;
        padding: 15px;
    }

    .dcv_home {
        height: auto !important;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    #Our-comprehensive {
        color: #1E334B;
        font-size: 28px;
        font-weight: 900;
        text-align: left;
        margin-top: 70px;
        text-transform: uppercase !important;
    }

    #Our-comprehensive1 {
        color: #1E334B;
        font-size: 28px !important;
        font-weight: 900;
        text-align: left;
        margin-top: 70px;
        text-transform: uppercase !important;
    }

    .circle__div {
        width: 300px;
        height: 300px;
    }

    #quoteRequest .content p {
        font-size: 2rem;
    }

    .navbar .nav-item .nav-link {
        font-size: 14px;
    }

    section#howwork .card-work {
        min-height: 390px;
    }

    .sm-none {
        display: none;
    }

}

@media only screen and (max-width:767.98px) {
    .custom-container {
        width: 98%;
    }
    .layer_box{
        width: 93%;
    }
    .layer_box h3{
        font-size: 22px;
    }
    .navbar-brand{
        margin-left: .55rem;
    }

    #collapsibleNavbar.active {
        width: 100%;
    }
    #collapsibleNavbar.active{
        top: 73px;
    }
    #side-click-close{
        top: 74px;
    }

    #header .container {
        padding: 0;
    }

    .navbar {
        padding: 8px 0px;
    }

    .navbar .nav-item .nav-link {
        font-size: 14px;
    }

    .navbar .nav-item .nav-link {
        color: #010101;
    }

    .navbar-brand {
        color: #010101;
    }

    .nav-item {
        margin-left: 0 !important;
    }

    .navbar-brand img {
        width: 200px;
    }

    .main .container img.bg_phone {
        position: absolute;
        top: 83%;
        width: 100px;
        height: 180px;
    }

    .banner-hero p {
        font-size: 15px;
    }

    .desktop-bg {
        width: 100%;
        top: 110% !important;
        right: 0 !important;
    }

    .youtube_bg {
        height: 226px;
    }

    .feature iframe {
        height: auto !important;
    }

    .flex_column {
        flex-direction: column;
        align-items: center;
    }

    .width-100 {
        width: 100%;
    }

    .margin-left-mob {
        margin-left: 1.5rem;
    }

    .px-sm-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .mb-sm-4 {
        margin-bottom: 16px !important;
    }

    .main {
        min-height: auto !important;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .footer__allLinks-ul {
        margin-left: auto;
        margin-right: auto;
    }

    select {
        background-position: 100% 22px !important;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        padding-left: 0px;
        padding-right: 37px !important;
    }

    .custom__modal-dialog {
        top: 5% !important;
    }

    .px_0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .padng_right {
        padding-right: 6px !important;
    }

    #password_one {
        border-bottom: none;
    }

    .form-title {
        font-size: 20px !important;
    }

    .searchForm {
        margin-left: auto;
    }

    .search_ul .search_ul_list {
        margin: 0;
    }

    .col__padding {
        padding-left: 4px !important;
    }

    .catalog_ul .catalog_list a {
        font-size: 15px;
    }

    .quick_links li a {
        font-size: 16px;
    }

    .links_box {
        padding-left: 0;
        padding-right: 0;
    }

    .footer__padding {
        padding-left: 10px;
    }

    .quick_links {
        flex-direction: column !important;
        justify-content: start !important;
        align-items: flex-start !important;
    }

    .quick_links_flex li a {
        font-size: 16px;
    }

    .social_icon_ul {
        justify-content: start !important;
    }

    .logo_brand {
        width: 215px;
        margin-left: auto;
    }

    .btn_primary {
        font-size: 14px;
    }


    /* ======home====== */
    .register__left-content {
        height: auto !important;
    }

    .right_content {
        border-radius: 10px;
    }

    .login__banner {
        display: none !important;
    }

    .register__banner {
        display: none;
    }

    .img__login-register {
        display: block;
    }

    .close_modal_div {
        z-index: 1;
        top: 0 !important;
        right: 0% !important;
        width: 35px !important;
        height: 35px !important;
    }

    .dcv_home {
        background: none !important;
        height: auto !important;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .banner__customer::before {
        content: none;
    }

    .banner_home {
        height: auto !important;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .cvd .cvdimg_one {
        width: 150px !important;
        top: -1px;
        left: 0%;
    }

    .cvd .cvdimg_two {
        width: 150px !important;
    }

    .cvd_para p {
        font-size: 18px;
    }

    .contact_info {
        font-size: 15px;
    }

    .signage {
        margin-bottom: 0 !important;
        height: auto !important;
    }

    .service .service_container {
        transform: translateY(0) !important;
        height: auto !important;
        padding-top: 3rem;
    }

    .signage .container .signage_div h4 {
        font-size: 25px;
    }

    .service .container .service_card {
        height: 430px;
    }

    .service .container .service_card .card-img img {
        height: auto !important;
    }

    .service .container .service_card .card-body {
        padding: 1.25rem;
        position: relative;
    }

    .service .container .service_card .btnService {
        position: absolute;
        bottom: 0%;
    }

    .service .container .service_card .card-body p {
        font-size: 16px;
    }

    .signage .container .signage_div p,
    .count_div p {
        font-size: 18px;
    }

    .card_resource .card-body {
        padding-left: 0 !important;
    }

    /* =========POST LOG IN======= */

    .emv_migration .emv_card {
        width: 90%;
    }

    .mx_auto {
        margin-left: auto;
        margin-right: auto;
    }

    /* ==========PRODUCT==== */
    .product__other__image__bx {
        width: 70px !important;
        height: 70px !important;
        cursor: pointer;
    }

    .multi__img__row {
        padding-top: 1.1rem !important;
    }

    .slick-slide img {
        height: 60px;
    }

    .mx_auto {
        margin-left: auto;
        margin-right: auto;
    }

    .flex_column {
        flex-direction: column;
    }

    .pagination_div .pagination {
        padding-bottom: 16px;
    }

    .prfl_input .prfl_input_control {
        width: 100%;
    }

    .order_detail {
        display: block !important;
    }

    .order_detail div {
        margin-bottom: 1rem;
    }

    .order_status-div {
        margin-top: 30px;
    }

    .order_detail div:nth-child(3) {
        margin-bottom: auto;
    }

    .usr_prfle .usr_ul .usr_ul_li {
        width: 90%;
    }

    .text_sm_center div h6 {
        color: #fff;
        display: block;
    }

    /* ======CUSTOMER HOME====== */
    .circle__div {
        width: 300px;
        height: 300px;
    }

    .popular__search__card {
        margin-bottom: 20px;
    }

    .popular__search__card {
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }

    .popular__search__card .card__img img {
        width: 230px;
        height: 230px;
        object-fit: contain;
    }

    .div_relative_home {
        bottom: auto;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
    }

    .div_relative_home {
        bottom: -4% !important;
        left: 50% !important;
    }

    .dcv_home {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .home_title {
        text-align: left !important;
    }

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

    .help_content h6 {
        color: #fff;
    }

    .emv_card .emv_card-title {
        margin-bottom: 20px;
    }

    .emv_migration .container_fluid .ftr_title {
        text-align: center;
    }

    .ftr_title {
        text-align: center;
    }

    .homeTitle {
        text-align: left !important;
        color: #fff !important;
    }

    .home_login {
        color: #fff;
        font-size: 13px;
    }

    .cart_title-prideDecal {
        font-size: 25px;
    }

    /* -------free signage logos */
    .free__signage__logos__sec {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .signage__title {
        font-size: 25px;
    }

    .free__signage__banner__logo {
        width: 160px !important;
    }

    .profile_menu_box {
        margin-top: -12px !important;
        left: -50px !important;
        transform: translate3d(-70px, 74px, 0px) !important;
    }

    .pride_decal_card {
        height: 200px !important;
    }

    .free__signage_sec ul.nav.nav-pills {
        height: 36vh !important;
    }

    .free__signage_sec h1 {
        font-size: 2rem;
        line-height: 36px;

    }

    .free__signage__logos__sec .signage__title {
        font-size: 2rem !important;
    }

    .free__signage_sec .free__signage__banner__logo {
        margin-top: 1rem !important;
    }

    .product__main__img img {
        width: 180px;
        height: 180px;
    }

    .slider__img__div.cvd {
        margin-left: 3.5rem !important;
    }

    .accordion .card-link:after {
        right: -13px !important;
    }

    .notification_update_modal_content>p {
        word-break: break-word !important;
        font-size: 13px;
        text-align: justify !important;
    }

    /* user */
    .usr_prfle .usr_ul .usr_ul_li.active::after {
        left: -8px;
    }

    .border__right__none {
        border-right: none !important;
    }

    .all_address_list {
        padding-left: 2px;
        padding-right: 2px;
    }

    .px_3 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .notification_update_modal_content {
        padding: 105px 15px 80px;
    }

    #menu_profile::after {
        color: #313c97;
    }

    .row__color {
        color: #23233f !important;
    }

    .row__color>div p:nth-child(1) {
        line-height: 24px !important;
    }

    /* admin */
    .custom_addForm_control {
        width: 100%;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        width: 100%;
    }

    .drift-zoom-pane.drift-open {
        z-index: 1025;
        width: 95% !important;
        overflow: hidden !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .px-col-0 {
        padding-left: 0;
        padding-right: 0;
    }

    .home_title.home_title-edit.homeTitle.ie_margin p span:nth-of-type(2) {
        font-weight: unset !important;
        font-size: 40px !important;
    }

    button.btn.btn-outline-warning.cancel_btn.shadow-0.text-uppercase {
        margin-bottom: 5px;
        font-weight: normal;
        font-size: 14px;
        font-family: "Cardo-Regular";
        outline: none !important;
        margin-top: 5px;
    }

    .modal-footer>:not(:first-child) {
        margin: auto;
    }

    #add_address .btn-outline-warning.cancel_btn {
        font-size: 16px;
        font-weight: 400;
        font-family: 'DiscoverSans-Medium';
    }

    section.searchSec.py-5 {
        padding-top: 0px !important;
    }

    .leftMargin {
        width: auto;
    }

    /* ---------ELm------ */
    .navbar .nav-item:nth-child(7) {
        border-radius: 5px;
        box-shadow: 0px 3px 6px 0 rgb(40 43 49 / 8%);
        width: 200px;
        text-align: center;
        border-radius: 42px;
    }

    .nav-item .nav-link.bg_active {
        color: #fff !important;
    }

    .close.popup-close {
        top: 0;
        right: -1%;
    }

    .app__lead,
    .web__lead {
        height: 250px !important;
    }

    .app__lead .container,
    .web__lead .container {
        margin-top: 3rem;
    }

    .app__lead .container .row h3,
    .web__lead .container h3 {
        text-align: center;
    }

    .paddng {
        padding-top: 50px !important;
    }

    section.get-in-touch.bg-gaps {
        padding-top: 15rem;
    }

    .form-box {
        padding: 3.5rem 1rem;
    }

    .headingImg {
        display: block;
    }

    .headingText {
        display: none;
    }

    .bg_gaps {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .leadscreen {
        margin-bottom: 20px;
    }

    .swiper-horizontal>.swiper-scrollbar,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        width: 90% !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: 110% !important;
    }

    .hero-banner {
        min-height: 93vh !important;
    }

    .banner-content {
        transform: translateY(90%);
    }

    .hero-banner h1 {
        font-size: 1.5rem;
    }

    .featureSec {
        background-image: none !important;
    }

    .question-btn {
        padding: 15px 15px !important;
    }

    .questions .faq_haeder,
    .questions .question-text {
        font-size: 14px;
    }

    img.img-plus-minus {
        width: 30px;
    }

    .industrialSec .contactUs {
        padding-top: 0px !important;
    }

    .industrialSec section#latestblog {
        padding-bottom: 0px !important;
    }

    .heroSlider .item img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .heroSlider .item .cover .header-content h2 {
        font-weight: 300;
        font-size: 16px;
        color: #fff;
    }

    .heroSlider .item .cover .header-content h1 {
        font-size: 22px;
    }

    .heroSlider .item {
        height: auto;
    }

    .heroSlider .item .cover .header-content {
        padding: 15px;
    }

    .heroSlider .item .cover .header-content .line {
        border: 4px solid #fff;
    }

    .second-card .card {
        position: relative;
        top: 0rem;
    }

    .five-card .card {
        top: 0rem;
    }

    .pricing-plan-sec .card {
        margin-bottom: 2.5rem;
    }

    .touch__form {
        margin-top: 2.5rem;
        padding: 35px 0px;
    }

    .sec-gap,
    .how-work .sec-card,
    .service-sec,
    .get-in-touch {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .how-work .sec-card {
        padding-left: 30px;
        padding-right: 30px;
    }

    .work-card {
        margin-bottom: 30px;
    }

    .work-card p {
        margin-top: .5rem;
    }

    .banner-text {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .banner-text h1 br,
    .work-card p br,
    .service-sec p.card-heading br {
        display: none;
    }

    .aboutSec p {
        margin-bottom: 10px;
    }

    .service-sec p.card-heading {
        font-size: 20px;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-parent .heading {
        font-size: 20px;
        letter-spacing: 1.25px;
        margin-bottom: 0;
    }

    .footer__allLinks>li a,
    .footer__allLinks>li span {
        font-size: 16px;
    }

    .footer-copyright span {
        font-size: 13px;
    }

    .getin__touch {
        padding: 30px !important;
    }

    .departments .grid-container {
        display: inline-grid;
        grid-template-columns: 50% 50%;
    }

    .aboutUsMain .mission-head {
        color: #44489d;
        background-color: transparent;
        height: auto;
        box-shadow: none;
        font-size: 2rem;
        position: static;
        margin-bottom: 21px;
        line-height: inherit;
        width: auto;
    }

    div#mission {
        margin-bottom: 2rem;
    }

    .aboutUsMain .mission,
    .aboutUsMain .vision {
        position: static;
        width: 100%;
    }

    .aboutUsMain .vertical-line {
        width: 100%;
        border-left: none;
    }

    .aboutUsMain .img-center {
        margin-top: 2rem;

    }

    .aboutUsMain [data-aos=fade-left] {
        transform: translate3d(0px, 0, 0) !important;
    }

    /* .blogTitle {
        height: auto;
        overflow: hidden;
    } */

    .card-body.all-card-box.p-2 {
        height: auto !important;
        min-height: unset;
    }

    .client_say .owl-item .slider__item {
        height: 350px !important;
    }

    .send_message_box.active {
        top: 20px;
        right: 8px;
    }

    .send_message_box .formSec {
        padding: 1rem;
    }

    .send_message_box {
        width: 96%;
        margin: auto;
    }

    .floating_button span {
        font-size: 11px;
    }

    .sec-heading {
        font-size: 2rem !important;
    }

    .floating_button {
        bottom: 25%;
    }

    #p-text {
        width: auto !important;
    }

    .banner-text h1.mb-0 span,
    .banner-text h2.arc-img.mb-3 {
        font-size: 3rem !important;
    }

    .get-in-touch h4 {
        color: #fff;
        font-size: 3rem !important;
    }

    .get-in-touch .common_container {
        width: 100%;
    }
   .quickQuestion{
        background-image: none !important;
   }
   .footerContent{
        padding-top: 30px;
   }
    /* modal quote */
    #quoteRequest .modal-body.py-4.pr-5.pl-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    #quoteRequest .content {
        position: static;
        margin-top: 2rem;
    }

    #quoteRequest .content p {
        font-size: 2rem;
    }

    #quoteRequest .form-sec {
        margin-top: 2rem;
        padding: 1.5rem 1.6rem;
    }

    #quoteRequest {
        overflow-y: auto;
    }

    #quoteRequest .modal-dialog {
        margin-top: 1rem;
    }

    button.close.quoteRequestRemove {
        right: 0px;
        top: 0px;
    }

    section#howwork .card-work {
        min-height: unset;
    }

    .card-work {
        min-height: unset;
    }

    button.question-btn.w-100.d-flex.justify-content-between {
        text-align: left;
    }

    .banner-hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }

    .founderContent h4 {
        font-size: 30px;
    }

    /* .leftMargin{
        margin-left: 0;
        width: 100%;
        padding: 0;
        flex-direction: column;
    } */
    .faqsContent {
        padding-left: 0;
    }

    .flexCounter {
        justify-content: center;
    }

    .faqsContent {
        margin-top: 30px;
    }

    .banner-hero h2 {
        font-size: 2.5rem !important;
    }

    .text-content {
        padding-top: 92px;
        padding-bottom: 30px;
    }

    .services-section {
        background: linear-gradient(to bottom, #1068DB, #ffffff);
    }

    .section-bg {
        height: 40%;
        /* Adjust for mobile */
        background-image: none;
    }

    /* Stack cards on mobile */
    .row>.col-md-4 {
        margin-bottom: 20px;
    }

    .right-btn {
        position: absolute;
        top: 50%;
        right: 55px;
        transform: translateY(-50%);
    }

    #para {
        width: 620px;
        margin-bottom: 50px;
        margin-left: 1px;
    }

    .newColLink {
        width: 88% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .secHeading {
        font-size: 35px;
    }

    .plansContainer {
        padding-left: 15px;
        padding-right: 15px;
        width: 98%;
        margin-left: auto;
        margin-right: auto;
    }

    .videoBox {
        margin-top: 20px;
    }

    .quickQuestionContent {
        padding: 20px;
    }

    .quickQuestion h5 {
        font-size: 32px;
    }

    .quickQuestion {
        background-size: 100% 100%;
        margin-top: 20px;
    }

    .quickQuestionContent {
        max-height: unset;
        min-height: auto;
        position: relative;
    }

    .quickQuestion {
        position: relative;
    }

    .quickQuestion::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: #00A5EC;
        opacity: 0.9;
    }

    .faq-item.border-0 .faq-question {
        color: var(--blue-dark);
    }

    .faq-item.border-0 .faq-answer {
        color: var(--blue-dark);
        font-size: 15px;
    }

    .faq-item.active .faq-answer {
        font-size: 15px;
    }

    .timeline::before {
        height: 80%;
    }

    .quickQuestion {
        background-image: none;
    }

    .quickQuestion::before {
        content: none;
    }

    .bottomLinks {
        column-gap: 28px;
        /* Horizontal gap */
        row-gap: 3px;
        /* Vertical gap (adjust as needed) */
        flex-wrap: wrap;
    }

    .copyrightsec {
        padding: 30px 0;
    }

    .locationBox .div h4,
    .emailBox .div h4,
    .contactBox .div h4 {
        font-size: 14px;
    }

    .locationBox .div a,
    .emailBox .div a,
    .contactBox .div a,
    .locationBox .div p,
    .emailBox .div p,
    .contactBox .div p {
        font-size: 13px;
        line-height: 1.3;
    }

    .locationBox .div,
    .emailBox .div,
    .contactBox .div {
        gap: 5px;
    }

    .w-sm100 {
        width: 100% !important;
    }

    .sudoImage {
        margin-bottom: 16px;
    }

    .faq-item.border-0.active .faq-question {
        color: var(--cyan);
    }

    .middSec,
    .services-section,
    .testimonials,
    .pricing,
    .videSection,
    .news,
    .middSec.new {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .banner-hero,
    .topBannerSection {
        margin-top: -2px;
    }
    .relativeTopBannerContent img{
        height: 200px;
    }

    .topBannerSection {
        height: 100%;
    }

    .topBannerContent {
        margin-top: 50px;
    }

    .topBannerSection h1 {
        font-size: 31px;
    }

    .breadcrumb-item,
    .breadcrumb-item+.breadcrumb-item {
        display: none;
    }

    .breadcrumb-item.active {
        display: block !important;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        content: none !important;
    }

    .breadcrumb-item.active,
    .breadcrumb-item a {
        font-size: 13px;
    }

    .contactFormBox,
    .quickQuestion.bgNone .quickQuestionContent {
        padding: 20px;
        height: auto;
        max-height: unset;
        min-height: auto;
    }

    #Our-comprehensive {
        color: #1E334B;
        font-size: 28px !important;
        font-weight: 900;
        text-align: left;
        margin-top: 70px;
        text-transform: uppercase !important;
    }

    .locationBox,
    .emailBox,
    .contactBox {
        margin-bottom: 0 !important;
    }

    .serv-sub-title {
        font-size: 32px;
    }

    a.blogSingleCard {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .newsLink {
        width: 85% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .contactTexts {
        height: auto;
        position: unset;
        transform: translateX(0) translateY(-30px);
        padding: 20px;
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20vh;
    }

    .contactFormSection {
        padding-top: 30px;
    }

    .bottomAddress {
        margin-top: 30px;
    }

    .service-card-content {
        padding: 15px 16px 20px 16px;
        min-height: auto;
    }

    .display-4 {
        font-size: 2.2rem;
    }

    .feature-card {
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px;
    }

    .process-section-title {
        font-size: 1.8rem;
    }

    .process-card {
        padding: 20px 15px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .financial-service-card {
        padding: 20px;
    }

    .financial-service-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto 15px;
    }

    .our-process .process-step {
        padding: 25px 20px;
    }

    .our-process .step-content {
        padding-left: 50px;
    }

    .our-process .step-icon {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .our-process .step-number {
        left: 20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .our-process .step-connector {
        left: 37px;
    }

    .contactFormSection {
        margin-top: 0px;
    }
    .faq-question{
        align-items: flex-start;
    }
    .faq-item .faq-icon.faq-iconBlue img{
        margin-top: 4px;
    }
    .image_gallery{
        padding: 10px 0;
    }
    .form_outer .flex{
        flex-direction: column;
        gap: 25px;
    }
    .gallery img{
        height: 85px;
    }
    .main-preview img{
        height: 265px;
        object-fit: unset !important;
    }
    .home_contact::before{
       background-color: rgba(8, 8, 8, .2);
    }

}

@media only screen and (max-width:575px) {
    .btn_100 {
        width: 100% !important;
    }

    .mx_auto {
        margin-left: auto;
        margin-right: auto;
    }

    .col_9 {
        -ms-flex: 0 0 68%;
        flex: 0 0 68%;
        max-width: 68%;
    }

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

    #para {
        width: 620px;
        margin-bottom: 50px;
        margin-left: 1px !important;
    }

    section.cvd p strong span {
        color: #23233f !important;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        padding-left: 0px;
        padding-right: 37px !important;
    }

    .sm-none {
        display: none;
    }

    .navbar .nav-item .nav-link {
        color: #fff;
    }

    ul.navbar-nav.ml-auto {
        padding: 20px 15px 20px 0;
    }

    .serve-sm-title,
    .serve-sm-title-lg {
        margin-bottom: 14px;
        margin-top: 30px;
        padding-bottom: 7px;
    }

    .touch__form-border {
        margin-top: 0;
        width: 100%;
    }
}

@media only screen and (max-width:540px) {
    .slider__img__div {
        margin-left: .5rem !important;
    }
}

@media only screen and (max-width:485px) {
    .triangle__mobile-edit {
        left: 50px !important;
    }

}

@media (max-width: 480px) {
    .flexCounterItem {
        width: 100%;
        /* Full width on smallest screens */
        max-width: 150px;
        /* But don't exceed original width */
    }
}


@media only screen and (max-width:425px) {
    .nav-pills .nav__pill__link {
        font-size: 16px;
    }

    .triangle__mobile-edit {
        left: 130px !important;
    }

    .col_9 {
        -ms-flex: 0 0 68%;
        flex: 0 0 85%;
        max-width: 85%;
    }

    iframe.embed-responsive-item.paste_video_url {
        height: 210px !important;
    }

    .btn_white_border {
        font-size: 13px;
        padding: 8px;
    }
}

@media only screen and (max-width:425px) {
    .progressbar li {
        font-size: 10px;
    }

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

    .home_login {
        font-size: 12px;
    }

    iframe.embed-responsive-item.paste_video_url {
        height: 200px !important;
    }
}

@media only screen and (max-width:387px) {
    .flexCounter {
        justify-content: center !important;
    }

    .flexCounterItem {
        width: 46%;
    }

    .breadcrumb-item+.breadcrumb-item {
        padding-left: 0;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.1rem;
    }
}

@media only screen and (max-width:375px) {
    .service .container .service_card {
        height: 430px;
    }

    .progressbar li {
        font-size: 10px;
    }

    .service .service_container {
        transform: translateY(-20px);
        height: auto !important;
    }

    .count_div>img {
        width: 120px !important;
    }

    .catalog_list:hover .quick_srch_menu {
        transform: translate3d(94px, 29px, 0px);
        position: absolute;
        transform: translate3d(94px, 30px, 0px);
        top: 0px;
        left: 0px;
        will-change: transform;

    }

    .profile_menu_box {
        left: -65px !important;
        transform: translate3d(-70px, 74px, 0px) !important;
    }

    .freesignage__logo__img {
        width: 240px;
    }

    .search__form {
        padding-right: 0;
    }

    .src_input_text {
        padding-left: 5px;
    }

    .search__form::placeholder {
        font-size: 14px !important;
    }

    .col_9 {
        -ms-flex: 0 0 85%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .slider__img__div {
        margin-left: .5rem !important;
    }

    /* -customer home----- */
    .popular__search__card {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .home_login {
        font-size: 12px;
    }

    .client_say .owl-item .slider__item {
        height: 420px !important;
    }
}

@media only screen and (max-width:375px) {
    .progressbar li {
        font-size: 13px;
    }

    .home_login {
        font-size: 12px;
    }

    .feature-signup a.btn.btn-register {
        width: 150px;
    }

    .banner-text h1.mb-0 span,
    .banner-text h2.arc-img.mb-3 {
        font-size: 2.5rem !important;
    }

    .banner-hero h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width:360px) {

    .app__lead .container,
    .web__lead .container {
        margin-top: 0rem !important;
    }

    .get-in-touch h4 {
        color: #fff;
        font-size: 2.5rem !important;
    }
    .topModalLink{
        font-size: 13px;
    }
}
@media (max-width:330px) {
    .topModalLink{
        font-size: 13px;
    }
}
@media only screen and (max-width:320px) {
    .triangle__mobile {
        right: 30px !important;
    }

    .progressbar li {
        font-size: 10px;
    }

    .triangle__mobile-edit {
        left: 150px !important;
    }

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

    .slider__img__div {
        margin-left: .5rem !important;
    }

    section.banner_home.d-flex.justify-content-center.align-items-center {
        width: 100%;
        padding-right: 0;
    }

    .home_login {
        font-size: 12px;
    }

    .feature-signup a.btn.btn-register {
        width: 170px;
    }

    iframe.embed-responsive-item.paste_video_url {
        height: 180px !important;
    }

    .locationBox .div a,
    .emailBox .div a,
    .contactBox .div a,
    .locationBox .div p,
    .emailBox .div p,
    .contactBox .div p {
        font-size: 12px;
        line-height: 1.3;
    }

    .locationBox,
    .emailBox,
    .contactBox {
        margin-bottom: 0 !important;
    }
}