@import url(https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap);

:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --first: #0C1E2B;
    --second: #1E79A7;
    --third: #14475D;
}


*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: #fff0;
    scroll-behavior: smooth
}


body {
    font-family: "Lexend Deca", sans-serif;
    background-color: var(--first);
}


.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #28a745
}

.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before {
    border-color: #dc3545
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff
}


::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #dfe4ff
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #0077b5
}

.main_header ul li .dropdown-menu a:hover .imgw,
.main_header ul li.dropdown:hover .dropdown-menu {
    display: block
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* button animation start */

.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--second) !important;
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 32px;
    transition: all 0.5s linear;
    overflow: hidden;
    z-index: 1;
}

.thm-btn i {
    position: relative;
    display: inline-block;
    color: white !important;
    font-size: 15px;
    transition: all 0.5s linear;
}

.thm-btn:hover i {
    color: var(--second) !important;
}

.thm-btn::before {
    position: absolute;
    content: '';
    background-color: white;
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    border-radius: 0px;
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: -1;
    transition: all 500ms ease;
}

.thm-btn:hover {
    color: var(--second) !important;
}

.thm-btn:hover:before {
    height: 500%;
}

.thm-btn-white {
    background-color: var(--first) !important;
    color: white !important;
    border: 1px solid white !important;
}

.thm-btn-btn::before {
    background-color: var(--first) !important;
    color: white !important;
}

.thm-btn-btn:hover {
    color: white !important;
    background-color: var(--first) !important;
}

/* button animation end */

/* shapes css start */
section.all-pages {
    position: relative;
}

img.top-right {
    position: absolute;
    top: -120px;
    right: 12px;
    max-height: 300px;
    z-index: -1;
    rotate: 90deg;
}

img.middle-right {
    position: absolute;
    top: 45%;
    right: 0;
    max-height: 400px;
    z-index: -1;
}

img.top-left {
    position: absolute;
    top: 2%;
    left: 0;
    max-height: 732px;
    z-index: -1;
    opacity: .8;
}

img.middle-left {
    position: absolute;
    top: 80%;
    left: 0;
    max-height: 600px;
    z-index: -1;
}

@media(max-width:991px) {
    img.top-right {
        top: -167px;
    }
}

@media(max-width:575px) {
    img.top-right {
        top: -180px;
    }
}

/* shapes css end */

/* floating wtsapp css start */

.btn_whatsapp {
    --c_green: #25d366;
    width: 40px;
    height: 40px;
    font-size: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--c_green);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
}

.sidePopup_active .btn_whatsapp {
    animation: scaleup 1.5s alternate infinite ease-in
}

body:not(.sidePopup_active) .btn_whatsapp {
    left: 45px;
    bottom: 45px;
    position: fixed;
    font-size: 22px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    z-index: 99
}

body:not(.sidePopup_active) .btn_whatsapp i {
    animation: 2s infinite ring
}

body:not(.sidePopup_active) .btn_whatsapp::after,
body:not(.sidePopup_active) .btn_whatsapp::before {
    content: "";
    left: 50%;
    position: absolute;
    transform-origin: center;
    transform: translateX(-50%);
    border: 1px solid var(--c_green);
    border-radius: 50%;
    margin: auto;
    z-index: -1
}

body:not(.sidePopup_active) .btn_whatsapp::before {
    width: 120px;
    height: 120px;
    -webkit-animation: 2.2s ease-in-out infinite animation1;
    animation: 2.2s ease-in-out infinite animation1;
    -ms-animation: animation1 2.2s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: .5
}

body:not(.sidePopup_active) .btn_whatsapp::after {
    width: 70px;
    height: 70px;
    background-color: var(--c_green);
    -webkit-animation: 1.7s ease-in-out infinite animation2;
    animation: 1.7s ease-in-out infinite animation2;
    -ms-animation: animation2 1.7s ease-out;
    -ms-animation-iteration-count: infinite;
    opacity: 1
}

@keyframes scaleup {
    0% {
        transform: scale(.8)
    }

    100% {
        transform: scale(1.1)
    }
}

@-webkit-keyframes animation1 {
    0% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.4);
        transform: translateX(-50%) scale(.4)
    }

    70% {
        opacity: .6;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .3;
        -webkit-transform: translateX (-50%) scale(.5);
        transform: translateX(-50%) scale(.5)
    }
}

