/* ==============GLOBAL CSS================= */
:root{
   --blue-primary:#07499E;
   --blue-dark:#071331;
   --cyan:#00A5EC;
   --text-gray:#828282;
   --text-color:#414141;
}
/*================= 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;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6,p {
     margin: 0;
}

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

/*================= gLobal CSS ========================*/

body,
* {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

/* width */
body::-webkit-scrollbar {
    width: 10px;
}

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

/* Handle */
body::-webkit-scrollbar-thumb {
    background: #61C6C4;
}

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

/* Default ::selection style (works in modern browsers) */
::selection {
  background-color: #060097; /* Highlight background */
  color: #fff;              /* Highlighted text color */
}

/* WebKit/Blink (Chrome, Safari, newer Edge) */
::-webkit-selection {
  background-color: #060097;
  color: #fff;
}

/* Mozilla Firefox */
::-moz-selection {
  background-color: #060097;
  color: #fff;
}
#main section{
    overflow: hidden;
}

.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?>arrow-down-sign-to-navigate");
    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-primary-rad-5{
    border-radius: 5px;
}

.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;
}
.topheader.scrolled .bar1,.topheader.scrolled .bar2,.topheader.scrolled .bar3,.toggler-button.active .bar1,.toggler-button.active .bar2,.toggler-button.active .bar3{
    background: var(--cyan);
}
#side-click-close {
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 0;
    position: fixed;
    left: 0;
    top: 0;
    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: 0;
}

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

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

.logo_purple {
    display: none;
}

.logo_white {
    display: block;
}

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

/* .navbar .navbar-nav .nav-item.active {
    border-bottom: 2px solid #071331;
} */
.navbar .nav-item .nav-link {
    padding: 4px 15px;
    color: #ffffff ;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
    position: relative;
    transition: 0.5s ease-in;
}
/* .navbar .nav-item .nav-link::before{
    position: absolute;
    bottom: 0;
    content: '';
    width: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background-color: #ffffff;
    transition: 0.35s ease-in;
} */
.navbar .nav-item .nav-link:hover:before,.navbar .nav-item.active .nav-link:before{
    width: 100%;
}
.navbar-nav .nav-item .nav-link:hover{
    opacity: 1 !important;
    color: #A7A7A7;
}
header.scrolled .navbar-nav .nav-item.active  .nav-link{
    opacity: 0.55 !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;
}
.linkedinIcon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.linkedinIcon i{
    transform: scale(1);
    transition: 0.35s ease-in-out;
}
.linkedinIcon:hover{
    color: #ffffff;
}
.linkedinIcon:hover i{
    transform: scale(1.25);
}
/* ================ */
.bg-gaps {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb {
    margin-bottom: 40px;
}

.heading {
    font-size: 48px;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 1.25px;
    padding-bottom: 10px;
    line-height: 1.3em;
}

.heading-2 {
    font-size: 41px;
    line-height: 1.5;
    color: #414141;
    font-weight: 700;
    padding-bottom: 20px;
    font-family: "Cairo", sans-serif;
}
.contentSection{
    background-color: #F3F3F3;
}
.contentSection p{
    color: #414141;
    font-size: 15px;
    line-height: 1.8;
}
.inputDataSection p{
    margin-bottom: 1.6em;
    font-size: 15px;
    color: var(--text-color);
}

.heading__testimonial {
    opacity: 1;
}
.inputCard{
    margin-top: 32px;
}
.inputCard img{
    margin-bottom: 16px;
    transition: 0.3s ease-out;
}
.inputCard img:hover{
    transform: translateY(8px);
}
.inputCard h6{
    font-size: 19px;
    font-weight: 600;
    color: var(--text-color);
}
.serveSection{
    background-color: #E0E0E0;
}  
.serveSection p{
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
}
.btn-primary{
    background-color: #2197D1;
    border: 1px solid #2197D1;
    border-radius: 3px;
    padding: 6px 24px;
}

.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: #61C6C4;
    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-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-heading{
    text-align: center;
    color:white;
}

.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: 100%;
    max-width: 1140px;
    margin: auto;
}
.NavbarContainer{
    width: 100%;
    max-width: 1350px;
    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{
    padding-top: 50px;
    padding-bottom: 50px;
}
.aboutSec h2 {
    margin-bottom: 2rem;
}
.aboutSec h2.mb{
    margin-bottom: 1.5rem;
}

.aboutSec p {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 1.75em;
    line-height: 26px;
    font-family: "Open Sans", sans-serif;
}
.aboutSec h3{
    line-height: 1.7;
    color: #1e293b;
    font-size: 16px;
    margin:48px 0 15px;
}
.aboutSec p.founder_content{
    color:rgb(122, 122, 122);
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}
.aboutSec h6{
    font-size: 18px;
    margin-bottom: 1.75em;
    color: #414141;
}
.Aboutfounder{
    margin-bottom: 20px;
}
.text-container{
    margin-bottom: 30px;
}
.aboutSec hr,.projectsContent hr,.cropContent hr{
    border-top: 1px solid #000;
    opacity: 1;
}
.work-card p {
    margin-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #38343D;
    font-family: "Cardo-Bold";
}

.sec-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1em;
    color: #222222;
}
.divider{
    width: 14%;
    height: 3px;
    background-color: #FF224D;
    margin-bottom: 20px;
    margin-top: 20px;
}
.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,.FooterleftContent a {
    color: #ffffff;
    font-weight: 400;
    font-size: 10pt;
    line-height: 35px;
}
.bottomLinks{
    gap: 28px;
    flex-wrap: wrap;
}
.bottomLinks li a{
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}
.footerContent{
    padding-top: 45px;
}
.footer-parent .heading {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    opacity: 1;
    line-height: 1.5;
    margin-bottom: 25px;
    padding-bottom: 0;
}
.linkedinBlack{
    color: #000000;
    font-size: 20px !important;
}
.topheader{
    transition: all 0.3s ease;
}
.topheader.active-bg nav#banner {
    background-color: var(--blue-primary);
}
.topheader{
    background-color: transparent;
}
.topheader.scrolled{
    background-color: #ffffff;
    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;
}

