/********** Template CSS **********/
:root {
    --primary: #043f5e;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --light-grey: #f8f8f8;
    --dark: #091E3E;
    --gold: #efc96d;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
.bg-about:before {position: absolute;content: "";background: #0000004a;width: 100%;height: 100%;left: 0;right: 0;margin: 0 auto;top: 0;
    z-index: 2;
}
.footer-main  .col-lg-4.col-md-12.pt-0.pt-lg-5.mb-5 {
    padding-left: 8%;
}

.bg-about {
    position: relative;
    z-index: 1;
}
.col-12.pt-lg-5.mt-lg-5.text-center {
    z-index: 999;
}
.bg-about .col-lg-7 {
    z-index: 999;
}
.partner-logo-sec .owl-next {
    right: -4%;
}
/*.bg-about .col-lg-7 {*/
/*    background: #00000054;*/
/*    padding: 30px 10px !important;*/
/*    text-align: center;*/
/*    width: 90%;*/
/*    margin: 0 auto;*/
/*}*/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

section.bg-hire.py-5 h4 {
    color: #000;
    font-family: 'Ubuntu';
    text-transform: capitalize;
    font-weight: 600 !important;
}
/*** Heading ***/
h2,
.fw-bold {
    font-weight: 800 !important;
    font-size: 3rem;
    font-family: 'Ubuntu';
    line-height: 3.4rem;
    text-transform: capitalize;
}

h1,
.fw-bold {
    font-weight: 800 !important;
    font-size: 4rem;
    line-height: 4.7rem;
    font-family: 'Ubuntu';
}

h3,
.fw-semi-bold {
    font-family: 'Ubuntu';
    font-weight: 800 !important;
    text-transform: capitalize;
    font-size: 2.2rem;
}


h4,
.fw-semi-bold {
    font-weight: 800 !important;
    text-transform: capitalize;
    font-family: 'Ubuntu';
}

h5,
.fw-medium {
    font-family: 'Ubuntu';
    font-weight: 600 !important;
    font-size: 1.2em;
    text-transform: capitalize;
}

/* small-cap-heading */
.sml-cap-head {
    font-weight: 800;
    color: var(--gold);
    font-family: 'Ubuntu';
    text-transform: uppercase;
}

/*** Button ***/
.read-btn {
    font-size: 15px;
    color: var(--gold);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.read-btn:focus,
.read-btn:hover {
    color: var(--dark);
}

.read-btn:focus:after,
.read-btn:hover:after {
    width: 100%;
    left: 0%;
}

.read-btn:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--gold);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}


.btn {
    font-family: 'Ubuntu';
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.cta {
    position: relative;
    margin: auto;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    color: var(--light);
}

.cta:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    border-radius: 50px;
    background: var(--gold);
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--light);
    text-transform: uppercase;
}

.cta svg {
    position: relative;
    top: -3px;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--light);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    background: var(--primary);
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

button.learn-more {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--dark);
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
}

button.learn-more .circle .icon.arrow {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.29rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid #fff;
    border-right: 0.125rem solid #fff;
    transform: rotate(45deg);
}