@-webkit-keyframes animation2 {
    0% {
        opacity: .3;
        -webkit-transform: translateX(-50%) scale(.6);
        transform: translateX(-50%) scale(.6)
    }

    70% {
        opacity: .8;
        -webkit-transform: translateX(-50%) scale(1);
        transform: translateX(-50%) scale(1)
    }

    100% {
        opacity: .1;
        -webkit-transform: translateX(-50%) scale(.7);
        transform: translateX(-50%) scale(.7)
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    12%,
    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14%,
    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    100%,
    20% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

@media(max-width:767px) {
    body:not(.sidePopup_active) .btn_whatsapp {
        left: 20px;
        bottom: 20px
    }

    body:not(.sidePopup_active) .btn_whatsapp::before {
        width: 75px;
        height: 75px
    }

    body:not(.sidePopup_active) .btn_whatsapp::after {
        width: 60px;
        height: 60px
    }
}

/* floating wtsapp css end */

/* chatbot css start */

.chat-box .chat-name {
    font-size: 15px;
    font-weight: 400;
}

.chat-box .chat-title {
    font-size: 10px;
    font-weight: 300;
}

.chat-ui-wrapper .message-toggle {
    position: fixed;
    bottom: 22px;
    right: 30px;
    border-radius: 50%;
    background: var(--first);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
}

.chat-ui-wrapper .message-toggle i {
    color: #fff;
    font-size: 26px;
}

.chat-ui-wrapper .quick-popup {
    position: fixed;
    bottom: 75px;
    right: 30px;
    width: 280px;
    z-index: 998;
}

.chat-ui-wrapper .quick-popup.hide {
    display: none;
}

/* ================= BUBBLES ================= */
.chat-ui-wrapper .bubble {
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    width: fit-content;
    text-align: center;
    font-size: 14px;
    opacity: 0;
    transform: translateY(30px);
    animation: bubbleUp 0.5s ease forwards;
    margin-left: auto;
}

/* Animation Order (Bottom → Up) */
.chat-ui-wrapper .bubble:nth-child(3) {
    animation-delay: 0.2s;
}

.chat-ui-wrapper .bubble:nth-child(2) {
    animation-delay: 0.6s;
}

.chat-ui-wrapper .bubble:nth-child(1) {
    animation-delay: 1s;
}

@keyframes bubbleUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-ui-wrapper .bubble:hover {
    background: #fff;
    transform: translateX(-5px);
}

/* ================= CHATBOX ================= */
.chat-ui-wrapper .chat-box {
    position: fixed;
    bottom: 18px;
    right: 28px;
    width: 350px;
    background: var(--first);
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #ffffff8a;
}

.chat-ui-wrapper .chat-box.active {
    display: flex;
}

/* Header */
.chat-ui-wrapper .chat-header {
    background: var(--first);
    padding: 15px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff45;

}

/* Body */
.chat-ui-wrapper .chat-body {
    padding: 15px;
    height: 400px;
    overflow-y: auto;
}

.chat-ui-wrapper .bot-msg {
    background: #f1f3f5;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 300;
}

/* Input */
.chat-ui-wrapper .chat-input {
    padding: 10px;
    position: relative;
}

.chat-ui-wrapper .chat-input i {
    position: absolute;
    color: white;
    top: 19px;
    right: 21px;
}

.chat-ui-wrapper .chat-input input {
    width: 100%;
    border-radius: 12px;
    border: none;
    padding: 8px 15px;
    background: transparent;
    border: 1px solid #ffffff8a;
    color: white;
}

.chat-ui-wrapper .chat-input input::placeholder {
    color: #ffffff8a;
}

.chat-ui-wrapper .chat-input input:focus {
    outline: none;
}

@media(max-width:767px) {
    .chat-ui-wrapper .message-toggle {
        display: none;
    }

    .chat-ui-wrapper .quick-popup {
        display: none;
    }
}

/* ================= RESPONSIVE ================= */
@media(max-width:576px) {
    .chat-ui-wrapper .chat-box {
        width: 95%;
        right: 2.5%;
    }
}

/* chatbot css end */

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

/* Header css start */

.down-header {
    position: relative;
}

.down-header .nav-item.dropdown {
    position: static;
}

a.ct.btn.chat_pop,
main.ct.btn.chat_pop {
    border-radius: 30px;
    font-size: 13px;
    padding: 3px 14px;
    color: #1e79a7;
    background: white;
    font-weight: 300;
    cursor: pointer;
}

.header-container {
    margin: 0 50px;
}

.down-header nav .navbar-toggler:focus:not(:focus-visible) {
    box-shadow: none;
}

.tophed {
    padding: 7px 0;
    position: relative;
}

.drop-in small {
    font-weight: 200 !important;
}

.tophed ul {
    margin: 0
}

.tophed ul li {
    margin-right: 16px;
    display: inline-flex;
    color: #626262;
    font-weight: 600
}

.tophed ul li img {
    width: 24px;
    margin-right: 3px;
    height: 21px
}

a.ct.btn.chat_pop {
    border-radius: 30px;
    font-size: 13px;
    padding: 4px 14px;
    color: white;
    background: var(--second);
    font-weight: 300;
    cursor: pointer;
    border: none;
}

.tophed ul li a {
    color: white;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.tophed ul {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    flex-wrap: wrap;
    padding: 0;
}

.tophed a.btn {
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    font-weight: 400;
    margin-left: 7px;
    padding: 6px 23px;
    font-size: 13px;
    background-color: transparent !important;
}

.tophed ul li .number_null1 img {
    width: auto !important;
    height: 16px !important;
}

.main_header ul li .dropdown-menu a:hover,
.tophed a.btn:hover {
    background: #1e79a7;
    color: #fff
}


.main_header {
    padding: 5px 0;
    width: 100%
}

.main_header ul li .dropdown-menu {
    padding: 0;
    background: var(--first);
    overflow: hidden;
    margin-top: 0;
    border: 1px solid #4B4B4B;
    box-shadow: 0 7px 15px #00000029;
    min-width: 240px;
    position: absolute;
    width: 100%;
    left: 0;
}

.lgsin li.signp a {
    background: #1e79a7;
    padding: 8px 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none
}

.main_header ul li .dropdown-menu::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .8em solid;
    border-right: .8em solid #fff0;
    border-bottom: 0;
    border-left: .8em solid #fff0;
    color: #1f7aa9;
    transform: rotate(180deg);
    position: absolute;
    top: -15px;
    z-index: 999999999999;
    margin-top: -1px
}

.lgsin li {
    float: left;
    text-align: right
}

.main_header ul li .dropdown-menu a {
    font-size: 14px;
    padding: 10px 15px;
    color: #9a9999;
    font-weight: 300
}

.main_header ul li .dropdown-menu a img {
    width: 20px;
    margin-right: 8px
}

.lgsin li a {
    color: #4e4e4e;
    padding: 10px 30px;
    border: 2px solid #027b7a;
    border-radius: 7px
}

.lgsin li.signp a {
    border: #ffdead;
    border-radius: 30px;
}



.lgsin li.signp a:hover {
    opacity: 1;
}

.lgsin {
    margin-left: 40px
}

.main_header .navbar-dark {
    float: right;
    padding: 0;
    margin-top: 0
}

.main_header .navbar-dark .navbar-nav .nav-link {
    color: white;
    padding: 9px 23px;
    font-weight: 300;
    text-decoration: none;
    text-transform: uppercase
}

.main_header .navbar-dark .navbar-nav .nav-link:hover {
    color: #d1d0d0;
}

.main_header ul li .dropdown-menu a:hover img {
    display: none;
    float: left
}

.main_header ul li .dropdown-menu a .imgw {
    display: none
}


.lgsin {
    display: inline-block;
}

.lgsin ul {
    margin: 0;
}

.down-header .navbar .navbar-collapse {
    margin: auto;
    /* display: flex; */
    justify-content: center;
}

.down-header .navbar {
    width: 100%;
    position: static;
}

.main_header ul li .dropdown-menu a img {
    width: 24px;
    margin-right: 8px;
    margin-top: 5px;
}

.drop-in {
    line-height: 17px;
    color: white;
}

.industry-dropdown {
    width: 855px;
    position: absolute;
    top: 36px;
    left: 0px !important;
    padding: 15px !important;
}

.hire-dropdown {
    width: 855px;
    position: absolute;
    top: 36px;
    left: 0px !important;
}

.industry-dropdown p {
    font-weight: 200;
    font-size: 13px;
    color: white;
}

.industry-dropdown .provide,
.industry-dropdown .service {
    font-weight: 300 !important;
    margin-bottom: 5px;
    color: white;
}

.main_header ul li .industry-dropdown a {
    padding: 10px 7px !important;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 5px;
}

.main_header ul li .industry-dropdown a:hover {
    background: #1e79a7;
    color: #fff !important;
}

.main_header ul li .industry-dropdown .shark-img a {
    padding: 0 !important;
    display: contents !important;
}

.main_header ul li .industry-dropdown .shark-img a img {
    width: 190px !important;
    height: auto !important;
    margin-top: 31% !important;
}

.main_header ul li .industry-dropdown .shark-img a img:hover {
    display: block !important;
}


@media(max-width:1699.98px) {

    .main_header .navbar-dark .navbar-nav .nav-link {
        padding: 9px 12px;
        font-size: 14px
    }

    .lgsin li.signp a {
        font-size: 14px
    }

    .lgsin {
        margin-left: 10px
    }

    .main_header .navbar-dark .navbar-nav .nav-link {
        padding: 9px 16px;
        font-size: 14px;
    }

    .industry-dropdown {
        width: 830px;
        position: absolute;
        left: 0px !important;
    }

    .hire-dropdown {
        width: 830px;
        position: absolute;
        left: 0px !important;
    }
}

@media(max-width:1359.98px) {

    .lgsin {
        margin-left: 28px
    }


    .main_header .navbar-dark .navbar-nav .nav-link {
        padding: 9px 10px
    }
}

@media(max-width:1199.98px) {

    .tophed ul li {
        margin-right: 13px
    }

    .header-container {
        margin: 0 38px;
    }

    .main_header .navbar-dark .navbar-nav .nav-link {
        padding: 9px 8px;
        font-size: 12px;
    }

    .lgsin {
        margin-left: 3px
    }

    .main_header {
        padding: 12px 0
    }

    .lgsin li.signp a {
        padding: 8px 8px;
        font-size: 12px
    }

    .industry-dropdown {
        width: 711px;
        padding-right: 21px !important;
        left: 0px !important;
    }

    .hire-dropdown {
        width: 711px;
        padding-right: 21px;
        left: 0px !important;
    }

    .main_header ul li .industry-dropdown a {
        font-size: 12px;
        padding: 10px 6px !important;
    }

    .main_header ul li .industry-dropdown .provide,
    .main_header ul li .industry-dropdown .service {
        font-size: 13px;
    }

    .main_header ul li .industry-dropdown .shark-img a img {
        width: 157px !important;
        height: auto !important;
        margin-top: 34% !important;
    }

    .main_header ul li .industry-dropdown p {
        font-size: 12px;
    }

    .main_header ul li .dropdown-menu a img {
        margin-right: 5px;
    }
}

@media(max-width:991.98px) {

    .lgsin li.signp a {
        padding: 6px 11px;
        display: inline-block;
        top: 5px;
    }

    .lgsin {
        margin-top: 0
    }

    span.number_null {
        display: none
    }

    .main_header .navbar-dark {
        width: 100%;
        margin-top: 10px;
        background: transparent;
        border: 1px solid #eaeaea;
        position: relative;
    }

    .lgsin {
        margin-left: 20px;
        width: 230px;
        right: 0;
        position: absolute;
        top: -54px
    }

    .lgsin li {
        float: right;
        text-align: right
    }

    .main_header {
        padding: 10px 0
    }

    .main_header .navbar-nav {
        margin: auto
    }

    .main_header .navbar-dark .navbar-nav .nav-link {
        padding: 9px 19px
    }

    .down-header {
        border: none;
        padding: 0;
        border-radius: 0;
    }

    .industry-dropdown {
        width: 691px;
        padding-right: 21px !important;
        left: 0px !important;
    }

    .number_null1 {
        display: none !important;
    }

    .hire-dropdown {
        width: 691px;
        padding-right: 21px;
        left: 0px !important;
    }

    .main_header ul li .industry-dropdown .shark-img a img {
        width: 145px !important;
        height: auto !important;
        margin-top: 36% !important;
    }

    .main_header ul li .industry-dropdown a img {
        margin-right: 5px !important;
    }

    .main_header ul li .industry-dropdown a {
        padding: 10px 4px !important;
    }

    .main_header ul li .industry-dropdown a {
        font-size: 11px;
    }

    .industry-dropdown .provide,
    .industry-dropdown .service {
        font-size: 14px;
    }

    .industry-dropdown p {
        font-size: 12px;
    }
}

@media(max-width:767.98px) {

    .main_header ul li .dropdown-menu::after,
    .main_header ul li.dropdown:hover .dropdown-menu,
    .tophed ul li span.number_null {
        display: none
    }

    .main_header .navbar-nav li .dropdown-menu.show {
        display: block !important;
        background: var(--third);
        border-radius: 0;
    }

    .main_header .navbar-dark li.nav-item.dropdown.show .dropdown-toggle {
        background: #1f7aa9;
    }

    .main_header .navbar-toggler {
        color: white !important;
        position: absolute;
        right: 0;
        top: -33px;
        font-size: 25px;
        border: 0;
        outline: 0;
        padding: 0
    }

    .lgsin {
        right: 40px;
        top: -42px
    }

    .main_header .navbar-dark {
        width: 100%;
        margin-top: 0;
        background: 0;
        border: 0
    }

    .navbar-toggler {
        outline: 0;
        box-shadow: none
    }

    .tophed a.btn {
        margin-left: 3px;
        font-size: 13px
    }

    .tophed ul li img {
        width: 24px;
        height: 21px
    }

    .tophed ul li .mail {
        width: 20px;
        height: 20px
    }

    .tophed ul li {
        margin-right: 4px
    }

    .main_header .navbar-dark .navbar-collapse a {
        color: #fff !important;
        font-weight: 500 !important
    }

    .main_header .navbar-dark .navbar-collapse {
        background: #1e79a7;
        width: 200px;
        z-index: 99999;
        margin-top: 10px
    }


    .main_header .navbar-dark .navbar-nav li+li {
        border-top: 1px solid #ffffff2e
    }

    .main_header .navbar-nav {
        margin: 0 !important
    }

    .down-header .navbar .navbar-collapse {
        margin: auto;

        margin-top: 10px;
    }

    .down-header .navbar-nav {
        margin: 0px !important;
        width: 100%;
    }

    .industry-dropdown {
        width: auto;
    }

    .main_header ul li .industry-dropdown .shark-img a img {
        margin-top: 0% !important;
    }

    .industry-dropdown .service {
        margin-top: 15px;
    }

    .main_header .navbar-nav li .industry-dropdown.show a:hover {
        color: #fff !important;
    }

    .main_header ul li .industry-dropdown a img {
        margin-right: 8px !important;
    }

    .main_header .navbar-nav li .dropdown-menu.show a {
        color: #9a9999 !important;
        font-weight: 300 !important;
    }

    .main_header .navbar-nav li .dropdown-menu.show a:hover {
        color: white !important;
    }

    .main_header ul li .industry-dropdown a {
        font-size: 14px !important;
    }
}

@media(max-width:575.98px) {

    .tophed a.btn {
        margin-left: 0
    }

    .header-container {
        margin: 0 16px;
    }

    .Development,
    .main_header .navbar-nav li .dropdown-menu.show a img {
        height: auto;
    }

    .tophed ul {
        margin: 0;
        position: absolute;
        top: 3px;
    }


    .lgsin {
        top: -39px;
        right: 30px
    }

    .lgsin .whatsapp a i {
        color: white;
    }

    .lgsin li.signp a {
        padding: 12px 8px;
        font-size: 12px
    }

    .main_header .navbar-toggler {
        top: -29px;
        padding: 0
    }

    .tophed ul {
        margin: 0;
        position: absolute;
        top: 0;
        left: 14px;
    }

    .lgsin li.whatsapp a {
        font-size: 25px;
        border: #ffdead;
        padding: 0;
        margin-right: 9px;
        top: 2px;
        position: relative;
        text-decoration: none;
    }
}

@media(max-width:480px) {

    .tophed .text-right {
        text-align: center !important;
        padding-left: 15px !important
    }

    .tophed {
        text-align: center
    }

    .tophed ul li {
        margin-right: 8px !important
    }

    .main_header .navbar-toggler {
        top: -29px;
    }

    .lgsin li.signp a {
        padding: 8px 7px;
        font-size: 11px
    }

    .lgsin {
        top: -32px;
    }

    .tophed ul li img {
        width: 24px;
        height: 21px
    }

    .tophed ul li .mail {
        width: 20px !important;
        height: 20px !important
    }

    .tophed a.btn {
        font-size: 13px
    }

    .main_header img {
        height: 38px;
        width: auto
    }

    .tophed a.btn {
        padding: 4px 13px;
        margin: 4px 0 0 !important
    }

    a.ct.btn.chat_pop {
        font-size: 13px;
        padding: 4px 11px
    }

    .tophed {
        display: none
    }

    .main_header ul li .industry-dropdown a {
        font-size: 9px;
    }

    .lgsin li.whatsapp a {
        top: -3px
    }

    .tophed ul {
        position: initial !important
    }
}

/* Header css end */

/* footer css start */

.subscribe_foot ul li a:hover i {
    color: #fff
}

.subscribe_foot ul li,
section#digi_footer a.development {
    display: inline-block
}

section#digi_footer .footer_logo h2 {
    margin-top: 40px
}

