/********** Template CSS **********/
:root {
    --primary: #ed207c;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

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

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

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    color:#3b5998 !important;
    font-size: 27px;
}

/*** Navbar ***/
.navbar.sticky-top {
    height:122px;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 24px;
    padding: 25px 0;
    font-weight: 500;
    outline: none;
    font-size: 12px !important;
    color: #54595F;
    fill: #54595F;
    padding-left: 6px;
    padding-right: 11px;
    padding-top: 12px;
    padding-bottom: 12px
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
 
    background-color: #ED207C;
    color: #fff;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
     
        background: #fff;

    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: #3b5998 !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}
p {
    text-align: left;
    color:#7a7a7a;
    font-family: var(--e-global-typography-text-font-family ), Sans-serif;
    font-weight: var(--e-global-typography-text-font-weight );
}

/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

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

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}
.btn-primary {
    color: #000;
    background-color: #00000066;
    border-color: #00000066;
}
.btn-primary:hover {
background-color: #000000cc;
}
.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

/**** Custom CSS ********/
.logo1 img {
    width: 60%;
    height: auto;
    padding: 0px 0px 0px 46px;
}
.areas-serve-wrapper {
    background-color: #fff;
    height: auto;
    padding: 50px 0px 50px 0px;
}
.areas-serve {
    max-width: 65%;
    text-align: center;
    margin: auto;
    padding-bottom: 50px;
}
.areas-box {
    margin-top: 20px;
}
.box {
    box-shadow: 1px 3px 15px 0px rgba(0, 0, 0, 0.07);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 13px 10px 13px 10px;
    border-radius: 30px 0px 0px 30px;
    margin-bottom: 14px;
}
p.we-text {
    margin-bottom: 10px;
    color: #7A7A7A;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: right;
}

h4.we-heading {
    color: #31ADE8;
    font-size: 32px;
    text-transform: capitalize;
    text-align: right;
}
h4.we-heading1 {
    color: #31ADE8;
    font-size: 32px;
    text-transform: capitalize;
    text-align: left;
}

p.we-text1 {
    margin-bottom: 10px;
    color: #7A7A7A;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: left;
}
.dataeng-2nd-block {
    Background-color: #1971af;
    padding: 20px 20px;
    color: #fff;
    width: 100%;
    text-align: center;
}
.dataeng-2nd-block h3{
    color:#fff !important;
    font-size:26px;
}
i.fa.fa-users {
    background-color: #ED207C;
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 45px;
    padding: 0.5em;
    border-radius: 50%;
}
.core-box {
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    border-radius: 15px 15px 15px 70px;
    margin: 20px 0px 20px 0px;
}
.coicon {
    margin: 25px 0px 7px 100px;
}
.corp {
 
    margin: 30px 0px 0px -90px;
}
.corp p{
 
    padding: 0px 20px 0px 0px !important;
}
i.fab.fa-hubspot {
    background-color: #31ade8;
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 45px;
    padding: 0.5em;
    border-radius: 50%;
}
i.far.fa-plus-square {
    background-color: #ffca08;
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 45px;
    padding: 0.5em;
    border-radius: 50%;
}
i.fas.fa-book {
    background-color: #3ab54a;
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 45px;
    padding: 0.5em;
    border-radius: 50%;
}
.heading-divider {
    width: 100%;
    height: 6px;
    background: #31ade8;
}
.logo2 img {
    width: 100%;
    height: auto;
}
.logo2 {
    margin: 0px 0px 0px 100px;
}
.foot ul {
    display: inline-flex;
    list-style: none;
    margin-left: 0px;
}
.foot li {
    margin-right: 30px;
}
.foot {
    margin: 30px 0px 0px 63px;
}
.foot a {
    color: #54595f;
}
.dot-divder {
    border-style: dotted;
    border-width: 0px 0px 1px 0px;
    border-color: #9b9b9b;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 10px 0px 0px 0px;
}
.foadd p {
    text-align: center;
}
.foadd {
    margin: -40px 0px -50px 100px;
}
.blue-div {
    border-style: dotted;
    color: #31ade8;
    border-width: 2.3px;
}
.about-divider {
    padding-top: 15px;
    padding-bottom: 15px;
}
h4{
    font-size: 20px;
    color: #3d4459;
    font-weight: 400;
}
h3{

    font-size: 32px !important;
}
.dual-box {
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.05);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0px 20px 0px 0px;
    padding: 29px 17px 14px 37px;
}

.volt h4 {
    color: #212121;
    font-size: 19px;
    text-transform: capitalize;
    line-height: 28px;
    padding: 15px 3px 13px 54px;
    letter-spacing: 1px;
}

.volt p {
    color: #ED207C;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

a :hover {
    color: #31ade8;
    text-decoration: none;
}

.prjc1 img {
    margin: 52px 0px 48px 0px;
}
.prjc img {
    margin: 0px 0px 67px 0px;
}
.prjc2 img {
    margin: 0px 0px 25px 0px;
}
.dont h2 {
    text-align: center;
}
.dont p {
    text-align: center;
}
.how {
    margin-bottom: 100px;
}
.evn {
    padding-top: 10px;
}

span.fa.fa-angle-up {
    color: #fff !important;
}
#scroll-top {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    text-align: center;
    z-index: 100;
    
    box-sizing: content-box;
}

/******** Media Queries *******/
@media only screen and (max-width: 768px){
    .foot ul {
       display: block;
        list-style: none;
        margin-left: 0px;
        line-height: 1.8rem;
    }
    .logo1 img {
        width: 100%;
        height: auto;
        padding: 82px 0px 0px 55px;
    }
    .corp {
        margin: 30px 0px 0px 12px;
    }
    .logo2 {
        margin: 0px 0px 0px 5px;
    }
    .foot {
         margin: 0px 0px 0px 0px;
        text-align: center;
    }
    .foadd {
        margin: -69px 0px 0px 0px;
        text-align: center;
    }
    .navbar .navbar-nav {
     
        background: #fff;
        padding: 0px 0px 0px 16px;

    }
    .vol1 {
        padding: 0px 0px 0px 36px;
    }
    .eint {
        margin-bottom: 10px;
    }



}