button.learn-more .button-text {
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.83rem;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: #fff;
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: #fff;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/* navbar-end */


/* Hero-sec-start */


.hero-sec {
    min-height: 700px;
    display: flex;
    background: url(../img/banner/software-developer.jpg) no-repeat center center / cover;
    align-items: center;
}

.hero-caption h1 {
    color: var(--light);
}

.sml-cap-head {
    font-weight: 800;
    color: var(--gold);
    font-family: 'Ubuntu';
}

.hero-caption p {
    color: var(--light);
}


/* About-sec-start */

.sec-about .row {
    align-items: center;
}

.about-text h2 {
    color: var(--dark);
    margin: 12px 0 20px 0;
}

.sec-about img {
    height: 604px;
    object-fit: cover;
    border-radius: 20px;
}

.sec-about {
    margin-top: -3rem;
    padding: 0 0 6rem;
}


/* Our-mission-start */
.progress {
    position: relative;
}

.progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress-heading {
    text-align: left;
    color: var(--dark);
}

.progress-digits {
    text-align: right;
    color: var(--dark);
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our-mission {
    padding: 4rem 0 5rem;
    background: var(--light-grey);
}

.mission-cap h3 {
    color: var(--dark);
}

.counter {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
    text-align: center;
}

.counter h5 {
    color: var(--dark);
}

.count-title {
    color: var(--dark);
    margin: 1rem 0 1rem;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* our-services-start */

.our-services {
    padding: 6rem 0 6rem;
    background: var(--dark);
    border: 1px solid #fff;
}

.our-services .row {
    align-items: center;
}

.our-services img {
    border-radius: 20px;
}

/* tech-innovation start */
.tech-innovations {
    padding: 6rem 0 6rem;
}

.card-blog {
    box-shadow: 0px 2px 8px #ccc;
    border-radius: 7px;
}

.card-blog-cap {
    padding: 2rem;
    color: var(--dark);
    min-height: 300px;
}

.card-blog-cap p {
    min-height: 153px;
}

.card-blog img {
    border-radius: 7px 7px 0 0;
}

.dicover-head {
    color: var(--dark);
    margin: 0 0 5rem;
}


/* consumer-sec-start */
.consumer-sec {
    background: url(../img/consumer-banner.jpg) no-repeat center center / cover;
    padding: 6rem 0 6rem;
}


.wrapper {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin-top: 40px;
}

.wrapper .card .circle {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    cursor: default;
}

.card .circle .box,
.card .circle .box span {
    position: absolute;
    top: 50%;
    left: 50%;
}

.card .circle .box {
    height: 100%;
    width: 100%;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.2s;
}

.card .circle:hover .box {
    transform: translate(-50%, -50%) scale(0.91);
}

.card .circle .box span,
.wrapper .card .text {
    background: var(--gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle .box span {
    font-size: 38px;
    font-family: sans-serif;
    font-weight: 600;
    transform: translate(-45%, -45%);
    transition: all 0.1s;
}

.card .circle:hover .box span {
    transform: translate(-45%, -45%) scale(1.09);
}

.card .text {
    font-size: 20px;
    font-weight: 600;
}


/* why-choose-us */
.why-choose {
    padding: 7rem 0;
}

.choose-us-cap h5 {
    color: var(--dark);
}



/* our-project */

.our-porject {
    padding: 7rem 0;
    background: var(--light-grey);
}


.our-porject .content-inner {
    color: #fff;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.our-porject .content-inner:hover .content-front {
    transform: rotateY(-180deg);
}

.our-porject .content-inner:hover .content-back {
    transform: rotateY(0deg);
}

.our-porject .content-inner .content-front,
.content-inner .content-back {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.our-porject .content-front {
    background: #292929;
}

.our-porject .content-inner>* {
    transition: .9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.our-porject .content-inner .cf-inner {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    width: 100%;
    padding: 150px 30px;
    min-height: 400px;
}

.our-porject .content-front .cf-inner:before,
.content-front .cf-inner:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.our-porject .content-front .cf-inner:before {
    top: 20px;
    left: 20px;
    border-left: 1px dotted;
    border-top: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
}

.our-porject .content-front .cf-inner:after {
    bottom: 20px;
    right: 20px;
    border-right: 1px dotted;
    border-bottom: 1px dotted;
    border-color: rgba(255, 255, 255, .6);
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-position: center;
    background-size: cover;
}

.first-flip-img {
    background-image: url(../img/programmer-working-on-laptop.jpg);
}

.second-flip-img {
    background-image: url(../img/computer-engineer-holds-pc-motherboard.jpg);
}

.third-flip-img {
    background-image: url(../img/serious-couple-of-hackers-working.jpg);
}

.fouth-flip-img {
    background-image: url(../img/computer-web-development.jpg);
}

.fifth-flip-img {
    background-image: url(../img/web-developer-coding-app.jpg);
}

.sixth-flip-img {
    background-image: url(../img/web-codes-on-cybersecurity-interface.jpg);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.4;
    z-index: 3;
}

.content-inner .cf-inner .inner {
    align-items: stretch;
    transform-style: preserve-3d;
    perspective: 1000px;
    backface-visibility: hidden;
    transform: translateZ(95px) scale(0.81);
    text-align: center;
    position: relative;
    z-index: 2;
}

.content-inner .cf-inner .inner h2 {
    position: relative;
    color: var(--light);
}

.content-inner .cf-inner .inner h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 20px;
    height: 2px;
    margin-left: -10px;
}

.content-inner .cf-inner .inner h2:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    width: 50px;
    height: 2px;
    margin-left: -25px;
    background: #C19D60;
}


.serv-num {
    position: absolute;
    bottom: 20px;
    left: 30px;
    color: #fff;
    z-index: 3;
    font-size: 20px;
}

.content-inner .content-back {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: rotateY(180deg);
    background: var(--primary);
}


.content-back:after {
    color: #C19D60;
    position: absolute;
    content: "\25CF\25CF\25CF";
    width: 50px;
    left: 50%;
    bottom: 30px;
    margin-left: -25px;
    font-size: 9px;
    letter-spacing: 4px;
}


/* testimonial-sec */

.sec-testi {
    padding: 7rem 0;
    background: linear-gradient(0deg, rgb(9 30 62 / 47%), rgb(9 30 62 / 57%)), url(../img/banner/testi-banner.jpg) no-repeat center center / cover;
}

.five-str {
    width: 25%;
}

.testi-box-rev {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 3px;
    text-align: -webkit-left;
    position: relative;
}

.usr-detail img {
    position: relative;
    clear: both;
    width: 20%;
    border-radius: 100%;
    float: left;
}

.usr-name {
    position: relative;
    top: 23px;
    left: 18px;
}

.usr-detail:after {
    content: url(../img/quote.png);
    position: absolute;
    right: 10px;
    bottom: 45px;
}


/* Partner-Logo */

.partner-logo-sec {
    padding: 7rem 0;
    background: var(--light-grey);
}

.partner-logo-sec img {
    height: 70px;
    width: 245px;
    object-fit: cover;
}

/* latest-blog */
.latest-article {
    padding: 7rem 0;
}

.article-box {
    position: relative;
    box-shadow: 0 0 5px #cccc;
}

.latest-text {
    padding: 2rem 1rem 1rem;
    min-height: 278px;
}

.latst-ftr {
    border-top: 1px solid #ccc;
    padding: 1rem;
}

.latest-tag {
    background: var(--gold);
    position: absolute;
    padding: 0.70rem;
    top: 0;
    color: var(--light);
}

.latest-article .learn-more {
    float: right;
    clear: both;
}

/* Ready-our-sec */
.ready-our-sec {
    background: -webkit-linear-gradient(top, #fff 9%, #091e3e 10%);
}

.ready-our-sec .row {
    align-items: center;
}

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

.men-wth-lap {
    border-radius: 10px 10px 0 0;
    box-shadow: 0px -2px 6px #ccc;
}

/* Footer */

.footer-main {
    background: #000;
    padding: 3rem 0;
}

.ftr-frm input {
    background: transparent;
    color: var(--ligt);
    border-radius: 0.25rem;
}

.ftr-frm input::placeholder {
    color: var(--gold);
}

.ftr-frm input:focus {
    background: transparent;
    color: var(--light);
}

.ftr-frm .btn-1 {
    background: var(--dark);
    font-family: 'Ubuntu';
    border: 0;
    font-size: 1.2rem;
    padding: 0.5rem 2rem;
    border-radius: 0.3rem;
    transition: .8s;
}

.ftr-page {
    display: grid;
    align-items: center;
    grid-template-columns: 60% 20% 20%;
    width: 100%;
    text-align: right;
    margin-top: 4px;
}

.ftr-page>.ftr-item a {
    color: var(--light-grey);
    text-transform: capitalize;
    font-size: 0.90rem;
}

.copy-right {
    font-size: 0.90rem;
    color: var(--light-grey);
}

body {
    overflow-x: hidden;
}

.bg-about {
    background-image: url("../img/banner/the-office-building.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.sec-about {
    position: relative;
    z-index: 2;
}

.bg-green {
    background-color: #043f5e !important;
}

.our-careers {
    background: white;
}

.our-careers .cta span {
    color: rgb(0, 0, 0);
}

.our-careers .cta:hover span {
    color: rgb(255, 255, 255);
}

.bg-hire {
    background-color: #faf8f8b8;
}

/* .hireOverlay{
    filter: brightness( 100% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    background-image: url(../img/green-10-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
  } */
.position-cards {
    background: white;
    border-style: solid;
    border-width: 0px;
    border-color: var(--e-global-color-a291686);
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.15);
}

.bg-hire h2 {
    color: #000;
}

.bg-hire p {
    color: gray;
}

.hireContent {
    background: white;
    padding: 15px;
    color: black;
}

.hireContent p {
    font-size: 16px !important;
    color: gray;
}

.hireContent a {
    color: #000000;
    font-weight: 600;
}

.hireimg img {
    width: 260px;
}

.careerCon h3 {
    color: #efc96d;
}

.row.careerCon p {
    font-size: 16px;
    color: #323131;
}

.row.careerCon a {
    font-size: 16px;
    font-weight: 500;
    color: #2b2a2a;
    border-bottom: 1px solid black;
}

.borderC {
    border-right: 1px solid rgb(214, 212, 212);
}

.row.careerCon .btn.btn-primary {
    color: white !important;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-prev {
    display: inline-block;
    width: fit-content;
    top: 35%;
    left: -2.5%;
    position: absolute;
    background: #efc96d;
    font-size: 0px;
}

.owl-prev::before {
    font-size: 24px;
    content: "<";
    padding: 5px 10px;
}

.owl-next {
    text-align: end;
}

.owl-next {
    display: inline-block;
    width: fit-content;
    top: 35%;
    right: -2.5%;
    position: absolute;
    background: #efc96d;
    font-size: 0px;
}

.owl-next::before {
    font-size: 24px;
    content: ">";
    padding: 5px 10px;
}

.our-porject h2 {
    font-size: 25px !important;
}

.button-area button.read-btn {
    display: block !important;
    margin: 0 auto;
    text-align: center;
    padding: 12px 35px !important;
    background: #043f5e;
    color: #fff;
    font-family: 'Ubuntu';
    font-weight: 600;
    font-size: 1rem !important;
    text-transform: capitalize;
    transition: .8s ease;
}

.button-area button.read-btn:hover {
    background: #efc96d;
}

.button-area {
    padding-top: 35px;
}
.counter.extra-pluse {
    position: relative;
}

.counter.extra-pluse h2:before {
    position: absolute;
    content: "+";
    width: 30px;
    height: 30px;
    right: 0;
    left: 30%;
    margin: 0 auto;
}


/* Revposive */
@media (max-width: 1366px) {
    nav.navbar.navbar-expand-lg {
        padding-left: 80px !important;
    }
    
    .container-fluid.bg-dark.px-5.d-none.d-lg-block {
        padding: 0px 25px !important;
    }

    
    body h1 {
        font-size: 45px !important;
        line-height: 55px !important;
    }
    
    p {
        font-size: 16px !important;
        line-height: 24px !important;
    }
    
    h2 {font-size: 35px !important;
    line-height: 40px !important;
        
    }
    
    section.sec-about {
        padding-left: 120px !important;
        padding-right: 0px !important;
    }
    
    span.button-text {
        padding-left: 15px !important;
    }
    
    h3 {
        font-size: 30px !important;
        line-height: 35px !important;
    }
    
    h5 {
        font-size: 20px !important;
    }
    
    button.read-btn {
        font-size: 14px !important;
    }
    
    section.consumer-sec {
        padding-left: 75px !important;
    }
    
    canvas {
        width: 120px !important;
        height: 120px !important;
    }
    
    .footer-main {padding: 50px 50px 40px 110px !important;}
    
    .cta span {
        font-size: 16px !important;
    }
    .card .circle .box {
        height: 80% !important;
        width: 80% !important;
        transform: translate(-50%, -63%) scale(0.8);
    }
    canvas {
        width: 120px !important;
        height: 120px !important;
    }
    .card .text {
        font-size: 18px !important;
        margin-top: 0px !important;
    }
}
@media (max-width: 1199px) {
    .counter.extra-pluse h2:before {
         left: 37%;
    }
}
@media (max-width: 999px) {
    .bg-about .col-lg-7 {
        margin: 0 auto;
    }
    .d-inline-flex.align-items-center small.me-3.text-light {
        font-size: 12px;
    }
    .container-fluid.text-white .col-lg-6 {
        width: 100%;
    }
    .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none;
}
    section.tech-innovations .col-lg {
        max-width: 50% !important;
        flex: none !important;
        margin-bottom: 20px !important;
    }
    
    section.tech-innovations .w-100.mt-5 {
        display: none;
    }
    
    section.tech-innovations .col-lg img {
        width: 100%;
    }
    section.consumer-sec .wrapper .card .circle {
        height: 120px;
        width: 120px;	
    }
    
    section.consumer-sec .card .circle .box {
        height: 70% !important;
        width: 70% !important;
        transform: translate(-50%, -50%) scale(0.8);
    }
    section.consumer-sec .circle .box span {
        font-size: 28px;
    }
    section.consumer-sec .wrapper {
        width: 60%;
       margin-bottom: 35px;
    }
    section.consumer-sec .img-fluid {
        max-width: 70%;
    }
    section.consumer-sec .col-lg {
        width: 100% !important;
        flex: unset;
    }
    section.latest-article.text-dark .col-lg-3 {
        width: 50%;
        margin-bottom: 30px;
    }
    .ftr-item {
        display: -webkit-inline-box;
        margin: 0px 10px;
    }
    .ftr-page {display: unset !important;float: right;}
    h2 {
        font-size: 28px !important;
        line-height: 40px !important;
    }
    .usr-detail img {
        width: 10%;
    }
    .footer-main {
        padding: 50px 40px !important;
    }
    section.sec-about {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    body h1 {
        font-size: 40px !important;
        line-height: 45px !important;
    }
    .bg-dark {
        background-color: #091e3e !important;
        padding: 0px 30px !important;
        padding-left: 45px !important;
    }
    .d-inline-flex.align-items-center {
         padding-left: 0px !important;
    }
    nav.navbar.navbar-expand-lg {
        padding-left: 15px !important;
    }
    h3 {
        font-size: 25px !important;
        line-height: 30px !important;
    }
    .footer-main a.navbar-brand {
        margin-right: 0px;
    }
    span.sml-cap-head {
        font-size: 16px;
        text-align: center;
        display: block;
    }
    
    .sec-about img {
        margin-top: 40px !important;
        display: block;
        margin: 0 auto;
    }
    
    section.our-mission .col {
        width: 100% !important;
        flex: unset;
    }
    
    .container.mt-5.aos-init.aos-animate {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    
    h3 {
        text-align: center;
    }
    
    p {
        text-align: center;
    }
    
    h2 {
        text-align: center;
    }
    
    
    button.learn-more {
        margin: 0 auto;
        display: block;
    }
    
    .counter {
        margin-bottom: 20px;
        padding: 30px 0px !important;
    }
    
    .our-services img {
        margin-bottom: 20px;
    }
    
    button.cta {
        display: block;
    }
    
    section.our-porject {
        padding: 50px 30px !important;
    }
    
    .our-porject .content-inner .cf-inner {
        /*margin-bottom: 20px !important;*/
        padding: 80px 20px;
    }
    
    .content-front {
        background: #fff !important;
    }
    
    .owl-carousel .owl-item img {
        margin: 0 auto;
        display: block !important;
    }
    
    .usr-name {
        text-align: center;
        top: 80px;
        left: 0;
    }
    
    .usr-detail.mt-4 img {
        display: table;
        position: absolute;
        left: 0;
        right: 0;
    }
    
    .usr-detail.mt-4 {
    }
    
    .testi-box-rev {
        padding-bottom: 100px;
    }
    
    section.sec-testi {
        padding: 50px 0px !important;
    }
    
    .dicover-head.text-center.aos-init.aos-animate {
        margin-bottom: 0px;
    }
    
    .latest-article {
        padding: 50px 0px;
    }
    
    .latest-article .learn-more {
        float: unset;
    }
    
    h5 {
        text-align: center;
    }
    
    section.latest-article.text-dark .col-lg-3 {
        width: 100%;
    }
    
    .latest-text {min-height: unset;}
    
    section.ready-our-sec.text-light {
        margin: 0px 0px !important;
        padding: 50px 0px !important;
        background: #091e3e;
    }
    
    section.ready-our-sec.text-light .detail-ready {
        text-align: center;
        margin: 0px;
        display: block;
    }
    
    section.ready-our-sec.text-light button.cta {
        margin-bottom: 30px;
    }
    
    .footer-main .col-lg {
        width: 100% !important;
    }
    
    .footer-main .col-lg-4 {
        width: 100%;
        text-align: center;
        margin: 0 auto;
        display: block !important;
        flex: unset;
        padding: 0px !important;
    }
    
    .footer-main  .d-flex.mt-4 {
        display: block !important;
    }
    
    body h1 {
        font-size: 30px !important;
        line-height: 40px !important;
    }
    span.sml-cap-head {
        font-size: 16px;
    }
    section.sec-about {
        margin-top: 50px;
    }
    .sec-about img {
        margin-top: 40px;
    }
    
    section.tech-innovations .col-lg {
        max-width: 100% !important;
        text-align: center;
    }
    .card-blog-cap p {
        min-height: unset;
    }
    section.consumer-sec .wrapper {
        width: 100%;
    }
    section.consumer-sec .img-fluid {
        text-align: center;
        display: block;
        margin: 0 auto;
    }
    section.consumer-sec {
        padding-left: 0px !important;
    }
    .ftr-page {
        text-align: center;
        display: block !important;
    }
    .latst-ftr span {
        text-align: center !important;
        display: block;
    }
    .sec-about img {
        height: auto;
    }
    .content-back:after {
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 15px;
        text-align: center;
    }
    section.our-porject .w-100.mt-4 {
        display: none;
    }
    section.why-choose {
        padding: 50px 20px;
    }
    a.btn.btn-primary.py-2.px-4.ms-3 {
        margin-left: 0px !important;
        padding: 8px 20px !important;
        font-size: 14px;
    }
    section.tech-innovations {
        padding: 50px 20px !important;
    }
    section.partner-logo-sec {
        padding: 50px 20px;
    }
    .content-front {
        margin-bottom: 10px;
    }
    .bg-green.d-flex.align-items-center.justify-content-center.rounded {
        width: 40px !important;
        height: 40px !important;
        font-size: 15px;
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto;
        margin-top: -80px;
    }
    
    .ps-4 {
        text-align: center;
        margin: 0 auto;
    }
    
    h4.text-primary.mb-0 {
        font-size: 15px;
    }
    
    h5.mb-2 {
        margin-top: 30px;
    }
    
    .row.g-5.mb-5 {
        position: relative;
    }
    
    .ps-4 {
        padding: 0px !important;
    }
    nav.navbar.navbar-expand-lg.navbar-light.px-5.py-3.py-lg-0 img {
        height: 80px;
    }
    nav.navbar.navbar-expand-lg {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .row.p-3 {
        flex-direction: column-reverse;
    }
    .row.careerCon.my-5 .d-flex.mt-4 {margin: 0 auto !important;display: table !important;}
    .row.careerCon .buttons a {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .buttons {
        display: block !important;
        text-align: center;
    }
    .hireContent a {
        text-align: center !important;
        display: table !important;
        margin: 0 auto;
    }
    .row.gx-5 .col-md-6 {
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto;
    }
  section.partner-logo-sec  .item img {
        width: 80%;
    }
    .hero-caption {
        text-align: center;
    }
    .counter.extra-pluse h2:before {
        left: 10%;
    }
    .footer-main .d-flex.mt-4 {
        margin-bottom: 30px;
    }
    section.sectiontwo .col-lg-3.inner-box-1 {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center;
        display: block !important;
    }
    
    section.sectiontwo .col-lg-3.inner-box-1 h5 {
        text-align: center !important;
        margin: 0 auto;
        margin-bottom: 20px !important;
    }
    
    section.sectiontwo .col-lg-3.inner-box-1 p {
        text-align: center !important;
    }
}
@media (max-width: 768px) {
    section.why-choose .box-1 {
        width: 90% !important;
        margin: 0 auto !important;
        padding: 40px 20px !important;
    }
    .our-services.ne-section ul li {
        margin-bottom: 25px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .our-services.ne-section ul li {
        width: 100%;
        display: table !important;
        text-align: center;
        margin-bottom: 25px !important;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
    h2 {
        font-size: 25px !important;
        line-height: 30px !important;
    }
    h5 {
        font-size: 18px !important;
    }
}
@media (max-width: 690px) {
    body h1 {
        font-size: 25px !important;
        line-height: 30px !important;
    }
    p {
        font-size: 14px !important;
        line-height: 20px !important;
    }
    
    span.sml-cap-head {
        font-size: 14px;
    }
    .cta span {
        font-size: 14px !important;
    }
    .hero-sec {
        min-height: 500px;
    }
    h2 {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    h3 {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    lord-icon {
        height: 60px !important;
        width: 60px !important;
    }
    .hero-sec {
        min-height: 450px !important;
    }
    h5 {
        font-size: 14px !important;
    }
}
@media (max-width: 600px) {
    nav.navbar.navbar-expand-lg.navbar-light.px-5.py-3.py-lg-0 img {
        height: 60px;
    }
}
@media (max-width: 480px) {
    .hero-sec {
        min-height: 400px !important;
    }
    section.consumer-sec .card .circle .box {
        height: 65% !important;
        width: 65% !important;
        top: 40px;
    }
    section.consumer-sec .wrapper .card .circle {
        margin: 0 auto;
    }
    section.consumer-sec .card {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: block !important;
        margin-bottom: 20px;
    }
    .owl-prev {
        left: 2.5%;
    }
    .owl-next {
        right: 2.5%;
    }
    section.partner-logo-sec .owl-prev {
        left: 7.5%;
    }
    section.partner-logo-sec .owl-next {
        right: 7.5%;
    }
    .card-blog-cap {
        padding: 40px 20px;
    }
    canvas {
        width: 80px !important;
        height: 80px !important;
    }
    circle .box {
        height: 60% !important;
        width: 60% !important;
        transform: translate(-50%, -78%) scale(0.8);
    }
    section.consumer-sec .circle .box span {
        font-size: 20px;
    }
    .card .text {
        font-size: 16px !important;
    }
    section.consumer-sec .img-fluid {
        max-width: 100%;
    }
    section.partner-logo-sec .item img {
        width: 55%;
    }
    .latest-tag {
        padding: 5px 20px;
        font-size: 14px;
    }
    .ftr-frm .btn-1 {
        padding: 10px 35px !important;
        font-size: 14px;
    }
    
    .ftr-frm input {
        font-size: 14px;
    }
}
@media (max-width: 420px) {
    .text-white .ftr-item {
        margin: 0px 5px;
    }
    
    .text-white .col-lg-6 {
        padding: 0px !important;
    }
    
    .text-white .row.p-3 {
        padding: 10px 0px !important;
    }
    
    .text-white .ftr-item a {
        font-size: 13px !important;
    }
    
    .text-white p.copy-right.mb-0 {
        font-size: 13px !important;
    }
    body h1 {
        font-size: 20px !important;
        line-height: 25px !important;
    }
    
    h2 {
        font-size: 18px !important;
        line-height: 22px !important;
    }
    h3 {
        font-size: 18px !important;
        line-height: 22px !important;
    }
    .cta svg {
    top: -1px !important;
}
    .cta:before {
        width: 40px;
        height: 40px;
    }

    button:hover .circle {
        width: 205px !important;
        height: 45px !important;
    }

    .cta:before {
        width: 40px;
        height: 40px;
    }
    button.learn-more .circle .icon.arrow {
      left: 5px;
      top: 0px;
    }
    button.learn-more .circle {
       width: 35px;
       height: 35px;
    }
    .cta:before {
        top: 8px;
      width: 35px;
       height: 35px;
    }
    
}
@media (max-width: 380px) {}
/* Revposive */

/*html {*/
/*    overflow-x: hidden !important; */
/*}*/


/* New Section */
.ne-section h2 {
    font-weight: 400 !important;
}
section.why-choose .box-1 {
    box-shadow: 0px 0px 10px 0px #00000054;
    padding: 40px 50px;
    width: 70%;
    margin: 0 auto;
}

section.why-choose {
    padding: 50px 0px !important;
}


.ne-section ul li {
    display: -webkit-inline-box;
    margin: 0px 10px !important;
}

.ne-section ul li a {
    color: #091e3e;
    background: #fff;
    padding: 15px 40px !important;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Ubuntu';
}

.ne-section ul li i {
    padding-right: 15px;
}

.ne-section ul {
    margin: 0 auto !important;
    text-align: center;
    padding-top: 35px;
}

section.our-services.text-light.ne-section {
    text-align: center;
}

section.our-services.text-light.ne-section {
    margin-top: 50px;
}
.ftr-page {
    grid-template-columns: 70% 30% 20%;
}

section.sectiontwo {
    background: #eef9ff;
    padding: 100px 0px !important;
}

section.sectiontwo h2 {
    color: #043f5e;
    text-align: center;
}

section.sectiontwo p {
    text-align: center;
    color: #091e3e;
}

section.sectiontwo .col-lg-3.inner-box-1 p {
    text-align: left;
}

section.sectiontwo .col-lg-3.inner-box-1 h4 {
    font-size: 20px;
    font-weight: 600 !important;
    color: #043f5e;
}

section.sectiontwo .col-lg-3.inner-box-1 h5 {
    background: #043f5e;
    padding: 30px;
    border-radius: 60px;
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    display: flex;
    color: #fff;
    margin-bottom: 15px;
}

section.sectiontwo .col-lg-3.inner-box-1 {
    padding-top: 30px;
    width: 24%;
    margin: 0 auto;
}


/* New Section */



/* Terms Condition & Privacy Page Css Start */

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


.oth-content p,li{
    font-size: 16px;
    text-align: justify;
}

.oth-content li{
    line-height: 40px;
}


/* Terms Condition & Privacy Page Css End */