.Development {
    height: 200px;
    padding: 55px 0
}

section#digi_footer .other_link_foot ul li a:hover {
    font-weight: 500
}

.request_btn_foot {
    margin-top: 50px
}

.subscribe_foot ul li:not(:last-child) {
    margin-right: 20px
}

.footer_logo p,
.subscribe_foot p,
section#digi_footer .footer_logo ul li a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

section#digi_footer {
    padding: 40px 0 0;
}

.footer_logo p {
    margin: 20px 0 0
}

.footer_logo a.foot_img img {
    width: 170px;
    height: 62px
}

section#digi_footer h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px
}

section#digi_footer .footer_logo ul {
    padding-left: 0;
    list-style: none
}

section#digi_footer .footer_logo ul li {
    color: #fff;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px
}

section#digi_footer .footer_logo ul li i {
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 16px;
    top: 3px
}

.request_btn_foot p a.btn {
    border-radius: 5px;
    background: #fff;
    color: #000;
    font-weight: 400;
    width: 255px;
    height: 45px;
    font-size: 16px;
    text-align: inherit;
    line-height: 30px
}

.request_btn_foot p a.btn img {
    width: 24px;
    margin-right: 6px;
    height: 22px
}

section#digi_footer a.development img {
    width: 175px !important;
    height: 150px
}

section#digi_footer .other_link_foot ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 40px
}

section#digi_footer .other_link_foot ul li a {
    color: #fff;
    font-size: 14px;
    transition: .3s;
    text-decoration: none;
}

