/* Blog-route subset extracted from style.css for blog listing and single blog pages. */
: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);
}

.blog-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    line-height: 1;
}

.blog-inline-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.iti {
    width: 100%;
}

.iti__country-list {
    max-width: 267px;
    scrollbar-width: none;
}


.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;
    text-decoration: none;
    width: fit-content;
}

.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;
}

.review-btn {
    background-color: white !important;
    color: var(--second) !important;
    border: 1px solid white !important;
    transition: .3s;
}

.review-btn:hover {
    font-weight: 600 !important;
}


/* button animation 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: 999999999;
}

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: 99999;
}

.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: 999999;
}

.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;
    color: black;
}

/* 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: 999999;
    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;
}

.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: transparent;
    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;
    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 .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: 55px;
    margin-right: 8px;
    margin-top: 0;
}

.drop-in {
    line-height: 17px;
    color: white;
    white-space: normal;
    transition: .3s;
}

.drop-in div {
    font-size: 14px;
    margin-bottom: 4px;
}

.drop-in small {
    font-size: 12px;
}

.main_header ul li .industry-dropdown a:active,
.main_header ul li .industry-dropdown a:focus {
    background: transparent !important;
    outline: none;
}

.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;
}

.industry-dropdown .dropdown-text {
    font-size: 24px;
    font-weight: 400 !important;
}

.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 .drop-in {
    background: transparent;
    color: #00A6FF !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 {
    max-width: 294px !important;
    height: auto !important;
    /* margin-top: 31% !important; */
    width: 100%;
}

.main_header ul li .industry-dropdown .shark-img a img:hover {
    display: block !important;
}

.info-section .info-card {
    border: 1px solid #1e5568;
    height: 100%;
    transition: 0.3s ease;
    border-radius: 3px;
    width: 100%;
}

.info-section .info-card:hover {
    transform: translateY(-6px);
    border-color: #2aa9c5;
}

/* Top Icon Area */
.info-section .card-top {
    background-color: #154B6980;
    /* Lighter Shade */
    padding: 8px 20px;
    text-align: center;
}

/* Bottom Content Area */
.info-section .card-bottom {
    background-color: transparent;
    /* Darker Shade */
    padding: 20px;
    text-align: center;
}

.info-section .icon-box {
    width: 65px;
    height: 65px;
    /* border: 2px solid #2aa9c5; */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.info-section .icon-box i {
    font-size: 33px;
    color: #00A6FF;
}

.info-section .icon-box img {
    width: 33px !important;
}

.info-section h5 {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 10px;
}

.info-section p {
    color: #b7d3db;
    font-size: 14px;
    margin: 0;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767px) {
    .info-section {
        padding: 40px 15px;
    }
}


@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;
    }

    .main_header ul li .industry-dropdown .dropdown-text {
        font-size: 18px;
    }
}

@media(max-width:991.98px) {

    .lgsin li.signp a {
        padding: 6px 11px;
        display: inline-block;
        top: 5px;
    }

    .drop-in div {
        font-size: 14px;
    }

    .drop-in small {
        font-size: 11px;
    }

    .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
    }

    .down-header .nav-item.dropdown {
        position: relative;
    }

    .main_header .navbar-nav li .dropdown-menu.show {
        display: block !important;
        background: var(--first);
        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;
    }

    .industry-dropdown .dropdown-text {
        margin-top: 0;
    }
}

@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;
}

.blog-footer-lite {
    padding: 10px 0 32px;
}

.blog-footer-lite__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr) minmax(0, .9fr);
    gap: 32px;
    align-items: start;
}

.blog-footer-lite__brand p,
.blog-footer-lite__bottom p,
.blog-footer-lite__contact ul li a,
.blog-footer-lite__links ul li a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-size: 14px;
}

.blog-footer-lite__brand p {
    max-width: 560px;
    margin: 20px 0 0;
}

.blog-footer-lite__brand a.foot_img img {
    width: 170px;
    height: 62px;
}

.blog-footer-lite h2 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-footer-lite__contact ul,
.blog-footer-lite__links ul,
.blog-footer-lite__social {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.blog-footer-lite__contact ul li,
.blog-footer-lite__links ul li {
    margin-bottom: 14px;
}

.blog-footer-lite__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.blog-footer-lite__secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    text-decoration: none;
    transition: .2s ease;
}

.blog-footer-lite__secondary-btn:hover,
.blog-footer-lite__contact ul li a:hover,
.blog-footer-lite__links ul li a:hover {
    color: #fff;
}

.blog-footer-lite__secondary-btn:hover {
    background: rgba(255, 255, 255, .08);
}

.blog-footer-lite__bottom {
    margin-top: 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.blog-footer-lite__bottom p {
    margin: 0;
    max-width: 620px;
}

.blog-footer-lite__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-footer-lite__social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #121619;
    transition: .2s ease;
}

.blog-footer-lite__social a:hover {
    background: #1d7aa9;
    color: #fff;
}

.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) {

    .blog-footer-lite__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .blog-footer-lite__brand {
        grid-column: 1 / -1;
    }

    .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) {

    .blog-footer-lite {
        padding-bottom: 24px;
    }

    .blog-footer-lite__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-footer-lite__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-footer-lite__cta {
        width: 100%;
    }

    .blog-footer-lite__cta .thm-btn,
    .blog-footer-lite__cta .blog-footer-lite__secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-footer-lite__social {
        flex-wrap: wrap;
    }

    .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 */

.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 h3 {
    font-size: 17px;
    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: 0;
    justify-content: space-between;
}

.contact-section .tab-item {
    text-align: center;
    opacity: .5;
    transition: .3s;
    padding-top: 20px;
    width: 50%;
}

.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: 16px;
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.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::placeholder {
    color: #ffffff93;
    font-weight: 300;
    font-size: 14px;
}

.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;
    border-top: 1px solid white;
}

.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 */