.page-footer.footer {
    background-color: #737373;
    padding-top: 2px;
}

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;
}

.service-content-para {
    margin-top: 40px;
    margin-bottom: 40px;
}

.service-content-para p {
    color: #38343D;
    font-size: 14px;
    line-height: 24px;
    text-align: justify;
}
.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;
}

/* Base dropdown menu (hidden state) */
.custom-dropdown {
  position: relative;
}

.custom-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  min-width: 230px;
  border: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1000;
}
.topheader.scrolled .custom-menu{
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.topheader.scrolled .custom-menu .custom-item{
    color: #333;
}

/* Show class for mobile toggle */
.custom-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Chevron rotation */
.fa-chevron-down {
  transition: transform 0.3s ease;
}
.fa-chevron-down.rotate,.toggleIcon.rotate {
  transform: rotate(180deg);
}

/* Custom styling for links */
.custom-item {
  display: block;
  padding:8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.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;
}

.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 {
    background-image: url("../images/serviceBg.png");
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#quoteRequest .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 {
    position: absolute;
    top: 36%;
    left: 18%;
}

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

#quoteRequest .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{
    margin-top: -78px;
    background-position: right center !important;
}
.banner-hero h1{
    font-size: 42px;
    font-weight: 600;
}
.banner-hero p{
    color: #FFFFFF;
    font-weight: 400;
    font-size: 20px;
    font-family: var(--fontMerriweather);
}
.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: 510px;
}
.founderContent h4{
    font-weight: 800;
    font-size: 32px;
    color: var(--blue-dark);
    font-family: var(--fontRailWay);
    margin-top: 25px;
    margin-bottom: 10px;
}
.founderContent p{
    font-weight: 400;
    font-size: 18px;
    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: 48px;
    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;
}
.icon-wrapper .show-when-expanded {
  display: none;
}
button[aria-expanded="true"] .show-when-expanded {
  display: inline-block;
}
button[aria-expanded="true"] .show-when-collapsed {
  display: none;
}
#accordion .card{
  border: 1px solid transparent;
  border-radius: 0;
  margin-bottom: 10px;
}
#accordion .card-header{
    background-color: #ffffff;
    border-radius: 0;
    padding: 14px 30px;
}
#accordion .card-header .btn{
    padding: 0;
    width: 100%;
    justify-content: space-between;
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}
#accordion .card-header .btn[aria-expanded="true"]{
    text-decoration: underline;
}
#accordion .card-header .btn:hover,#accordion .card-header .btn[aria-expanded="true"]{
    text-decoration: none;
}
#accordion .card .card-body{
    background-color: #E1E1E1;
    color: var(--text-color);
    padding: 14px 30px;
    font-size: 16px;
    line-height: 24px;
}
.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;
}
  
  .section-bg {
    position: absolute;
    top: 0; /* Start from middle of section */
    left: 0;
    right: 0;
    height: calc(100% - 256px); /* Cover bottom half */
    background-image: url('../../assets/images/serviceBg.png');
    background-size: cover;
    background-position: center;
    z-index: -1; /* Behind content */
  }
  
  /* 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;
  }
  .service-card {
    flex: 1 1 auto;
    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: 30px 16px 20px 16px;
    text-align: center;
    min-height: 155px;
  }
  .service-card-content h3{
    font-size: 18px;
    font-weight: 800;
    color: var(--blue-dark);
    font-family: var(--fontRailWay);
  }
  .service-card-content p{
    color: #828282;
    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: 90%;
    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-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: #828282;
    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{
    background-color: #F3F3F3;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left;
}
.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;
}
.contactFormBox{
    background-color: #ffffff;
}
.quickQuestion .contactFormBox h5{
    color: #ffffff;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
}
.quickQuestion.bgNone h5{
    font-size: 40px;
}
.contactFormBox label{
    margin-bottom: 15px;
    color: rgba( 0, 0, 0, 0.85 );
    font-weight: 700;
    line-height: 1;
}
.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{
    border-radius: 3px;
    border: 1px solid rgba( 0, 0, 0, 0.25 );
}
div.form-group{
    margin-bottom: 30px;
}
.contactFormBox .form-control:focus,.contactFormBox textarea:focus{
    outline: none;
    border: 1px solid #066aab;
    box-shadow: 0 0 0 1px #066aab, 0px 1px 2px rgba(0, 0, 0, 0.15);
}
.contactFormBox .form-control::placeholder,.contactFormBox textarea::placeholder{
    color: #828282;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}
.contactFormBox textarea.form-control{
    height: 120px;
}
.form-control.heightArea{
    height: 180px;
}
.btn.btn_primary.bgCyan{
    background:#2197D1;
    border: 1px solid #2197D1;
    border-radius: 10px;
    font-weight: 500;
    font-size: 17px;
}
.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;
}
.topBannerSection{
    width: 100%;
    height: 430px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: -78px;
    position: relative;
}
.topBannerSection.postBg{
    background-image: url("../../assets/images/postBg.png");
    height: 593px;
}
.topBannerSection.contactBg{
    background-image: url("../../assets/images/contactUs.png");
}
.topBannerSection.aboutUsBg{
     background-image: url("../../assets/images/About-banner.png");
}
.topBannerSection.aboutUsBg,.topBannerSection.contactBg,.topBannerSection.agriculture,.topBannerSection.mining,.topBannerSection.projects,.topBannerSection.crop,.topBannerSection.soilandland,.topBannerSection.water{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
  display: flex;
  align-items: center;

}
.topBannerSection.agriculture{
    background-image: url("../../assets/images/agriculturei.jpeg");
    background-size: cover;
}
.topBannerSection.contactBg{
    background-image: url("../../assets/images/Contact-banner.png");
    background-size: cover;
}
.topBannerSection.mining{
    background-image: url("../../assets/images/Mining-scaled.jpg");
    background-size: cover;
}
.topBannerSection.projects{
    background-image: url("../../assets/images/projects-scaled.png");
    background-size: cover; 
}
.topBannerSection.crop{
    background-image: url("../../assets/images/crop-scaled.jpg");
    background-size: cover; 
}
.topBannerSection.soilandland{
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),url("../../assets/images/Soil-654669242_4156x2950-1-scaled.jpeg");
    background-size: cover; 
}
.topBannerSection.water{
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)) ,url("../../assets/images/Pittsburgh-Pennsylvania-USA-Vector-Map-1504986343_4500x3000-scaled.jpeg");
    background-size: cover; 
    background-attachment: fixed;
}
.topBannerSection.technology{
    background-image: url("../../assets/images/technology-scaled.webp");
    background-size: contain;
    background-position: center center;
    background-attachment: unset;
    height: auto;
    padding-top: 150px;
    padding-bottom: 60px;
    background-color: #000000;
}
.topBannerSection.technology::before{
    content: none;
}
.topBannerSection.aboutUsBg::before,.topBannerSection.contactBg::before,.topBannerSection.agriculture::before,.topBannerSection.mining::before,.topBannerSection.projects::before,.topBannerSection.crop::before,.topBannerSection::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #2D2D2D;
    opacity: 0.55;
}
.topBannerSection.aboutUsBg .minHeight,.topBannerSection.contactBg .minHeight,.topBannerSection.agriculture .minHeight,.topBannerSection.mining .minHeight,.topBannerSection.projects .minHeight,.topBannerSection.crop .minHeight,.topBannerSection.soilandland .minHeight,.topBannerSection.water .minHeight{
    min-height: 600px;
}
.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: 75px;
    font-weight: 800;
    line-height: 1.1em;
    color: #FFFFFF;
}
.topBannerSection h1.color{
    color: #2197D1;
    font-size: 36px;
    font-weight: 600;
    font-family: "Cairo", Sans-serif;
}
.technology p{
    color: #ffffff;
    font-size: 18px;
    margin: 1.75em 0;
    line-height: 1.9;
}
.technologyContent1 h2{
    font-family: "Poppins", Sans-serif;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #414141;
}
.technologyContent1 p{
    font-size: 18px;
    color: #414141;
    font-family: "Poppins", Sans-serif;
    line-height: 1.9;
}
.technologyContent2{
    background-color: #C4C4C4;
}
.technologyContent2 h3{
    font-family: "Poppins", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #414141;
    margin-bottom: 20px;
}
.technologyContent2 p{
    font-size: 18px;
    margin-bottom: 1.75em;
    font-family: "Poppins", Sans-serif;
    color: #414141;
    line-height: 1.9;
}
.topBannerContent{
    margin-top: 140px;
}
.projectsContent{
    padding: 60px 0;
}
.projectsContent h2,.cropContent h2{
    font-size: 32px;
    font-weight: 600;
    color: #414141;
    line-height: 1.3em;
    margin-bottom: 45px;
}
.projectsContent h6{
    margin-bottom: 1.6em;
    color: #414141;
    font-size: 18px;
    line-height: 1.8;
}
.projectsContent ul{
    padding-left: 40px;
}
.projectsContent ul.leftUl{
    padding-left: 20px;
}
.projectsContent ul,.projectsContent ul li{
    list-style: disc !important;
}
.projectsContent ul li{
    margin-bottom: 1.6em;
    color: #414141;
    font-size: 18px;
    line-height: 1.8;
}
.projectsContent ul li a{
    color: #0000ff;
    text-decoration: underline;
}
.cropContent{
    padding: 60px 0;
}

.cropContent ul li{
    margin-bottom: .7em;
    color: #414141;
    font-size: 18px;
}
.cropContent h6{
    color:#414141 ;
    margin-bottom: 6px;
    font-size: 18px;
}
.cropContent p{
    color: #414141;
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 1.6em;
}
.breadcrumb {
    --bs-breadcrumb-divider: url("../../assets/images/arrightBig.svg");
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
    padding-left: 0;
  }
.breadcrumb-item.active,.breadcrumb-item a{
    color: #ffffff;
    font-size: 20px;
    font-family: var(--fontMerriweather);
} 
.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: -110px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
}
.contactTexts h6{
    color: #13A2F0;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--fontMerriweather);
}
.contactTexts h3{
    color: #1E334B;
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
}
.contactTexts p{
    color: #828282;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: var(--fontMerriweather);
}
.contactFormSection{
    padding-top: 70px;
    padding-bottom: 70px;
    background: rgba(0, 0, 0, 0.05); 
}
.contactFormBox.new{
    height: auto;
}
.contactFormBox.new h5{
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}
.bottomAddress{
    background-color: #EFF5F7;
    padding: 64px;
}
.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;
}
.contactInfo h5{
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #FF224D;
    line-height: 1.3em;
    margin-bottom: 20px;
    margin-top: 20px;
}
.contactInfo h6{
    color: #444444;
    font-family: "Open Sans", Sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: calc(1em + 40px);
}
.contactInfoFlex i{
    color: #2197D1;
    font-size: 22px;
}
.contactInfoFlex{
    gap: 15px;
}
.contactInfoFlex p,.contactInfoFlex{
    font-size: 15px;
    color: #54595F;
}
.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: #8E9092;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--fontMerriweather);
}
#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::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; /* Safari */
    -moz-appearance: none; /* Firefox */
    background: url('../../assets/images/dropdown.svg') no-repeat right 10px center;
    background-size: 16px 16px;
    padding-right: 40px; /* Space for icon */
    width: 100%;
    cursor: pointer;
    background-color: #ffffff;
    color: #8E9092 !important;
  }
  
  /* Optional: Hide the native arrow in IE */
  .custom-select::-ms-expand {
    display: none;
  }
  .blogSingleImage{
    max-height: 351px;
  }
  .topSection{
    margin-top: -78px;
  }
  @-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%);
    background-color: #ffc107;
    right: -40px;
    color: var(--blue-dark) !important;
    background-color: #ffc107;
    border-color: #ffc107;
    z-index: 10;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    font-weight: 700;
}
.unique-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.unique-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 1px solid #2197D1;
  border-radius: 3px;
  transition: transform 0.3s ease;
}