section#digi_footer .other_link_foot ul li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 20px
}

.subscribe_foot button {
    border-radius: 0 5px 5px 0;
    background: #1d7aa9;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 300;
    height: 40px;
    width: 70px;
    font-size: 16px
}

.subscribe_foot input {
    height: 40px;
    border-radius: 5px;
    border: 0;
    font-size: 15px;
    font-weight: 300
}

.subscribe_foot p.h6 {
    color: #aaa;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 300;
    border-bottom: 1px solid #aaa;
    padding-bottom: 10px
}

.subscribe_foot ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0
}

.subscribe_foot ul li a {
    background: #fff;
    width: 46px;
    height: 46px;
    display: block;
    text-align: center;
    line-height: 46px;
    border-radius: 50%;
    color: #121619;
    padding-left: 0;
    font-size: 20px;
    transition: .2s
}

.subscribe_foot ul li a:hover {
    background: #1d7aa9
}


a.development img {
    width: 160px !important
}

@media(max-width:1699.98px) {

    .subscribe_foot ul li:not(:last-child) {
        margin-right: 2px
    }

    .subscribe_foot ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px
    }
}

@media(max-width:1599.98px) {

    .subscribe_foot ul li:not(:last-child) {
        margin-right: 8px
    }
}

@media(max-width:1399.98px) {

    a.development {
        bottom: 0
    }

    .request_btn_foot p a.btn img {
        width: 24px;
        margin-right: 4px;
        height: 22px
    }

    .request_btn_foot,
    section#digi_footer .footer_logo h2 {
        margin-top: 20px
    }

    .request_btn_foot p a.btn {
        width: 225px;
        font-size: 14px
    }

    .subscribe_foot ul li:not(:last-child) {
        margin-right: 2px
    }

    .subscribe_foot ul li a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px
    }

    section#digi_footer .other_link_foot ul li {
        margin-bottom: 10px
    }

    section#digi_footer h2 {
        margin-bottom: 15px
    }

    section#digi_footer .other_link_foot ul {
        margin-bottom: 22px
    }
}

@media(max-width:1365.98px) {

    a.development img {
        width: 150px !important
    }
}

@media(max-width:1199.98px) {

    .subscribe_foot button {
        width: 120px
    }


    .Development {
        padding: 46px 0
    }

    .subscribe_foot ul {
        margin: 10px 0 20px
    }

    .subscribe_foot p.h6 {
        border: 0
    }

    .subscribe_foot {
        border-top: 1px solid #aaa;
        padding-top: 20px;
        margin-top: 15px
    }

    .request_btn_foot p a.btn {
        margin-right: 10px;
        margin-bottom: 10px
    }

    .other_link_foot.pl-4 {
        padding-left: 0 !important
    }

    section#digi_footer .footer_logo ul li {
        margin-bottom: 15px
    }

    .request_btn_foot {
        margin-top: 15px;
        margin-bottom: 20px
    }

    .request_btn_foot p {
        display: inline
    }

    .col.my_col_foot {
        max-width: 100% !important;
        flex-basis: auto !important
    }

    section#digi_footer .col {
        max-width: 33.3%;
        flex-basis: content
    }

    a.development img {
        width: 123px !important
    }
}

@media(max-width:991.98px) {

    .subscribe_foot ul li:not(:last-child) {
        margin-right: 10px
    }

    .col.my_col_foot_wd {
        max-width: 100% !important
    }

    .Development {
        padding: 40px 0
    }

    a.development {
        left: inherit;
        bottom: 0;
        right: 0
    }
}

@media(max-width:767.98px) {

    .subscribe_foot input {
        font-size: 14px
    }

    section#digi_footer a.development img {
        width: 130px !important;
        height: 111px
    }

    a.development {
        height: 130px;
        width: 130px;
        bottom: 35px
    }

    a.development img {
        width: 130px !important
    }

    section#digi_footer .footer_logo ul li {
        margin-bottom: 15px
    }

    .subscribe_foot button {
        width: 80px;
        font-size: 14px
    }

    section#digi_footer {
        padding: 25px 0 0
    }

    .request_btn_foot p {
        display: inline-block;
        margin-top: 7px;
        margin-right: 6px
    }

    .request_btn_foot {
        margin-bottom: 20px
    }
}

@media(max-width:575px) {

    section#digi_footer .footer_logo ul li {
        margin-bottom: 12px
    }

    .Development {
        text-align: center
    }

    a.development {
        bottom: 0;
        position: relative;
        right: 0
    }

    .footer_logo a.foot_img img {
        visibility: initial !important
    }

    .Development {
        height: auto
    }

    .subscribe_foot {
        padding-top: 0;
        margin-top: 15px
    }

    section#digi_footer .footer_logo ul,
    section#digi_footer .other_link_foot ul {
        margin-bottom: 0
    }

    section#digi_footer .other_link_foot ul li {
        margin-bottom: 7px
    }

    section#digi_footer h2 {
        margin-bottom: 10px;
        border-bottom: 1px solid #aaaaaaad;
        padding-bottom: 8px;
        margin-top: 20px
    }

    .request_btn_foot {
        margin-bottom: 0;
        margin-top: 10px
    }

    .request_btn_foot p a.btn {
        margin-bottom: 0;
        width: 210px;
        margin-right: 4px
    }

    section#digi_footer .col {
        max-width: 100%;
        flex-basis: auto
    }

}

@media(max-width:480px) {

    .request_btn_foot,
    section#digi_footer .footer_logo ul li {
        margin-bottom: 10px
    }

    section#digi_footer .footer_logo ul {
        margin-bottom: 0
    }

    .request_btn_foot {
        margin-top: 8px
    }

    section#digi_footer .other_link_foot ul li {
        margin-bottom: 7px
    }

    section#digi_footer .footer_logo h2 {
        margin-top: 15px
    }

    .other_link_foot.pl-4 {
        padding-left: 0 !important
    }

    .request_btn_foot p {
        margin-right: 0;
        margin-bottom: 0
    }
}

/* footer css end */

/* home page css start */

/* banner section start */

.home-banner {
    color: white;
    padding: 30px 0;
    position: relative;
    min-height: 100vh;
    min-height: calc(100vh - 96.5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-banner img.chat-bg-one {
    max-width: 90px;
    position: absolute;
    right: 117px;
    opacity: .2;
    top: 162px;
}

.home-banner img.chat-bg-two {
    max-width: 72px;
    position: absolute;
    right: 434px;
    bottom: 230px;
}

.home-banner img.chat-bg-three {
    max-width: 120px;
    position: absolute;
    left: 193px;
    top: 320px;
}

.home-banner .top-span {
    border: 1px solid #BFBFBF;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 12px;
    text-align: center;
    margin: auto;
    display: flex;
    width: fit-content;
    margin-bottom: 14px;
}

.home-banner-h1 {
    text-align: center;
    max-width: 1046px;
    margin: auto;
    margin-top: 0;
    line-height: 83px;
    font-size: 55px;
}

.home-banner .home-underline {
    max-width: 173px;
}

.home-banner-des {
    margin: auto;
    margin-top: 14px;
    max-width: 715px;
    text-align: center;
    font-weight: 300;
    font-size: 16px;
}

.home-banner .banner-btn {
    height: 42px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 25px !important;
}

.home-banner svg {
    height: calc(100% + 20px);
    left: 50%;
    overflow: visible;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 20px);
}

.home-banner svg path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: draw 15s ease infinite;
}

@keyframes draw {
    0% {
        stroke-dashoffset: 1500;
    }

    10% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.home-banner ul.home-check {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid #FFFFFF;
    padding: 5px 20px;
    width: fit-content;
    max-width: 100%;
    margin: 16px auto 0;
    border-radius: 33px;
    list-style: none;
    font-size: 13px;
    font-weight: 300;
}

.home-banner .home-check li:not(:last-child) {
    border-right: 1px solid #ffffff9e;
}

.home-banner .home-check li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 26px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 300;
}

.home-banner .banner-btn .btn-img2 {
    display: none;
    transition: .3s;
}

.home-banner .banner-btn:hover .btn-img1 {
    display: none;
    transition: .3s;
}

.home-banner .banner-btn:hover .btn-img2 {
    display: block;
}

.home-banner .banner-stats ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin-top: 50px;
    padding: 0;
}

.home-banner .banner-stats ul li {
    padding-right: 56px;
    padding-left: 56px;
}

.home-banner .banner-stats li+li {
    border-left: 1px solid #d7d7d7c0;
    padding-left: 56px;
}

.home-banner .banner-stats .stat-number {
    color: var(--second);
    font-size: 32px;
    font-weight: 500;
}

.home-banner .banner-stats .stat-p {
    color: white;
    font-size: 14px;
    font-weight: 300;
}

.home-banner .floating-icon {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    max-width: 80px;
}

@media(max-width:1199.98px) {
    .home-banner .banner-stats ul li {
        padding-right: 38px;
    }

    .home-banner .banner-stats li+li {
        padding-left: 38px;
    }

    .home-banner-h1 {
        font-size: 47px;
    }
}


@media(max-width:991.98px) {
    .home-banner .banner-stats ul li {
        padding-right: 21px;
    }

    .home-banner .banner-stats li+li {
        padding-left: 21px;
    }

    .home-banner {
        min-height: calc(100vh - 154.13px);
    }

    .home-banner-h1 {
        line-height: 59px;
        font-size: 36px;
    }

    .home-banner .banner-stats .stat-p {
        color: white;
        font-size: 12px;
    }

    .home-banner .banner-stats .stat-number {
        color: var(--second);
        font-size: 26px;
    }

    .home-banner .home-check li {
        padding: 6px 14px;
        font-size: 11px;

    }
}

@media(max-width:767px) {
    .home-banner-h1 {
        font-size: 28px;
    }

    .home-banner-des {
        margin-top: 25px;
    }

    .home-banner ul.home-check {
        padding: 5px 14px;
        font-size: 11px;
    }

    .home-banner .home-check li {
        gap: 6px;
        padding: 6px 6px;
    }

    .home-banner .banner-stats ul li {
        padding-right: 15px;
    }

    .home-banner .banner-stats li+li {
        padding-left: 15px;
    }

    .home-banner .banner-stats .stat-number {
        font-size: 24px;
    }

    .home-banner .banner-stats .stat-p {
        font-size: 10px;
    }

    .home-banner {
        min-height: calc(100vh - 107.8px);
    }

    .home-banner .banner-stats ul li {
        padding-left: 18px;
    }
}

@media (max-width: 576px) {

    .home-banner ul.home-check {
        width: 100%;
        border-radius: 20px;
        align-items: stretch;
        flex-direction: column;
    }

    .home-banner .home-check li {
        justify-content: center;
        border-right: none;
        border: none;
    }

    .home-banner-h1 {
        font-size: 24px;
        line-height: 49px;
    }

    .home-banner-des {
        margin-top: 20px;
        font-size: 14px;
    }

    .home-banner .home-check li:not(:last-child) {
        border-right: 1px solid #ffffff9e;
        border: none;
    }

    .home-banner .banner-stats li+li {
        padding-left: 8px;
        border: none;
    }

    .home-banner .banner-stats ul li {
        padding-right: 8px;
    }
}

@media(max-width:480px) {
    .home-banner-h1 {
        font-size: 24px;
        line-height: 41px;
    }

    .home-banner-des {
        margin-top: 15px;
        font-size: 14px;
    }

    .home-banner .banner-btn {
        font-size: 14px;
        font-weight: 400;
    }

    .home-banner .banner-stats ul {
        margin-top: 37px;
    }

    .home-banner {
        min-height: calc(100vh - 58px);
    }
}

/* banner section end */

/* home brand start */

.home-h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
}

.home-p {
    color: #FFFFFFCC;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 16px;
}

.home-p span {
    color: var(--second);
}

.home-brands .logo-slider .slick-track {
    display: flex;
    align-items: center;
}

.home-brands .logo-box {
    width: 180px;
    height: 65px;
    margin: 0 12px;
    border: 1px solid #F3F4F6;
    border-radius: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    background: white;
}

.home-brands .logo-box:hover {
    border-color: var(--second);
    box-shadow: 0 0 15px rgb(30, 121, 167, 0.6);
}

.home-brands {
    margin-bottom: 30px;
}

@media(max-width:991px) {
    .home-h2 {
        font-size: 30px;
    }
}

@media(max-width:767px) {
    .home-h2 {
        font-size: 24px;
    }
}

@media(max-width:575px) {
    .home-h2 {
        font-size: 22px;
    }

    .home-p {
        font-size: 13px;
    }
}

@media(max-width:480px) {
    .home-h2 {
        font-size: 19px;
    }
}

/* home brand end */

/* home impact start */

.new-home-impact {
    padding: 30px 0;
}

.new-home-impact .nav-link .white-img {
    display: none;
}

.new-home-impact .nav-link.active .white-img {
    display: block;
    height: 28px;
    width: 28px;
}

.new-home-impact .nav-link.active .grey-img {
    display: none;

}

.new-home-impact .nav-link .grey-img {
    height: 28px;
    width: 28px;
}




.new-home-impact .nav-link.active {
    border: none;
    background-color: #1E79A7;
    border-radius: 7px;
}

.new-home-impact .nav-tabs {
    border: 1px solid #9CA3AF !important;
    width: fit-content;
    margin: auto;
    padding: 9px;
    border-radius: 10px;
}

.new-home-impact .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
}

.new-home-impact .new-home-impact-bg {
    position: relative;
    max-width: 1218px;
    margin: auto;
}

.new-home-impact .home-impact-top .case {
    border: 1px solid #FFFFFF;
    width: fit-content;
    margin: auto;
    padding: 3px 10px;
    background: transparent;
    border-radius: 5px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
}


.new-home-impact .grocery-content {
    position: relative;
    left: 27px;
    margin-top: 63px;
}

.new-home-impact .grocery-content .img-one img {
    max-height: 541px;
}

.new-home-impact .grocery-content .img-two {
    position: absolute;
    left: 57px;
    /* right: 0; */
    /* margin: auto; */
    /* display: flex
; */
    top: 14px;
    z-index: 3;
    /* bottom: 0; */
    /* margin: auto; */
}

.new-home-impact .grocery-content .img-two img {
    max-height: 511px;
    position: relative;
    z-index: 2;
    transform: rotate(-1deg);
}

.new-home-impact .grocery-content .grocery-right {
    background: #00385466;
    position: relative;
    left: -98px;
    z-index: 1;
    color: white;
    padding: 35px 30px 35px 115px;
    backdrop-filter: blur(43px);
    border-radius: 25px;
}

.new-home-impact .grocery-content .grocery-right p {
    color: #FFFFFFB2;
    font-size: 15px;
    font-weight: 300;
}

.new-home-impact .grocery-content .grocery-ul h3 {
    color: #FFFFFF !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    margin-top: 0;
}

.new-home-impact .grocery-content .grocery-ul {
    background: #3C356375;
    padding: 6px 10px;
    border-radius: 7px;
}

.new-home-impact .grocery-content .grocery-ul li {
    list-style: none;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px;
    margin-top: 14px;
}

.new-home-impact .grocery-content .grocery-ul ul {
    /* gap: 20px; */
    flex-wrap: wrap;
    margin: 0;
}

.new-home-impact .grocery-content .grocery-btn {
    display: flex;
    margin-top: 20px;
    gap: 18px;
}

.new-home-impact .grocery-content .grocery-btn .btn {
    cursor: pointer;
}