.unique-card:hover .team-img {
  transform: scale(1.1);
}

.unique-card a{
  display: inline-block;
  color: #2197D1;
}
.unique-card a:hover{
    text-decoration: none;
}
.text-gradient {
  background: linear-gradient(45deg, #07499E, #0DCAF0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.team-desc {
  transition: max-height 0.4s ease;
  overflow: hidden;
  text-align: justify;
}

.btn-custom {
  padding: 6px 18px;
  font-size: 14px;
  border-radius: 3px;
  background: #2197D1;
  border: 1px solid #2197D1;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #052d63;
  color: #fff;
}

/* =========media Query======= */
@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;
    }
}

@media (min-width:992px) {
  .custom-dropdown:hover .custom-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .topheader.scrolled .navbar .nav-item .nav-link{
    color: #222222;
  }
    /* =======MODAL REGISTER===== */
    .modal__register {
        max-width: 900px;
    }
    .paddright_gap{
        padding-right: 38px;
    }
    .leftMarginLeft {
    flex: 0 0 233px;
   }
   .toggleIcon{
    display: none;
   }
}

@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: 1573px;
    }

    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;
    }
    /* .blogSingleImage{
        max-height: 506px;
    } */
    /* end */
}

@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:1440px) {
    .banner-hero{
        background-position: unset;
    }
    .banner-hero h1,.topBannerSection h1{
        font-size: 72px;
        line-height: 82px;
    }
    /* .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:1600px){
    .how-work{
        padding-bottom: 92px;
    }
    .leftMarginLeft {
        flex: 0 0 262px;
    }
}
@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;
    }
}
@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: 85%;
    }
    .social-links{
        gap: 15px !important;
    }
    .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:991px) {
    .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: 346px;
    }
    .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;
    }
}

@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;
    }

    .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;
    }

}

@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: 50%;
        position: fixed;
        right: -100%;
        top: 0;
        background: #fff;
        z-index: 999;
        -webkit-transition: opacity .3slinear, right .3sease-out;
        -o-transition: opacity .3s linear, right .3s ease-out;
        transition: opacity .3slinear, right .3sease-out;
        display: block;
        /* background-color: var(--cyan); */
    }
    #collapsibleNavbar.active {
        top: 0;
        right: 0;
        width: 30%;
        height: 100vh;
    }
    .navbar .navbar-nav .nav-item>.nav-link {
        font-size: 18px;
        color: #222222 !important;
    }
    .navbar .navbar-nav .nav-item{
        border-bottom: 1px solid #2197D1;
    }
    .navbar .navbar-nav .nav-item.active,.navbar .navbar-nav .nav-item:hover{
        border-bottom: 1px solid #2197D1;
    }
    .custom-menu{
        background-color: #ffffff;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        width: 100%;
    }
    .custom-item{
        padding: 10px 25px;
        font-size: 16px;
    }
    .navbar .nav-item:hover a{
        color: #333;
    }
    .dropdown-toggle i{
        display: none;
    }
    .toggleIcon{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 21px;
    }
    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%;
    }

    .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%;
    }
    .navbar .navbar-nav .nav-item>.nav-link{
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    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;
    }
}