.new-home-impact .grocery-content .grocery-btn .get-one {
    background: #1E79A7;
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-btn .play-one {
    border: 1px solid #BCBCC5;
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-btn .read-one {
    color: white;
    font-size: 13px;
}

.new-home-impact .grocery-content .grocery-ul li+li {
    border-left: 1px solid #9CA3AF;
}

.new-home-impact-bg .wts-app {
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    right: 15px;
    gap: 21px;
    top: 57px;
}

.new-home-impact-bg .wts-app img {
    width: 60px;
}

.new-home-impact .grocery-right-mob {
    display: none;
}

@media(max-width:1599.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -117px;
    }

}

@media(max-width:1399.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -150px;
    }

}

@media (max-width: 1284.98px) {
    .new-home-impact .grocery-content .grocery-right {
        left: -128px;
    }
}

@media(max-width:1199px) {
    .new-home-impact .grocery-content .grocery-right h3 {
        font-size: 22px;
    }

    .new-home-impact .grocery-content .grocery-right p {
        font-size: 13px;
    }

    .new-home-impact .grocery-content .grocery-ul h3 {
        font-size: 19px !important;
    }

    .new-home-impact .grocery-content .grocery-ul li {
        font-size: 11px;
    }

    .new-home-impact .grocery-content .grocery-right {
        padding: 22px 30px 22px 115px;
    }
}

@media(max-width:991px) {

    .new-home-impact .grocery-content {
        position: static;
        margin-top: 30px;
    }

    .new-home-impact .grocery-content .img-two {
        position: static;
    }

    .new-home-impact .grocery-content .grocery-right {
        background: #00385466;
        position: static;
    }

    .new-home-impact .grocery-content .grocery-right {
        padding: 20px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 29px;
        width: 29px;
    }

    .new-home-impact .nav-link.active .white-img {
        display: block;
        width: 30px;
        height: 30px;
    }


    .img-two-col {
        display: none;
    }

    .grocery-content .img-one {
        display: none;
    }
}

@media (max-width: 768px) {
    .new-home-impact .grocery-content .grocery-right h3 {
        color: white;
        margin-top: 0;
        font-weight: 400;
    }

    .new-home-impact .grocery-content .grocery-ul li+li {
        border-left: none;
    }

    .new-home-impact .grocery-content .grocery-right h4 {
        font-size: 20px;
        font-weight: 400;
    }

    .new-home-impact .grocery-right-mob {
        display: none;
    }

    .new-home-impact .new-vision-ul {
        align-items: center;
    }

    .new-home-impact .nav-link.active {
        padding: 4px 10px;
    }

    .new-home-impact .nav-link {
        padding: 4px 9px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 24px;
        width: 24px;
    }

    .new-home-impact .nav-link.active .white-img {
        display: block;
        width: 27px;
        height: 27px;
    }
}

@media(max-width:575px) {
    .new-home-impact .grocery-content .grocery-ul li {
        margin-top: 11px;
    }

    .new-home-impact .grocery-right {
        display: none;
    }

    .new-home-impact .grocery-right-mob {
        display: block;
    }

    .new-home-impact .wts-app {
        display: none;
    }


    .new-home-impact .new-home-impact-bg {
        position: relative;
        border-radius: 8px;
        padding: 10px;
    }
}

@media(max-width:480px) {
    .new-home-impact .grocery-content .grocery-ul li {
        padding: 0 10px;
        margin-top: 5px;
    }

    .new-home-impact .grocery-content .grocery-btn .btn {
        cursor: pointer;
        padding: 4px 0;
    }

    .new-home-impact .grocery-content .grocery-right h3 {
        font-size: 19px;
    }

    .new-home-impact .grocery-content .grocery-right p {
        font-size: 12px;
    }

    .new-home-impact .grocery-content .grocery-right h4 {
        font-size: 16px;
    }

    .new-home-impact .nav-link.active {
        padding: 4px 6px;
    }

    .new-home-impact .nav-link.active .white-img {
        width: 20px;
        height: 20px;
    }

    .new-home-impact .nav-link .grey-img {
        height: 20px;
        width: 20px;
    }

    .new-home-impact .nav-link {
        padding: 4px 6px;
    }
}

/* home impact end */

/* home testimonial start */

.new-home-testimonial .testimonial-p {
    /* border-bottom: 1px solid #D6D6D6; */
    margin-bottom: 0 !important;
    /* padding-bottom: 1.5rem; */
    color: #FFFFFFCC;
    font-size: 14px;
    transition: .3s;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 24px;
}

.new-home-testimonial .owl-dots {
    display: none;
}

.new-home-testimonial .client-name {
    color: white;
    font-weight: 400 !important;
    font-size: 16px;
}

.new-home-testimonial .client-status {
    transition: .3s;
    color: #FFFFFFCC !important;
    font-size: 12px;
    font-weight: 300;
}

.new-home-testimonial {
    padding: 30px 0;
}

.new-home-testimonial .client-feedback {
    color: white;
    font-size: 13px;
    font-weight: 500;
    /* background: white; */
    padding: 6px 10px;
    width: max-content;
    margin: auto !important;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    border-radius: 6px;
    border: 1px solid #BFBFBF;
    margin-bottom: 12px !important;
}

.new-home-testimonial .testimonial-head {
    margin-right: 50px;
}

.new-home-testimonial .top-p {
    color: #808080;
    font-size: 13px;
    border-bottom: 1px solid #D8D9DC;
    padding-bottom: 29px;
    font-weight: 500;
}

.new-home-testimonial .testimonial-country img {
    width: 48px;
    height: 48px;
}

.new-home-testimonial .testimonial-country {
    gap: 39px;
    margin-bottom: 1rem;
}

.new-home-testimonial .testimonial-country p {
    color: white;
    font-weight: 500;
}

.new-home-testimonial .testimonial-country p small {
    color: white;
    font-size: 12px;
    margin: 0;
}

.new-home-testimonial .bottom-p {
    color: #191E28;
    font-size: 14px;
    font-weight: 400;
}

.new-home-testimonial .bottom-p span i {
    color: #E59C01;
}

.new-home-testimonial .testimonial-new-carousel .card {
    border-radius: 21px !important;
    border: 1px solid #D6D6D6;
    z-index: 9999;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid #808080 !important;
    padding: 40px 24px 40px 24px !important;
}

.new-home-testimonial .testimonial-new-carousel .card hr {
    color: #808080;
    opacity: 1;
    transition: .3s;
}

.new-home-testimonial .testimonial-new-carousel .card:hover hr {
    color: white;
}

.new-home-testimonial .testimonial-new-carousel .card:hover::before {
    transform: scale(30);
    opacity: 1;
}

.new-home-testimonial .testimonial-new-carousel .card:hover i.fas.fa-quote-left.fa-2x {
    color: white !important;
}

.new-home-testimonial .testimonial-new-carousel i.fas.fa-quote-left.fa-2x {
    transition: .3s;
}

.new-home-testimonial .testimonial-new-carousel .card:hover .testimonial-p {
    color: white;
}

.new-home-testimonial .testimonial-new-carousel .card:hover .client-name {
    color: white;
}

.new-home-testimonial .testimonial-new-carousel .card:hover .client-status {
    color: white !important;
}

.new-home-testimonial .testimonial-new-carousel .card::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    background: #1E79A7;
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform .5s ease-out;
    opacity: 0;
}

@media(max-width:1199px) {
    .new-home-testimonial .testimonial-head {
        margin-right: 38px;
    }
}

@media(max-width:991px) {


    .new-home-testimonial .top-p {
        color: #808080;
        font-size: 14px;
    }
}

@media(max-width:767px) {
    .new-home-testimonial .testimonial-new-carousel .card:hover::before {
        transform: scale(34);
        opacity: 1;
    }
}

@media(max-width:575px) {
    .new-home-testimonial .bottom-p {
        color: #191E28;
        font-size: 12px;
    }

    .new-home-testimonial .testimonial-head {
        margin-right: 16px;
    }

}

@media(max-width:480px) {


    .new-home-testimonial .testimonial-country p small {
        font-size: 9px;
    }

    .new-home-testimonial .testimonial-country p {
        font-size: 12px;
    }

    .new-home-testimonial .testimonial-new-carousel .card {
        padding: 12px !important;
    }

    .new-home-testimonial .top-p {
        padding-bottom: 0 !important;
    }
}

/* home testimonial end */

/* home service start */

.new-home-service .service-card {
    /* border-bottom: 1px solid #d6d6d6; */
    background: transparent;
    padding: 20px;
    /* border-left: 1px solid #d6d6d6; */
    transition: .3s;
    border-radius: 20px;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / .075) !important;
    margin: 7px;
    border: 1px solid #808080;

}

.new-home-service .service-card img {
    width: 41px;
}

.new-home-service .service-card .service-white {
    display: none;
}

.new-home-service .service-card:hover .service-white {
    display: block;
}

.new-home-service .service-card:hover .service-blue {
    display: none;
}

.new-home-service .service-card:hover {
    background: #1E79A7;
}

.new-home-service .service-card a:hover {
    text-decoration: none;
}

.new-home-service .service-card:hover h3 {
    color: white;
}

.new-home-service .service-card:hover p {
    color: white;
}

.new-home-service .row .col-md-4 {
    padding: 0;
}

.new-home-service .row {
    padding: 0 15px;
}

.new-home-service .service-card h3 {
    color: white;
    margin-top: 0;
    font-size: 20px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-home-service .service-card p {
    color: #FFFFFFCC;
    font-size: 16px;
    font-weight: 300;
    margin-top: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 22px;
}

.new-home-service .service-card a {
    text-decoration: none;
}

@media(max-width:480px) {
    .new-home-service .service-card h3 {
        color: white;
        margin-top: 0;
        font-size: 18px;
    }

    .new-home-service .service-card p {
        color: white;
        font-size: 13px;
        font-weight: 300;
        margin-top: 11px;
        margin-bottom: 0;
    }
}

/* home service end */

/* home tech section start */

.tech-section {
    padding: 30px 0;
}

.tech-section .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.tech-section .tech-wrapper {
    position: relative;
    max-width: 1144px;
    margin: auto;
}

/* =========================
   LEFT PANEL
========================= */

.tech-section .tech-tabs {
    background: #0038544D;
    border: 1px solid #6F6F6F;
    border-radius: 30px;
    padding: 67px 49px;
    max-width: 412px;
    min-height: 450px;
    position: relative;
    z-index: 1;
}

.tech-section .tech-tabs .nav-link {
    background: transparent;
    border: none;
    color: #b9c9d6;
    font-size: 20px;
    font-weight: 300;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s ease;
    gap: 20px;
    max-width: 203px;
}

.tech-section span.tech-btn {
    max-width: 161px;
    text-align: start;
}

.tech-section .tech-tabs .nav-link span {
    opacity: 1;
    transition: 0.3s ease;
}

.tech-section .tech-tabs .nav-link:hover,
.tech-section .tech-tabs .nav-link.active {
    color: #ffffff;
}

.tech-section .tech-tabs .nav-link.active span {
    opacity: 1;
    transform: translateX(5px);
    text-decoration: underline;
}

/* =========================
   RIGHT OVERLAPPING PANEL
========================= */

.tech-section .tech-content {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 72%;
    background: #00385466;
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 53px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

/* =========================
   TECH CARDS
========================= */

.tech-section .tech-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: 0.3s ease;
    height: 100%;
}

.tech-section .tech-card i {
    font-size: 32px;
    color: #4fd1ff;
    margin-bottom: 12px;
    display: block;
}

.tech-section .tech-card p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    margin-top: 10px;
}