@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;
    }

    .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%;
    }
    
    #collapsibleNavbar.active {
        width: 80%;
    }
    #header .container {
        padding: 0;
    }

    .navbar {
        background-color: transparent;
        padding: 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: 120px;
    } */

    .main .container img.bg_phone {
        position: absolute;
        top: 83%;
        width: 100px;
        height: 180px;
    }
    .banner-hero{
        min-height: 300px !important;
    }
    .banner-hero p{
        font-size: 15px;
    }
    .heading-2{
        line-height: 1.3;
    }

    .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;
    }

    /* ---------ELm------ */

    .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;
    }

    

    .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;
    } 
    .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%;
    }

    .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%;
    }

    /* 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;
    }
    .section-bg {
        height: 40%; /* Adjust for mobile */
      }
      
      /* Stack cards on mobile */
      .row > .col-md-4 {
        margin-bottom: 20px;
      }
      .right-btn{
        position: absolute;
        top: 50%;
        right:70px ;
        transform: translateY(-50%);
      }
      .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: #F3F3F3;
        opacity: 0.9;
      }
      #accordion .card-header .btn{
        text-align: left;
      }
      .topBannerSection{
        display: flex;
        align-items: center;
      }
      .topBannerSection .minHeight{
        min-height: auto !important;
      }
      .faq-item.border-0 .faq-question{
        color: var(--blue-dark);
      }
      .faq-item.border-0 .faq-answer{
        color: var(--blue-dark);
      }
      .timeline::before{
        height: 80%;
      }
      
      .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: #ffffff;
      }
      .middSec,.services-section,.testimonials,.pricing,.videSection,.news,.middSec.new{
        padding-top: 30px;
        padding-bottom: 30px;
      }
      .topBannerSection{
        height: 180px;
      }
      .topBannerSection{
        padding: 150px 0 !important;
      }
      .topBannerContent{
        margin-top: 50px;
      }
      .topBannerSection h1{
        font-size: 32px;
      }
      .breadcrumb-item.active, .breadcrumb-item a{
        font-size: 15px;
      }
      .contactFormBox,.quickQuestion.bgNone .quickQuestionContent{
        padding: 20px;
        height: auto;
        max-height: unset;
        min-height: auto;
      }
      .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;
      }
      .contactFormSection{
        padding-top: 30px;
      }
      .bottomAddress{
        margin-top: 30px;
      }
}

@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;
    }

    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;
    }

    .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%;
    }
}
@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;
    }
}

@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;
    }
}
@media only screen and (max-width:767.98px) {
.topBannerSection.aboutUsBg, .topBannerSection.contactBg, .topBannerSection.agriculture, .topBannerSection.mining, .topBannerSection.projects, .topBannerSection.crop, .topBannerSection.soilandland, .topBannerSection.water {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    display: flex;
    align-items: center;
}
}