.tech-section .tech-card:hover {
    transform: translateY(-8px);
    border-color: rgb(30 121 167);
    box-shadow: 0 10px 30px rgba(30, 121, 167, 0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1599px) {
    .tech-section .tech-content {
        width: 72%;
    }
}

@media(max-width:1199px) {
    .tech-section .tech-content {
        width: 67%;
        padding: 27px;
    }
}

@media (max-width: 991px) {

    .tech-section {
        padding: 30px 0;
    }

    .tech-section .tech-tabs {
        width: 100%;
        padding: 30px;
        max-width: 100%;
        min-height: auto;
    }

    .tech-section .tech-content {
        position: relative;
        transform: none;
        width: 100%;
        margin-top: 30px;
        padding: 30px;
    }

    .tech-section .tech-tabs .nav-link {
        max-width: 400px;
    }

    .tech-section span.tech-btn {
        max-width: auto;
    }



}


/* home tech section end */

/* home proven process start */

.home-proven {
    padding: 30px 0;
}

.home-proven .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.home-proven .process-card {
    position: relative;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
}

.home-proven .icon-box img {
    width: 60px;
    margin-bottom: 15px;
}

.home-proven .card-title {
    font-weight: 400;
    color: white;
    font-size: 24px;
    margin-bottom: 12px;
}

.home-proven .card-text {
    font-size: 15px;
    color: white;
    line-height: 20px;
    margin: 0 auto;
    font-weight: 300;
}

/* Border & Pill Logic */
.home-proven .frame-wrapper {
    position: relative;
    padding: 20px;
    padding-top: 0;
    padding-bottom: 55px;
}

.home-proven .frame-border {
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    border: 5px solid var(--card-color);
    pointer-events: none;
}

.home-proven .pill {
    width: 119px;
    height: 31px;
    background-color: var(--card-color);
    border-radius: 5px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.home-proven .dir-down .frame-border {
    bottom: 0;
    border-top: none;
    border-radius: 0 0 50px 50px;
}

.home-proven .dir-down .pill {
    bottom: -12px;
}

.home-proven .dir-up .frame-border {
    top: -19px;
    border-bottom: none;
    border-radius: 50px 50px 0 0;
}

.home-proven .dir-up .pill {
    top: -32px;
}

.home-proven .dir-up .frame-wrapper {
    padding-top: 28px;
    padding-bottom: 0;
}

.home-proven .c-cyan {
    --card-color: #58C4DC;
}

.home-proven .c-orange {
    --card-color: #FF9B2F;
}

.home-proven .c-green {
    --card-color: #0ED290;
}

.home-proven .c-blue {
    --card-color: #008BE6;
}

.home-proven .c-yellow {
    --card-color: #FFC023;
}

.home-proven .c-pink {
    --card-color: #F955AF;
}

.home-proven .c-purple {
    --card-color: #C368FF;
}


@media (min-width: 992px) {
    .home-proven .row-gap-custom {
        margin-top: 0;
    }
}

@media(max-width:767px) {
    .home-proven .process-card {
        margin-bottom: 0;
    }

    .home-proven .frame-border {
        display: none;
    }

    .home-proven .pill {
        display: none;
    }

    .home-proven .frame-wrapper {
        padding: 0;
        padding-bottom: 0;
    }

    .home-proven .process-card {
        padding: 0;
    }

    .home-proven .dir-up .frame-wrapper {
        padding: 0;
    }
}

/* home proven process end */

/* home reason choice start */

.home-reasons {
    padding: 30px 0;
}

.home-reasons .reason-inner-section {
    max-width: 1089px;
    margin: auto;
}

.home-reasons .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.home-reasons .reason-card {
    border: 1px solid #ffffff9e;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    transition: .3s ease;
    box-shadow: rgb(31 121 255 / 20%) 0px 7px 29px 0px;
}

.reason-card:hover {
    border-right: 6px solid white;
}

.home-reasons .reason-card img {
    margin: auto;
    display: flex;
}

.home-reasons .reason-card h3 {
    color: white;
    font-size: 19px;
    margin-top: 15px;
}

.home-reasons .reason-card p {
    color: white;
    font-size: 15px;
    font-weight: 300;
}


/* home reason choice end */

/* home hiring start */

.home-hiring {
    padding: 30px 0;
}

.home-hiring .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.hiring-card {
    color: white;
    text-align: center;
}

.home-hiring .hiring-num {
    border: 1px solid #ffffffab;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 10px;
}

.home-hiring h3 {
    font-size: 20px;
}

.home-hiring .hiring-des {
    font-size: 13px;
    color: #FFFFFFCC;
    font-weight: 300;
}

/* home hiring end */

/* home contact css start */

.contact-section {
    padding: 30px 0;
}

.contact-section .info-box {
    background-color: #1E79A7;
    padding: 20px 38px;
    color: white;
    height: 100%;
    border-radius: 21px;
    display: flex;
    flex-direction: column;
}



.contact-section .info-box h2 {
    font-weight: 600;
    font-size: 47px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-section .info-box p.lead-text {
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-section .address-container {
    margin-bottom: 40px;
}

.contact-section .address-row {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-section .loc-icon {
    width: 50px;
    opacity: 0.8;
}

.contact-section .address-details h5 {
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-section .address-details p {
    font-size: 0.85rem;
    margin-bottom: 4px;
    opacity: 0.8;
    font-weight: 300;
}

.contact-section .country-tabs {
    display: flex;
    gap: 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    justify-content: space-between;
}

.contact-section .tab-item {
    text-align: center;
    opacity: .5;
    transition: .3s;
}

.contact-section .flag-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.contact-section .tab-item span {
    font-size: 0.8rem;
    display: block;
}

.contact-section .form-container {
    border: 1px solid #808080;
    padding: 38px 44px;
    border-radius: 20px;
    max-width: 1050px;
    margin: auto;
}

.contact-section .form-control::placeholder {
    color: white;
}

/* Right Side: Form */
.contact-section .form-box {
    padding: 50px;
}

.contact-section .form-group {
    margin-bottom: 25px;
}

.contact-section label {
    color: #8c96a0;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
}

.contact-section .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #3d4a57;
    border-radius: 0;
    color: white;
    padding: 10px 0;
    font-size: 1rem;
}

.contact-section .form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--second);
    color: white;
}

.contact-section textarea.form-control {
    height: 80px;
    resize: none;
}

.contact-section .submit-btn {
    background-color: var(--second);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.contact-section .submit-btn:hover {
    background-color: var(--second);
}

.contact-section .country-tabs .tab-item.active {
    opacity: 1;
    font-weight: 600;
}

.contact-section .address-content {
    display: none;
}

.contact-section .address-row.address-content.active {
    display: flex;
}


/* Responsive Fixes */
@media (max-width: 768px) {
    .contact-section .form-box {
        padding: 30px 0;
    }

    .contact-section .info-box h2 {
        font-size: 2rem;
    }

    .contact-section .form-container {
        padding: 31px;
    }
}

@media(max-width:480px) {
    .contact-section .form-container {
        padding: 12px;
    }

    .contact-section .info-box {
        background-color: #1E79A7;
        padding: 20px 16px;
    }
}


/* home contact css end */

/* home faq start */

.faq-section {
    padding: 30px 0;
    color: #ffffff;
}

.faq-section .top-p {
    background: transparent;
    padding: 4px 10px;
    border: 1px solid white;
    width: max-content;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    color: white;
}

.faq-section .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 5px;
}

.faq-section .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-weight: 300;
    font-size: 18px;
    padding: 22px 0;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hide default Bootstrap icon */
.faq-section .accordion-button::after {
    display: none;
}

/* Custom Plus/Minus Toggle */
.faq-section .faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.faq-section .accordion-button.collapsed .faq-toggle::before {
    content: "+";
}

.faq-section .accordion-button:not(.collapsed) .faq-toggle::before {
    content: "−";
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 0 0 25px 0;
    color: #b0b8c1;
    font-size: 15px;
    line-height: inherit;
    max-width: 95%;
    font-weight: 300;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-section .accordion-button {
        font-size: 1rem;
    }
}


/* home faq end */

/* home blog css start */

.new-blog .blog-card {
    margin-bottom: 12px;
    border-radius: 0;
    transition: .3s
}

.new-blog .blog-card:hover {
    box-shadow: rgba(45, 45, 45, 0.05) 0px 2px 2px, rgba(49, 49, 49, 0.05) 0px 4px 4px, rgba(42, 42, 42, 0.05) 0px 8px 8px, rgba(32, 32, 32, 0.05) 0px 16px 16px, rgba(49, 49, 49, 0.05) 0px 22px 22px, rgba(35, 35, 35, 0.02) 0px 64px 64px;
    transform: translate(0, -10px);
}

.new-blog .blog-card small {
    font-weight: 300;
    font-size: 12px;
    color: #FFFFFFCC;
}

.new-blog .blog-card h3 {
    color: white;
    font-size: 19px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-blog .blog-card a {
    color: #1E79A7;
    font-size: 13px;
    text-decoration: none;
    font-weight: 400;

}



section.new-blog {
    margin-bottom: 50px;
}

@media(max-width:767px) {
    .new-blog .blog-card h3 {
        color: white;
        font-size: 17px;
    }
}

@media(max-width:480px) {
    section.new-blog {
        margin-bottom: 0;
    }
}

/* home blog css end */

/* home page css end */

/* mobile development css start */

/* mobile banner css start */

.mobile-banner small {
    font-size: 14px;
    font-weight: 300;
}

.feature-section {
    background-repeat: no-repeat;
    background-position: top;
    padding: 32px;
    background-size: cover;
}

/* mobile banner css end */

/* service css start */

.service-important {
    padding: 30px 0;
}

.top-title {
    font-size: 13px;
    color: white;
    padding: 5px 12px;
    border: 1px solid white;
    width: fit-content;
    margin: auto;
    margin-bottom: 10px;
    border-radius: 7px;
}

.service-important p {
    color: white;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.service-important img {
    display: flex;
    margin: auto;
}

/* service css end */

/* mobile strategy start */

.mobile-strategy {
    padding: 30px 0;
}

.mobile-strategy .mobile-strategy-right h3 {
    color: white;
    font-size: 20px;
    font-weight: 400;
    margin-top: 15px;
}

.mobile-strategy .mobile-strategy-right p {
    color: #ffffffcc;
    font-size: 14px;
    font-weight: 300;
}

/* mobile strategy end */

/* service consultancy start */

.service-consultation {
    background-repeat: no-repeat;
    padding: 20px;
    min-height: 324px;
    border-radius: 35px;
}

/* service consultancy end */

/* expert service start */

.portfolio_container {
    position: relative;
    overflow: hidden;
    border-radius: var(--custom-border-radius);
}
/* .portfolio_design_cont:nth-child(3n-1) .portfolio_container {
    margin-top: 6px;
} */

.portfolio_overlay p {
    color: white;
    font-size: clamp(16px, 3vw, 20px);
    line-height: clamp(16px, 3vw, 30px);
    font-family: "Arboria";
    margin-bottom: 8px;
    text-transform: capitalize;
}

.portfolio_overlay span {
    color: var(--secondary-color);
    font-size: 18px;
    font-family: "Arboria";
    text-transform: lowercase;
}

.portfolio_container::after {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    transition: 0.3s linear;
    background: linear-gradient(0deg, #000 23.83%, rgba(0, 0, 0, 0.00) 93.2%);
}

.portfolio_container:hover:after {
    height: 30%;
}

.portfolio_container img {
    width: 100%;
    max-width: 450px;
    margin: auto;
    filter: grayscale(1);
    transition: all ease 0.6s;
}

.portfolio_container:hover img {
    filter: none;
}

@media screen and (min-width: 992px) {
    .portfolio_container:hover .portfolio_overlay {
        transform: translateY(-100%);
        transition: all ease .6s;
    }
}

@media screen and (min-width: 992px) {
    .portfolio_overlay, .portfolio_overlay-name {
        position: absolute;
        bottom: 0;
        z-index: 1;
        width: 100%;
        padding: 30px 40px 0;
        transform: translateY(98%);
        transition: all ease .6s;
    }
}

/* expert service end */

/* mobile development css end */