/* Global CSS */

html,
body {
    overflow-x: initial;
    font-family: 'Poppins';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins';
    color: #252525;
}

h1 {
    /* font-size: 8.83rem; */
    font-size: 190px;
    font-weight: bold;
    color: #222020;
}

h2 {
    font-size:90px;
    /* font-size: 3.5rem; */
    font-weight: 700;
    line-height: 117px;
    /* padding-bottom: inherit; */
    /* padding-bottom: 30px; */
    color: #252525;
    margin-bottom: 35px;
}

h3 {
    font-size: 52px;
    /* font-size: 2.75rem; */
    font-weight: 500;
    color: #33313a;
    margin-bottom: 30px;
}

h4 {
    font-size: 1.5rem;
    line-height: normal;
    color: #111111;
    font-weight: 600;
    margin-bottom: 20px;
}

p {margin-bottom: 15px;
    /* font-size: 1.2rem;
    color: #777777; */
    font-size: 20px;
    color: #777777; 
    font-family: 'Poppins';
}

.pd_top {
    padding-top: 180px;
}

.pd_bottom {
    padding-bottom: 180px;
}

.child_mt {
    margin-top: 85px;
}

a.buttons {
    padding: 11px 30px;
    border: 1px solid #666666;
    width: auto;
    margin: 0px auto;
    border-radius: 7px;
    color: #111111;
    font-weight: 500;
    margin-top: 45px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
}

a.buttons::after {
    content: "\f101";
    width: 11px;
    height: 10px;
    display: inline-block;
    margin-left: 16px;
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 700;
}

span.underline::before {
   border-bottom: 8px solid #b6d2fe;
    content: "";
    width: 98%;
    position: absolute;
    bottom: 22px;
    z-index: -1;
    right: 0;
}

span.underline {
    display: inline-block;
    min-height: fit-content;
    position: relative;
    z-index: 1;
    line-height: 46px;
}

button.nav-link,
button.nav-link:focus,
button.nav-link:active,
button.nav-link:visited {
    border: 0 !important;
    outline: none;
}


/* Full screen Menu */
.navigation__list li { 
    position: relative;
}
.navigation__checkbox {
    display: none;
}

.navigation__button {
    border: 2px solid rgb(255 255 255);
      height: 40px;
    width: 49px;
    position: relative;
    border-radius: 0;
    z-index: 2000;
    text-align: center;
    cursor: pointer;
}

.navigation {
    display: flex;
    justify-content: flex-end;
}

/* .navigation__background {
    height: 1px !important;
    width: 1px !important;
    border-radius: 50%;
    position: fixed;
    top: 62px;
    right: 70px;
    background-image: radial-gradient(#c8d4ee, #c8d4ee);
    z-index: 1000;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
} */
.navigation__background {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #c8d4ee;
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1) .5s;
    -moz-transition: all 2s cubic-bezier(.19, 1, .22, 1) .5s;
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) .5s;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) .5s;
}
.navigation__nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1500;
    opacity: 0;
    width: 0;
    -webkit-transition: all 2.5s cubic-bezier(.19, 1, .22, 1) .5s;
    -moz-transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
    -o-transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
    transition: all 2.5s cubic-bezier(.19, 1, .22, 1) .5s;
    transition-delay: .1s;
}
.menu-container {
    width: 1300px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.navigation__list {
    display: inline-block;
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
    transition: all 0.8s;
    -webkit-transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
    -moz-transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
    -o-transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
    transition: all 1.5s cubic-bezier(.19, 1, .22, 1) .5s;
}
.navigation__list li {
    list-style: none;
}


.navigation__link:link, .navigation__link:visited {
    display: inline-block;
    font-size: 70px;
    font-weight: 700;
    color: #00000073;
    text-decoration: none;
    /* text-transform: uppercase; */
    transition: all 0.4s;
    line-height: 92px;
}

.navigation__link:hover,
.navigation__link:active {
    color: #fff;
}

/* .navigation__checkbox:checked~.navigation__background {
    transform: scale(10000);
} */
.navigation__checkbox:checked~.navigation__background {
    opacity: 1;
    width: 100%;
    visibility: visible;
    -webkit-transition: all 2s cubic-bezier(.19, 1, .22, 1);
    -moz-transition: all 2s cubic-bezier(.19, 1, .22, 1);
    -o-transition: all 2s cubic-bezier(.19, 1, .22, 1) 0s;
    transition: all 2s cubic-bezier(.19, 1, .22, 1) 0s;
}
.navigation__checkbox:checked~.navigation__nav {
    opacity: 1;
    width: 100%;
    transition-delay: .4s;
}

.navigation__checkbox:checked~.navigation__nav .navigation__list {
    transition: all 0.8s;
}

.navigation__icon {
    position: relative;
    margin-top: 17px;
}

.navigation__item::marker {
    content: "";
    padding: 0;
    margin: 0;
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
    width: 31px;
    height: 2px;
    background-color: #ffffff;
    display: inline-block;
}

.navigation__icon::before,
.navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all 0.2s;
}

.navigation__icon::before {
    top: -8px;
}

.navigation__icon::after {
    top: 8px;
}

.navigation__button:hover .navigation__icon::before {
    top: -8px;
}

.navigation__button:hover .navigation__icon::after {
    top: 8px;
}
a:focus {
    outline: none !important;
}
#menu-item-1002 {
    position:relative;}
.sub-menu {
    z-index: 99999999;
    position: absolute;
    top: 20px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    right: 320px;
}
.sub-menu li a.navigation__link {
    text-transform: capitalize;
    font-size: 30px;
    line-height: 55px;
}
.sub-menu li{
    opacity: 0;
    transform: translateY(-30px);
}

@-webkit-keyframes menuItem {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    50% {
        -webkit-transform: rotateX(-20deg);
        transform: rotateX(-20deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}
@keyframes menuItem {
    0% {
        opacity: 0;
        -webkit-transform: rotateX(-90deg);
        transform: rotateX(-90deg);
    }
    50% {
        -webkit-transform: rotateX(-20deg);
        transform: rotateX(-20deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
    }
}
.sub-menu-active li {
    -webkit-animation-name: menuItem;
    animation-name: menuItem;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 300ms;
    animation-duration: 300ms;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}
.sub-menu-active li:nth-child(1) {
    -webkit-animation-delay: 80ms;
    animation-delay: 60ms;
}
.sub-menu-active li:nth-child(2) {
    -webkit-animation-delay: 160ms;
    animation-delay: 120ms;
}
.sub-menu-active li:nth-child(3) {
    -webkit-animation-delay: 240ms;
    animation-delay: 180ms;
}
.sub-menu-active li:nth-child(4) {
    -webkit-animation-delay: 320ms;
    animation-delay: 240ms;
}
.sub-menu-active li:nth-child(5) {
    -webkit-animation-delay: 400ms;
    animation-delay: 300ms;
}
.menu_social {
    position: absolute;
    bottom: 60px;
    left: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.menu_social li {
    display: inline-block;
    margin: 0 8px;
}
.menu_social li a {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    border: 2px solid #6e7483;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6e7483;
    font-size: 20px;
}
.menu_btn {
    position: absolute;
    bottom: 60px;
    right: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
}
.menu_btn li {
    display: inline-block;
    padding: 0 30px;
    position: relative;
}
.menu_btn li:first-child:before {
    content: "";
    position: absolute;
    height: 95px;
    width: 1px;
    background-color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.menu_btn li h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0;
}

.fixedheader .navigation__button {
    border: 2px solid #333;
    background-color: #fff;
}

.transparent-header.fixedheader {
    padding: 7px 65px;
}

.fixedheader .navigation__icon,
.fixedheader .navigation__icon::before,
.fixedheader .navigation__icon::after {
    /* width: 31px; */
    /* height: 2px; */
    background-color: #333;
    display: inline-block;
}

.fixedheader .navigation__icon {
    /* margin-top: 17px; */
}

.fixedheader .navigation__icon::before {
    top: -8px;
}

.fixedheader .navigation__icon::after {
    top: 8px;
}

.fixedheader .navigation__button {
    /* height: 40px; */
    /* width: 49px; */
}

.navigation__checkbox:checked+.navigation__button .navigation__icon {
    background-color: transparent;
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::before {
    top: 0;
    transform: rotate(135deg);
}

.navigation__checkbox:checked+.navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg);
}


/* Header Video Animation */

img.custom-logo {
  max-width: 90px !important;
    position: relative;
    z-index: 9999999;
}

.transparent-header {
    padding: 7px 65px;
}

.videobg video {
    height: auto;
    width: 120%;
    margin: 0 -5%;
}

.videobg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
    z-index: -9;
    overflow: hidden;
}

footer {
    background: #fff;
        z-index: 99;
    position: relative;
}
.single-post .main_section ul li a {
    color: #000;
    text-decoration: none;
}
ul.socail-fixed li a svg {
    width: 12px;
    height: 12px;
    fill: #8a9aaf;
}
ul.socail-fixed li a {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #8a9aaf;
    border-radius: 50%;
}
/* Menu Styling */

.fixedheader {
    background: #ffffff !important;
    position: fixed !important;
    top: 0 !important;
    color: #000 !important;
    z-index: 9999;
    /* box-shadow: 0px -6px 14px 6px #00000040; */    border-bottom: 1px solid #cccccc6b;
}

.fixedheader img.custom-logo {
    max-width: 90px !important;
}



/* Banner Area */

.slider_banner {
    padding-top: 165px;
}

.banner_mob_wrap {
    position: relative;
    width: 422px;
    left: -19px;
}

.home_banner_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-down {
   
    width: 100px;
    height: auto;
    margin: 85px auto;
}

.arrow-down::before {
    background: black;
    width: 2px;
    height: 80px;
    content: "";
    display: block;
    margin-top: 30px;
    margin: 0px auto;
}

.arrow-down::after {
    content: "";
    width: 8px;
    height: 9px;
    display: block;
    background: #000;
    margin-right: -4px;
    margin-left: auto;
    margin-top: -5px;
    margin: 0px auto;
}


/* Logo Hover Effect */

.border-0 img,
.border-1 img,
.border-2 img,
.border-3 img,
.border-4 img,
.border-5 img,
.border-6 img,
.border-7 img,
.border-8 img {
    filter: contrast(0);
}

.border-0:hover img,
.border-1:hover img,
.border-2:hover img,
.border-3:hover img,
.border-4:hover img,
.border-5:hover img,
.border-6:hover img,
.border-7:hover img,
.border-8:hover img {
    filter: none;
    transition: 1s ease;
}

.border-0,
.border-1,
.border-2,
.border-4,
.border-5,
.border-6 {
    border-right: 1px solid #d8d8d8 !important;
}

.border-0,
.border-1,
.border-2,
.border-3 {
    border-bottom: 1px solid #d8d8d8 !important;
}

.car_anim {
    position: relative;
}

.car1 {
    position: absolute;
    width: initial !important;
    right: -11px;
    bottom: 60px;
    opacity: 0;
}

.car2 {
    position: absolute;
    width: initial !important;
    right: -128px;
    bottom: 13px;
    opacity: 0;
}

.car_anim_onscroll .car1 {
    opacity: 1;
    transition-delay: 0.5s;
}

.car_anim_onscroll .car2 {
    opacity: 1;
    transition-delay: 0.75s;
}


/* Digital Tycoons Box */

.page-template-page-home .card-body {
    margin-top: 25px;
    padding: 0;
}

.page-template-page-home .card {
    box-shadow: 0px 14px 35.34px 2.66px rgb(0 0 0 / 15%);
    border-radius: 0;
    padding: 55px 30px;
    height: 465px;
    transition: all .3s ease-in-out;
    border-width: 0;
}

.page-template-page-home .card img {
    width: 84px;
}

.digital_partner_wrap {
    padding-left: 120px;
}

.digital_partner_wrap .card:hover {
    border-color: #dae8ff;
    transform: translateY(-10px);
    transition: all .3s ease-in-out;    background: #dae8ff;
}


/* Shaping Business For A Promising Future */

.right-dark-bg {
    background-color: #252525;
    color: #fff !important;
    padding: 75px 75px 75px 160px;
}

.right-dark-bg p {
    color: #c6c6c6 !important;
}

.right-dark-bg p:last-child {
    color: #fff !important;
}

.bg-white {
    background-color: #fff;
}

h3.white-color {
    color: #fff;
    font-weight: 900;
}

.right-dark-bg li {
    font-size: 24px;
    font-weight: 600;
    padding: 8px 23px;
    font-family: 'Poppins';
}

.right-dark-bg ul {
    padding-left: 14px !important;
    margin: 0;
    padding-bottom: 20px;
    margin-top: 15px;
}


/* Testimonials */


/* .slick-slide {
    background: #ffff;
    padding: 30px;
}*/

.testimonials-left-side h5 {
    font-size: 52px;
    font-weight: 700;
}

.testimonials-left-side h6 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 70px;
    position: relative;
}

.testimonials-left-side h6::after {
    content: "";
    width: 90px;
    height: 3px;
    background: #999999;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
}

ul.slick-dots li {
    display: inline;
    padding: 3px;
}

ul.slick-dots {
    margin: 0px auto;
    text-align: center;
    margin-top: 40px;
    padding: 0;
}

ul.slick-dots li button {
    background: #000;
    border: none;
    padding: 0;
    height: 4px;
    width: 30px;
}

ul.slick-dots li.slick-active button {
    width: 50px;
}

.slick-slider {
    width: 100%;
    background-color: transparent;
}

.slick-slider .slick-track {
    align-items: center;
    flex-wrap: nowrap;
    height: 100px;
    justify-content: center;
}

.slick-slider .slick-slide {
       /* display: inline-block; */
    /* vertical-align: middle; */
    /* padding: 10px 0px; */
    /* margin: 10px; */
    /* background-color: white; */
    transition: all 0.3s ease;
    height: auto;
    /* text-align: center;
}

.slick-slider .slick-slide.slick-current,
.slick-slider .slick-slide.slick-center {
    background: linear-gradient(45deg, #ffffff, #ffffff);
    /* padding: 30px 0px; */
    /* margin-top: -25px; 
    box-shadow: 0px 0px 10px 0px #00000042;*/
    padding: 0px 0px !important;
    position: relative;
    top: 0px;
}

.slick-prev,
.slick-next {
    z-index: 10;
    top: 0px;
    background-color: transparent;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.testimonials-left-side {
    width: 57%;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding-left: 40px;
    padding-right: 40px;
    align-self: center;
    color: #000;
}

.testimonials-right-side {
    width: 48%;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.testimonials-right-side:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000004d;
}

.testimonials-block {
    display: flex;
}

.testimonials.slick-initialized.slick-slider.slick-dotted {
    margin-top: 80px;
}

.testimonials-right-side .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.testimonials-right-side a i {
    color: #fff;
    font-size: 55px;
}


/* Great Brands Section */

.col-lg-4.bg-white.branding img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 640px !important;
    max-width: 625px;
}

.col-lg-4.bg-white.branding {
    position: relative;
}

div#v-pills-tab {
    background: transparent;
    padding: 0;
}

div#v-pills-tab button {
    text-align: left;
    font-weight: 400;
    font-size: 44px;
    color: #333333;
}

div#v-pills-tab button.active {
    font-weight: 900;
    background: transparent;
    color: #333333;
}


/* Startups Titans */

.bg-lightblue {
    background-color: #dae8ff;
}

.bg-lightblue p {
    color: #333;
    margin-bottom: 20px;    text-align: justify;
}

.border-lines {
    border-right: 1px solid #555657;
}


/* Run Counter Section */

span.counter_run {
    font-size: 80px;
    font-weight: 700;
    display: block;
    line-height: 55px;
    margin-bottom: 15px;
}

span.counter-description {
    /* padding: 20px 140px 20px 10px; */
    /* padding: 20px 28px 20px 0px; */
    padding: 20px 0px 20px 0px;
}

.rightbarline {
    position: relative;
    padding: 0px 75px;
}

.rightbarline::before {
    width: 2px;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    right: 0px;
    background: #ebebea;
}

.rightbarline:nth-child(3)::before {
    width: 0px;
    height: 201px;
    content: "";
    display: block;
    position: absolute;
    right: 70px;
    background: #ebebea;
}

h3.counter-heading {
    text-align: center;
    margin-top: 110px;
}

.section9 .nav-tabs .nav-item.show .nav-link,
.section9 .nav-tabs .nav-link.active,
.section9 .nav-tabs .nav-link {
    border: none !important;
    border-radius: unset !important;
    background: #fff;
    padding: 0 !important;
}

.section9 .nav-tabs .nav-link.active,
.section9 .nav-tabs .nav-link.active1 {
    color: black;
}

.section9 .nav-tabs button {
    font-weight: 600;
    font-size: 22px;
    color: #ababab;
}

.section9 .nav-tabs button::before {
    content: "";
    position: absolute;
    right: calc(-6.7vw);
    width: calc(13.5vw);
    height: 2px;
    bottom: -7px;
    z-index: 99 !important;
    background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%), linear-gradient(90deg, #cccccc, #cccccc, #e0e4cc, #cccccc, #cccccc);
    background-size: 6px 3px, 100% 3px;
}

.show-number {
    font-size: 55px;
    font-weight: 400;
    line-height: 60px;
}

.section9 .nav-tabs {
    border: none;
}

.section9 .nav-tabs button {
    position: relative;
}

.section9 .nav-tabs .nav-link:focus,
.section9 .nav-tabs .nav-link:hover {
    isolation: auto;
}

.section9 .nav-tabs button:nth-child(4)::before {
    display: none;
}

.section9 .nav-tabs button.active::after,
.section9 .nav-tabs button.active1::after {
    background: #000;
    border: 3px solid #000;
}

.section9 .nav-tabs button::after {
    background: #cccccc;
    content: "";
    width: 12px;
    height: 12px;
    bottom: -11px;
    display: block;
    margin: 0px auto;
    border-radius: 60px;
    position: inherit;
    border: 3px solid #ccc;
}


/* Blog Section */

.publish-date {
    font-size: 100px;
    font-weight: 700;
    line-height: 80px;
    color: #c2c2c2;
}

.publish-month-year {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #c2c2c2;
    margin-top: 5px;
}

.section13 h3 {
    font-size: 20px;
    line-height: 33px;
    margin-top: 17px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #333;
}

.border-left-blog {
    border-left: 1px solid #ebebea;
}

.border-left-blog {
    border-left: 1px solid #ebebea;
    padding: 0px 60px;
}

.blog_box {
    padding-right: 40px;
}


/* Faq Section */

section.section15 {
    background: #dae8ff;
    position: relative;
    padding-bottom: 120px;
}

.section15 p {
    padding-right: 80px;
}

.mob_anim {
    position: absolute;
    width: initial;
    right: 200px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes jiggle {
    1% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    5% {
        transform: translate(1px, -1px) rotate(-1deg);
    }
    10% {
        transform: translate(2px, -2px) rotate(0deg);
    }
    15% {
        transform: translate(3px, -3px) rotate(1deg);
    }
    20% {
        transform: translate(2px, -2px) rotate(0deg);
    }
    25% {
        transform: translate(1px, -1px) rotate(-1deg);
    }
    30% {
        transform: translate(0px, 0px) rotate(0deg);
    }
    35% {
        transform: translate(-1px, 1px) rotate(1deg);
    }
    40% {
        transform: translate(-2px, 2px) rotate(0deg);
    }
    45% {
        transform: translate(-3px, 3px) rotate(-1deg);
    }
    50% {
        transform: translate(-2px, 2px) rotate(1deg);
    }
    55% {
        transform: translate(-1px, 1px) rotate(1deg);
    }
    60% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

img.footer_form_img {
    animation-name: jiggle;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    top: 0;
}

.footer_form {
    padding-top: 50px;
}

input.input-field,
textarea.input-field,
input.submit-button {
    background: transparent;
    border: 1px solid #666666;
    padding: 0px 16px;
    margin: 16px 0px;
    border-radius: 5px;
    width: 100%;
    height: 60px;
}

textarea.input-field {
    background: transparent;
}

textarea.input-field {
    height: 245px;
    padding-top: 20px;
    padding-bottom: 20px;
}

input.submit-button {
    margin-top: 8px;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}

h2#heading3 {
    font-size: 20px !important;
    line-height: normal !important;
    padding: 0 !important;
    font-weight: 500 !important;
}

.section14 .accordion-item {
    background: transparent !important;
    margin: 0 !important;
    padding: 8px 0px;
    line-height: normal !important;
    border-radius: 0 !important;
    border: 0;
}

.section14 .accordion-item h2 {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #e0e0e0;
}

.section14 .accordion-item h2 button.accordion-button {
    background: #ffff;
    color: #111111;
    font-size: 19px !important;
    font-weight: 500 !important;
    padding: 21px 15px;
    line-height: normal !important;
    border-left: 7px solid #474747;
    border-radius: 0;
    box-shadow: none;
}

.section14 .accordion-item h2 button.accordion-button.collapsed {
    border-left: 7px solid #999999;
    background-color: #f6f6f5;
}

.section14 .accordion-button::after {
    content: "\f055" !important;
    background: none !important;
    font-family: "fontawesome";
    color: #999;
    font-size: 25px;
    line-height: 21px;
}

.section14 .accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: none;
    content: "\f056" !important;
    color: #111;
    font-family: "fontawesome";
}

.accordion-button:focus {
    border: none;
}

.section14 .accordion-body {
    padding: 30px 22px;
    font-size: 16px;
    line-height: 28px;
    color: #777777;
}

.section14 {
    position: relative;
}
.page-template-page-home .section14 .faq_img {
    position: absolute;
    top: 314px;
    right: 0;
    /* width: 40%; */
    z-index: -1;
}
.section14 .faq_img {
    position: absolute;
    top: 454px;
    right: 0;
    width: initial;
    z-index: -1;
}


/* Widget Section */

#media_image-2 img {
    width: 120px;
}

.main_footer {
    padding: 75px 0;
}

footer ul {
    margin: 0 !important;
    padding: 12px 23px !important;
}

footer .widget_media_image {
    margin-bottom: 20px;
}

footer ul a,
footer ul span {
    color: #000 !important;
    text-decoration: none;
    padding: 5px 6px !important;
}

footer ul a {
    display: block;
}

footer ul li::marker {
    content: "\f054" !important;
    font-family: "fontawesome";
    font-size: 14px;
}

footer .widget-section {
    padding: 75px 0;
}

.widget-section div#secondary {
    position: relative;
}

.footer_col {
    padding: 0 50px;
    border-right: 1px solid #dadada;
}

footer .menu-top-bar-container ul li a {
    font-size: 18px;
    color: #333333;
}

.social_icons li {
    display: inline-block;
    margin-right: 10px;
}

.social_icons li i {
    font-size: 20px;
    color: #333333;
}

.social_icons {
    padding: 0 !important;
}

.widget-section .border-not-show #secondary::after {
    display: none;
}

.contactinfo ul {
    padding: 0 !important;
}

.contactinfo ul li {
    padding: 13px 0px !important;
    display: block;
}

.contactinfo ul li  {
    position: absolute;
    width: 90%;
    top: 1px;
    line-height: 27px;
    font-weight: 500;
    font-size: 18px;
    font-family: 'Poppins';
    padding: 8px 12px !important;
}

.contactinfo ul li {
    position: relative;
    font-size: 18px;
}

.subscribe_col h4 {
    font-size: 32px;
    font-weight: 700;
    color: #252525;
}

.subscribe_col input {
    height: 60px;
}

.border-not-show p {
    margin: 0;
}
ul.footer_list {}

ul.footer_list li {
    position: relative;
    padding-left: 22px!important;
}

ul.footer_list li i {
    position: absolute;
    left: 0;
    top: 16px;
}
ul.footer_list li span {
    padding: 0!important;
    display: block;
}
input.newsletteremail {
    border: none;
}

input.buttons {
    border: 1px solid #999;
    border-radius: 0 5px 5px 0px;
    background: transparent;
    position: relative;
    color: #111111;
    font-weight: 500;
    display: inline-flex;
    width: 30%;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins';
}

.subscribe_col .newsletteremail {
    width: 70% !important;
    display: inline-block;
    padding: 6px 0px 6px 20px;
    font-size: 16px;
    border: 1px solid #999999;
    border-right: 0;
    border-radius: 5px 0px 0px 5px;
    /* line-height: 25px; */
}


/* Copyright Section */

.copyright {
    background: #232323;
}

.copyright p {
    padding: 12px !important;
    margin: 0 !important;
    color: #fff;
    font-size: 16px;
}

.copyright .widget {
    margin: 0;
}


/* Setup Wizard */

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    background: url(https://images.unsplash.com/photo-1485069203392-8e1aeb1ebf02?auto=format&fit=crop&w=1054&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D) center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.wrap:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
}

.slider {
    position: relative;
    z-index: 200;
    padding: 0 0px;
    margin: 0 auto;
    max-width: 1250px;
    width: 100%;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: monospace;
    font-size: 5rem;
    z-index: 300;
    outline: none;
}

.slick-prev {
    left: -50px;
    text-align: left;
}

.slick-next {
    right: -50px;
    text-align: right;
}

.item.slick-slide {
    width: 800px;
    height: 530px !important;
    transition: transform .4s;
    position: relative;
}
.slick-center:after,.slick-center .testimonials-right-side:before{display:none;}
.testimonials-block.h-100 {
    border : 1px solid #eee;
}


.item.slick-slide {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: right !important;
    background-color: #fff !important;
}

ul.slick-dots li button {
    font-size: 0;
}


/* About us */

.page-template-page-about .tab-pane h3 {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 46px;
}

.about_section3 h2,
.click_bg_img {
    color: #ffff;
}

.page-template-page-about .click_bg_img.active {
    opacity: 1;
}

.page-template-page-about .click_bg_img {
    font-size: 85px;
    font-weight: 600;
    opacity: 0.5;
    line-height: 125px;
}

.page-template-page-about .container-fluid-stretch.bgimg-click::before {
    content: "";
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.page-template-page-about .container-fluid-stretch.bgimg-click {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-template-page-about .aboutus-section4 {
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 46%, rgba(218, 232, 255, 1) 40%);
    padding: 58px 0;
    margin-top: 150px;
}

.page-template-page-about .boxshadow {
    background: #fff;
    box-shadow: 0px 0px 114px 0px rgb(0 0 0 / 9%);
    padding: 145px 122px 165px;
}

.page-template-page-about .card-aboutpage:nth-child(even) {
    background: #eef4ff
}

.page-template-page-about .card-aboutpage:nth-child(3n+1) .card {
    background: #eef4ff;
}

.page-template-page-about .card-aboutpage .card {
      border: 0 !important;
    border-radius: unset !important;
    padding: 55px 55px 60px;
    background: #fff;
    height: 305px;
}
.page-template-page-about .card-aboutpage .card h4 {
    font-size: 24px;
}

.about_section1 {
    position: relative;
    margin-top: 210px;
}

.inr_bnr_right {
    position: absolute;
    right: 60px;
    width: initial !important;
    top: 50%;
    transform: translateY(-50%);
}

.about_section2 img {
    width: initial !important;
}

.page-template-page-about .section3_content {
    position: relative;
    z-index: 5;
}

.page-template-page-about .section3_content {
    height: 876px;
    display: flex;
    align-items: center;
}

.page-template-page-about .card-body {
    padding: 0 !important;
}

.boxshadow h2 {
    margin-bottom: 0px;
}

.about_section5 {
    position: relative;
}

.about_section5 .tab_content_img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about_section5 h2 {
    margin-bottom: 50px;
}

.about_section5 div#v-pills-tab button {
    font-weight: 400;
    font-size: 28px;
    color: #111111;
    padding: 0;
    padding-bottom: 15px;
}

.about_section5 div#v-pills-tab button.active {
    font-weight: 700;
    color: #111111;
}

.about_section6 {
    position: relative;
}

.about_section6_img {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: initial;
}


/* WEB SOLUTIONS */

.web_banner img {
    width: initial !important;
}

.web_banner {
    margin-top:  110px;
    position: relative;
    margin-bottom: 80px;
    padding-bottom: 50px;
}

.web_banner h1 {
    font-size: 90px;
    text-transform: uppercase;
    line-height: 105px;
}

.web_bnr_right {
    position: absolute;
    right: 0px;
    top: -65px;
    z-index: 1;
}
.small_circle {
    position: absolute;
    right: 229px;
    bottom: -70px;
}

.large_circle {
    position: absolute;
    right: 365px;
    top: -60px;
}

.blue_cube {
    position: absolute;
    top: 200px;
    right: 50%;
    z-index: 2;
}

.white_cube {
    position: absolute;
    right: 79px;
    bottom: 249px;
    z-index: 2;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.rotate_anim {
    animation: rotate 50s infinite;
}

.rotate_anim2 {
    animation: rotate 65s infinite;
}

@keyframes zoom_anim {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.zoom_anim1 {
    animation: zoom_anim 8s infinite;
}

.zoom_anim2 {
    animation: zoom_anim 4s infinite;
}

.border_bottom_box {
    border-bottom: 1px solid #dedede;
}

.border_left_box {
    border-left: 1px solid #dedede;
}

.web_section2 .col-lg-6 {
    padding: 35px;
}

.web_section2 .col-lg-6:nth-child(1) {
    border-bottom: 1px solid #dedede;
}

.web_section2 .col-lg-6:nth-child(2) {
    border-bottom: 1px solid #dedede;
    border-left: 1px solid #dedede;
}

.web_section2 .col-lg-6:nth-child(4) {
    border-left: 1px solid #dedede;
}

.web_sec2_box h3 {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 40px;
}

.web_sec2_box {
    padding: 110px 80px;
    background-repeat: no-repeat;
    background-size: 0%;
    background-position: center;
    transition: all .3s ease-in-out;
    height: 465px;
}

.web_sec2_box:hover {
    background-size: cover;
    box-shadow: 0px 11px 28.5px 1.5px rgba(47, 123, 243, 0.1);
    transition: all .3s ease-in-out;
}

.web_section3 h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
}

.web_section3 .nav {
    margin-top: 50px;
    margin-bottom: 50px;
}

.web_section3 div#v-pills-tab button {
    padding: 0;
    padding-right: 48px;
    font-size: 20px;
    font-weight: 600;
    color: #777777;
}

.web_section3 div#v-pills-tab button.active {
    color: #076ac7;
}

.web_section3 h5 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}

.web_section4_box {
    padding: 120px 90px;
    background-color: #f7f7f7;
    height: 535px;
}

.web_section4_box h3 {
    font-size: 45px;
    font-weight: 700;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 50px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 36px;
    height: 4px;
    margin: 5px 5px;
    transition: initial;
    border-radius: 0;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #000000;
    width: 61px;
}

.web_section5 .nav {
    margin: 0;
}

.web_section5 .nav-tabs {
    border-bottom: 1px solid #767574;
}

.web_section5 .nav-tabs .nav-link {
    margin-bottom: 0;
    border: none !important;
    padding: 0;
    font-size: 40px;
    font-weight: 400;
    margin: 0 35px;
}

.web_section5 .nav-tabs .nav-link.active {
    color: #333;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    transform: translateY(-8px);
    background-color: transparent;
}

.web_section5 .nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    background-color: #cae1fe;
    bottom: -7px;
    left: 50%;
    width: 105%;
    height: 11px;
    transform: translateX(-50%);
}

.web_section5_tabs .tab-content {
    padding: 95px 0px 95px 150px;
    margin-top: 63px;
    background-color: #daebfe;
}

.tech_icons {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 90px;
}

.tech_icons li {
    display: inline-flex;
    margin-right: 40px;
    flex-direction: column;
    align-items: center;
}

.tech_icons h6 {
    font-size: 25px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.tech_icon img {
    width: initial !important;
}

.tech_icon {
    width: 103px;
    height: 103px;
    border-radius: 20px;
    background-color: #b5d3f5;
    display: flex;
    justify-content: center;
    transition: all .3s ease-in-out;
    align-items: center;
}

.tech_icons li:hover .tech_icon {
    background-color: #111111;
    transition: all .3s ease-in-out;
}

.total_projects {
    margin: 0;
    padding: 0;
    list-style: none;
}

.total_projects li {
    display: inline-block;
}

.total_projects li:first-child {
    margin-right: 25px;
}

.total_projects li h3 {
    font-size: 46px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
}

.total_projects li h5 {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 0;
}

.web_section5_tabs_box h4 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
}

.web_section5 .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0px;
}

.web_section6_box {
    background-color: #fcfcfc;
    height: 520px;
    padding: 110px 40px 110px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    border: 1px solid #e1e1e1;
    transition: all .3s ease-in-out;
}

.web_section6_box img {
    width: initial !important;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 120px;
}

.web_section6_box h2 {
    font-size: 95px;
    font-weight: 700;
    color: #c3ddfe;
    line-height: 80px;
    margin-bottom: 15px;
}

.web_section6_box sub {
    font-weight: 400;
    font-size: 60px;
    bottom: 0;
}

.web_section6_box h5 {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin-bottom: 20px;
}

.web_section6_box p {
    font-size: 15px;
    margin-bottom: 0px;
    line-height: 23px;
}

.web_section6_hvr {
    overflow: hidden;
    height: 130px;
    background-color: #fcfcfc;
    position: relative;
    z-index: 1;
    transition: all .3s ease-in-out;
}

.web_section6_box:hover {
    box-shadow: 0px 14px 30.08px 1.92px rgba(28, 28, 28, 0.16);
    transition: all .3s ease-in-out;
}

.web_section6_box:hover .web_section6_hvr {
    height: 100%;
    transition: all .3s ease-in-out;
}

section.sec02 {}

.sec02 h4 {
    color: #4b78f1;
    font-size: 30px;
}

.sec02 h2 {
    font-size: 42px;
    line-height: 53px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.sec02 h2 span.underline:before {
    bottom: 0px;
}
.sec02 h2 span.underline {
    line-height: 22px;
}
.page-template-referral-partner h2 span.underline {
    line-height: 37px;
}
.sec02 h2 span.underline:before {
    border-bottom: 4px solid #b6d2fe;}

.icon01 {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: #898989;
    padding: 20px;
}

.icon01 {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: #898989;
    padding: 20px;
    transition: all .5s ease;
}
.sec03 .col-lg-3:hover .icon01 {
    background: #b6d2fe;
    transition: all .5s ease;
}

.sec03 h4 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 31px;
    padding: 0 40px;
    line-height: 40px;
}

.m-30 {
    margin: 100px 0 0;
}

section.sec03 {
    background: #fafafa;
}

.tek_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: #898989;
    border-radius: 50%;
    padding: 20px;
    transition: .5s ease;
}

.techn {
    min-height: 485px;
    box-shadow: -8px -12px 31.3856px 0.6144px rgba(0, 0, 0, 0.1);
    transition: .9s ease;
    padding: 50px 40px;
    margin-top: 20px;
}

.techn:hover .tek_icon {
    background: #b6d2fe;
}

.techn:hover {
    box-shadow: -8px -12px 30.08px 1.92px rgba(47, 123, 243, 0.1);
}

.techn h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 34px;
}

section.sec04 {}

.w-90 {
    width: 91%;
    margin: 35px auto;
}

.page-template-app-php section.section9.pd_top {
    background: #e3eeff;
}

.page-template-app-php .section9 .nav-tabs .nav-item.show .nav-link,
.page-template-app-php .section9 .nav-tabs .nav-link.active,
.page-template-app-php .section9 .nav-tabs .nav-link {
    background: #e3eeff;
}

.page-template-app-php section.section9 {
    background: #e3eeff;
    padding: 100px 0;
}

.page-template-app-php section.section9 .nav-tabs button::before {
    background-image: linear-gradient( 90deg, transparent, transparent 50%, #e3eeff 50%, #e3eeff 100%), linear-gradient( 90deg, #cccccc, #cccccc, #e0e4cc, #cccccc, #cccccc);
}

.web_sec5 .nav {
    margin: 0;
}

.web_sec5 .nav-tabs {
    border-bottom: 1px solid #767574;
}

.web_sec5 .nav-tabs .nav-link {
    margin-bottom: 0;
    border: none !important;
    padding: 0;
    font-size: 20px;
    font-weight: 400;
    margin: 0 56px 0 0;
}

.tab_app {
    padding: 20px 0;
}

.web_sec5 .nav-tabs .nav-link.active {
    color: #333;
    font-size: 26px;
    font-weight: 700;
    position: relative;
    transform: translateY(-8px);
    background-color: transparent;
}

.web_sec5 .nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    background-color: #333333;
    bottom: -8px;
    left: 50%;
    width: 100%;
    height: 8px;
    transform: translateX(-50%);
}

section.web_sec {
}

.tec01 {
    width: 100%;
    height: 150px;
    padding: 20px 0;
}

.tec01 img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tab-content.tab_app {
    padding: 50px 0 0;
}

.stack01 {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stack01 .nav-link {
    font-size: 30px!important;
}

section.web_sec.stack {}

.box_skills {
    box-shadow: -8px -12px 24.84px 2.16px rgba(0, 0, 0, 0.07);
    margin-top: 60px;
    padding: 30px;
    min-height: 500px;
    text-align: center;
}

.ic_skill {
    width: 165px;
    height: 165px;
    margin: 0 auto 30px;
}

.ic_skill img.img-fluid {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box_skills h4 {
    font-size: 26px;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heighlights {
    background: url(http://cydover3.demo.cydostaging.com/wp-content/uploads/2021/05/map.png);
    background-repeat: no-repeat;
    background-size: contain!important;
    background-position: bottom center;
}

.w-80 {
    width: 90%;
    margin: 0 auto;
}

.cunt {
    box-shadow: -8px -12px 30.08px 1.92px rgba(143, 143, 143, 0.1);
    background: #fff;
    padding: 100px 63px;
    width: 100% !important;
    height: 365px;
}

.count01 {
    font-size: 65px;
    font-weight: 700;
    line-height: 60px;
}

.count01:after {
    content: '+';
    font-size: 65px;
}

.cunt h6 {
    font-size: 17px;
    color: #6c6c6c;
    font-weight: 600;
}
.cunt p {
    font-size: 15px!important;
}
.mt-100 {
    margin-top: 150px;
}

.banner_image {
    position: relative;
    text-align: center;    z-index: 99;
}

.banner_image:before {
    content: '';
    background: url(http://cydover3.demo.cydostaging.com/wp-content/uploads/2021/05/cr2-1.png);
    width: 260px;
    height: 460px;
    position: absolute;
    left: 150px;
    z-index: -9;
    animation: zoom_anim 4s infinite;
    top: 40px;
    background-size: 90%;
    background-repeat: no-repeat;
}

.banner_image:after {
    content: '';
    background: url(http://cydover3.demo.cydostaging.com/wp-content/uploads/2021/05/cr1-1.png);
    width: 160px;
    height: 310px;
    position: absolute;
    right: 130px;
    z-index: -9;
    animation: zoom_anim 4s infinite;
    background-size: 90%;
    background-repeat: no-repeat;
    bottom: -40px;
}


/* Branding page start */

.page-template-branding-php .website_container .transparent-header {
    background: #3a26a4;
}

.page-template-branding-php .website_container section.web_banner {
    background: #3a26a4;
    padding-top: 100px;
    margin-top: 0;
}

.page-template-branding-php .website_container section.web_banner h1,
.page-template-branding-php .website_container section.web_banner p {
    color: #fff;
}

.page-template-branding-php .website_container section.web_banner .buttons {
    background: #fff;
}

.transparent-header {
    position: fixed;
    top: 0;
    z-index: 999;
    transition: .3s ease;
}

.gurus p {
    padding: 0 100px;
}

.gurus {
    padding-bottom: 80px;
}

section.people {
    background: url(/wp-content/uploads/2021/05/sec03.png);
    /* padding: 120px 0 110px; */
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    height: 850px;
}

.ask {
    padding: 80px 0 30px; 
}

.bg-brand {
    background: #f6f6f6;
    transition: .5s ease;
}

.bg-brand:hover {
    background: #fff;
    transition: .5s ease;
}

.brand_box {
    padding:60px 40px 20px 40px;
}

.brand_box h4 {
    position: relative;
    display: inline-block;line-height: 18px;
    z-index: 9;
}

.brand_box h4.yellow {}

.brand_box h4:after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
     z-index: -1;  
    right: 0;
}

.brand_box h4.yellow:after {
    border-bottom: 8px solid #fdf4b4;
}
.impression .col-lg-4:nth-child(2) .brand_box h4.yellow:after {
    border-color: #fac4d4;
}
.impression .col-lg-4:nth-child(3) .brand_box h4.yellow:after {
    border-color: #cca5dd;
}

.brand_box h4.parpel:after {
    border-bottom: 8px solid #cca5dd;
}

.brand_box h4.red:after {
    border-bottom: 8px solid #fac4d4;
}

.brand_box ul {
    margin: 0;
    padding: 0;
}

.brand_box ul li {
    padding-left: 20px;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    color: #5c5c5c;
    list-style: none;
}

.brand_box ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    background: #5c5c5c;
    border-radius: 50%;
}

.arrow { display:none;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.arrow a {
    background: #b6d2fe;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.arrow a svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.branding_slider .slick-slide:after {
    display: none;
}

.branding_slider .container-fluid {
    margin: 0px;
}

.cli {
    padding-right: 30px;
}

.cli h5 {
    color: #777777;
    font-size: 36px;
    font-weight: 600;
    margin: 30px 0 20px 0;
}

.cli p {
    color: #777777;
    /* line-height: 33px; */
    padding-right: 120px;
}

.branding_slider ul.slick-dots {
    margin: 0 0 0 auto;
    position: absolute;
    bottom: 0px;
    right: 44%;
    padding: 0;
}

.branding_slider {
    padding-top: 100px;
}

.does {
    padding: 80px 0;
}

.ic_icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.does p {
    /* line-height: 29px; */
}

.mt-80 {
    margin-top: 90px;
}

p.d_pera {
    padding: 0 80px;
}

.does h4 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 30px;
    padding: 0 13px;
}

section.king {
    padding-bottom: 170px;
}

.king p {
   /*  line-height: 29px; */
}

.king h3 {
    font-size: 75px;
    line-height: 85px;
    text-transform: uppercase;
    font-weight: 700;
    color: #252424;
    margin-bottom: 90px;
    letter-spacing: 8px;
    margin-top: 20px;
}

.brands {
    border: 7px solid #b6d2fe;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;width: 270px;margin: 0 auto;    border-radius: 8px;
}

.brands h4 {
    margin: 0;
    text-transform: uppercase;
    font-size: 41px;
    color: #252424;
    font-weight: 700;
    line-height: 50px;
}
.brands svg {
    width: 110px;
    height: 110px;
}
.bx-br {
    width: 300px;
    margin: 0 auto;
     background: #78a6ee;
    padding: 20px;
    border-radius: 10px;
}
.bx-br h4 {
   font-size: 30px;
    text-transform: uppercase;
    margin: 0;
}
.bx-br h4 span {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 22px;
    display: block;
}
.bx0, .bx1, .bx2 {
    position: relative;
}

.bx0 .bx-br {
    position: absolute;
    right: -30px;
    bottom: -50px;
}
.bx1 .bx-br {
    position: absolute;
    right: -30px;
    top: -50px;
}
.bx2 .bx-br {
    position: absolute;
    right: -30px;
    bottom: -50px;
}
 
.pb-60 {
    padding-bottom: 60px;
}

section.people p {
    padding-top: 20px;
}


/* ANIMATION PAGE CSS START */

.page-template-animation h4 {
    font-size: 36px;
    font-weight: 600;
}

.anim_banner h1 {
    font-size: 81px;
    line-height: 97px;
    margin-bottom: 0 !important;
}

.anim_banner h4 {
    font-size: 38px;
    font-weight: 600;
}

.anim_banner ul {
    margin: 0;
    padding: 0;
}

.anim_banner ul li {
    color: #585757;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    position: relative;
    padding-left: 25px;
    line-height: 52px;
}

.anim_banner ul li:before {
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: #0a0a0a;
    border-radius: 100%;
    left: 0;
    top: 17px;
}

.anim_bnr_right {
    position: absolute;
    right: 0;
    top: 0;
}

.anim_banner {
    height: 1000px;
    padding: 0;
    padding-top: 115px;
    margin: 0;
    overflow: hidden;
}

.anim_sec02 {
    background-color: #88d5e8;
    text-align: center;
}

.anim_sec02 p {
    color: #121212;
}

.anim_sec2_tabs img {
    width: initial !important;
}

.anim_sec04 {
    background-color: #efcece;
}

.anim_sec04 .nav {
    margin: 0;
}

.anim_sec04 .nav-tabs {
    border-bottom: 1px solid #767574;
    justify-content: center;
}

.anim_sec04 .nav-tabs .nav-link {
    margin-bottom: 0;
    border: none !important;
    padding: 0;
    font-size: 38px;
    font-weight: 400;
    margin: 0 35px;
}

.anim_sec04 .nav-tabs .nav-link.active {
    color: #333;
    font-weight: 700;
    position: relative;
    transform: translateY(-8px);
    background-color: transparent;
}

.anim_sec04 .nav-tabs .nav-link.active:before {
    content: "";
    position: absolute;
    background-color: #333333;
    bottom: -7px;
    left: 50%;
    width: 105%;
    height: 11px;
    transform: translateX(-50%);
}

.anim_sec04_tabs .tab-content {
    margin-top: 50px;
}

.anim_sec04_tabs p {
    color: #252525;
}

.anim_sec04_tabs img {
    width: initial !important;
}

.tab_icon {
    width: 132px;
    height: 132px;
    border-radius: 100%;
    border: 12px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.tab_icon img {
    width: initial !important;
}

.anim_sec05 {
    background-color: #f8f8f8;
}

.anim_sec05_tabs .nav-tabs {
    margin: 0;
    justify-content: space-between;
    border: 0;
    position: relative;
    z-index: 1;
}

.anim_sec05_tabs .nav-tabs:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
    height: 12px;
    width: 95%;
    background-color: #ccc;
    z-index: -1;
}

.anim_sec05_tabs .nav-tabs .nav-item.show .nav-link,
.anim_sec05_tabs .nav-tabs .nav-link.active {
    background-color: transparent;
}

.anim_sec05_tabs .nav-tabs h5 {
    font-size: 25px;
    font-weight: 700;
    color: #252525;
    margin-top: 10px;
}

.anim_sec05_tabs .nav-tabs .nav-link.active h5 {
    color: #86b1f4;
}

.anim_sec05_tabs .tab-content img {
    width: initial !important;
}

.anim_sec05_tabs .tab-content {
    margin-top: 40px;
}

.anim_sec05_tabs .nav-tabs .nav-link {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry_icon {
    text-align: center;
    margin-top: 100px;
}

.industry_icon img {
    width: initial !important;
}

.industry_icon h3 {
    font-size: 41px;
    color: #252525;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 0;
}


/* ANIMATION PAGE CSS END */


/* Digital marketing page style start */


.page-template-marketing section.marketing_banner a.buttons {    
    margin-right: 10px;
}
.marketing_bnr_img {
    position: absolute;
    top: 50%;
    right: 50px;
    width: initial !important;
    transform: translateY(-50%);
}
.marketing_banner {
    position: relative;
    margin: 260px 0 170px;
}
.page-template-marketing section.marketing_banner h1 {
        font-size: 85px;
    line-height: 100px;
    text-transform: uppercase;
}

.section001 {
    background: #d7e4fb;
}

.fluf {
    font-size: 100px;
    font-weight: 700;
    color: #0f0f0f;
}

.fluf span {
    background: #0f0f0f;
    color: #d7e4fb;
}
.pt-70{    padding-top: 75px;}
.diff_img img {
    width: initial !important;
}

.slid_difference .slide_item ul {
    margin: 0;
    margin-top: 30px;
}

.slid_difference .slide_item ul li {
    font-size: 20px;
    font-weight: 600;
    color: #71a2ee;
    line-height: 45px;
}

.section001 p {}

.section002 h4 {
    font-size: 36px;
    line-height: 60px;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 70px;
}

.slid_difference {
    position: relative;
}

.slid_difference h5 {
    font-size: 48px;
    font-weight: 600;
    color: #81abee;
}

h5.abs {
    position: absolute;
    bottom: 0;
}

.text-r h5 {
    text-align: right;
}

.text-r h5.abs {
    right: 15px;
}

.text-r {
    position: relative;
}

.slid_difference .slick-slide:after {
    display: none;
}

.boxim {
    width: 80%;
    margin: 0 auto;
    border: 12px solid #b6d2fe;
}

section.section003 {
    /* background: #fafafa; */
}

.boxim1 {
    height: 250px;
    /* width: 250px; */
    border-radius: 50%;
    margin: 0 auto 20px;
}

.boxim1 img {
    /* border-radius: 50%; */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.marketing_box {
    background: #fff;
    text-align: center;
    padding: 70px 30px;
    box-shadow: 13px 11px 29px 0px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.marketing_box h5 {
    font-size: 22px;
    color: #676767;
    margin: 0;
}

.marketing_box h4 {
    font-size: 38px;
    color: #6899e7;
    margin-bottom: 30px;
}

.marketing_box p {}

.mt-60 {
    margin-top: 60px;
}

.serve {
    height: 600px;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    position: relative;
}

.serve_inner {
    background: #b6d2fed9;
    padding: 50px 4px 20px 20px;
    width: 90%;
    position: absolute;
    bottom: 40px;
}

.serve_inner h4 {
    font-size: 45px;
}

.serve_inner p {
    font-size: 26px;
}

.w-900 {
    width: 90%;
    margin-left: auto;
    position: relative;
}

.rotate {
    transform: rotate(270deg);
    position: absolute;
    left: -340px;
    top: 260px;
}

.tabings_cydo {}

.tabings_cydo ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #a1a1a1;
    padding: 30px 0;
}

.tabings_cydo ul li {
    width: 25%;
    margin-bottom: 20px;
}

.tabings_cydo .nav-tabs .nav-link {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 20px;
    font-weight: 600;
}

.tabings_cydo .nav-tabs .nav-link svg {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto;
}

.tabings_cydo .nav-tabs .nav-link span {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.tabs03 .tab-content.tab_app {
    padding: 0;
    height: 100%;
}

.tabs03 .tab-content.tab_app .web_sectionind {
    padding: 30px;
    background-size: cover!important;
    background-repeat: no-repeat!important;
    height: 100%;
}

.tabs03 .tab-content.tab_app .web_sectionind .indust_box {
    background: #ffffffd6;
    height: 100%;
    display: flex;
    align-items: center;box-shadow: 9px 8px 23.04px 0.96px rgb(0 0 0 / 30%);
}

.tabs03 .tab-content.tab_app .web_sectionind .bx {
    text-align: center;
    padding: 0 60px;
}

.tabs03 .tab-content.tab_app .web_sectionind .bx .boxim1 {
    width: auto;
    height: auto;
    border: initial;
    margin: 0 0 20px 0;
}

.tabs03 .tab-content.tab_app .web_sectionind .bx .boxim1 svg g path {
    fill: #b6d2fe!important;
}

.tabings_cydo .nav-tabs .nav-link.active {
    background: initial!important;
}

.tabs03 .tab-content.tab_app .web_sectionind .bx .boxim1 h5 {}

.tabs03 .tab-content.tab_app .web_sectionind .bx .boxim1 p {}

.tabs03 .tab-content.tab_app .web_sectionind .bx .boxim1 svg {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    fill: #b6d2fe;
}

.tabs03 .tab-content.tab_app .tab-pane {
    height: 100%;
}

.tabs03 .tab-content.tab_app .web_sectionind .bx h5 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 30px;
}

.tabs03 .tab-content.tab_app .web_sectionind .bx p {
    color: #252525;
}

.section006 h4 {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 22px;
    height: 51px;
    transition: .5s ease;text-align: center;
}

.circ {
    width: 300px;
    height: 300px;
    background: #ededed;
    border-radius: 50%;
    border: 24px solid #fff;
    transition: .5s ease;
    margin: 0 auto;
}

section.section006 {
    position: relative;
}

.circle_col:hover {}

.circle_col:hover h4 {
    color: #7ba9f0;
}

.circle_col:hover .circ {
    background: #b6d2fe;
}

.circle_col {
    margin-top: 40px;
    z-index: 99;
    position: relative;
}
section.section006:after {
    content: '';
    position: absolute;
    width: 100%;
    height:622px;
    background: #f5f5f5;
    top: 0;
    z-index: -1;
}

section.section007 {
    background: url(/wp-content/uploads/2021/06/m5.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 42%;  
}

.last_im {
    display: none;
}

.mb-60 {
    margin-bottom: 60px;
}

.section005 li.nav-item {
    margin-bottom: 40px;
    display: block;
    width: 100%;
}

.section005 li.nav-item .nav-link {
    background: #f7f7f7;
    display: block!important;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    font-size: 29px;
    text-align: center;
    box-shadow: 6px 5px 13.58px 0.42px rgba(0, 0, 0, 0.12);
    padding: 13px 0;
}

.section005 .nav-tabs {
    margin: 0;
    margin-top: 150px;
    border: 0;
}

.section005 {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 160px;
}

.section005:after {
    content: '';
    width: 53%;
    height: 70%;
    background: #78a6ee;
    position: absolute;
    bottom: 120px;
    right: 0;
}

.tab-content.tab_app {}
.bx00 {
    text-align: center;
}
section.section005 .tab-content.tab_app {
    z-index: 99;
    position: relative;
    padding-top: 80px;
}

section.section005 .tab-content.tab_app h4 {
    color: #000;
    font-size: 42px;
}

section.section005 .tab-content.tab_app p {
    color: #000;
    line-height: 35px;
}

.tab_img {
    width: 94%;
    height: 700px;
    /*  box-shadow: 7px 6px 28.8px 1.2px rgba(0, 0, 0, 0.16); */
}

.tab_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    bottom: -190px;
    right: 410px;
    width: 50%;
}

section.Contact {}

.section.Contact .form-control {}

.page-template-contact textarea.form-control {
    height: initial!important;
    line-height: inherit;
    padding: 10px 16px!important;
}

section.Contact .form-control {
    font-size: 13px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #666666;
    padding: 0px 16px;
    border-radius: 5px;
    margin-bottom: 14px;
}

.page-template-contact input.wpcf7-form-control.wpcf7-submit.ref_btn {
    background: transparent;
    border: 1px solid #666666;
    padding: 0px 16px;
    margin: 16px 0px;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    height: 50px;
}

section.Contact_map {
    background: #dae8ff;
}

.feature.map map {
    width: 100%;
}

.feature.map {}

.feature.map iframe {
    width: 100%;
    height: 400px;
}
.marketing_process svg {
    width: 100px;
}
.marketing_process.nav-tabs {
    border-bottom: none;
    justify-content: center;
    position: relative;
    z-index: 5;
    margin-left: 0;
}
.marketing_process li {
    margin: 0 20px;width: 24%;
}
.marketing_process svg {
    width: 65px;
}
.marketing_process button {
    padding: 0;
    background: transparent !important;
display: block;
    width: 100%;
}
.proc_circle {
    background-color: #f5f5f5;
    display: inline-flex;
    width: 150px;
    height: 150px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    border: 20px solid #fff;
}
.marketing_process button.active h4{
    color: #7ba9f0;
}
.marketing_process button.active .proc_circle{
    background-color: #b6d2fe;
}
.marketing_process button.active .proc_circle svg {
    fill: #fff;
}
.marketing_proc_img {
    padding: 0 150px;
}
.section006 .tab-content {
    position: relative;
    z-index: 5;
}
.section006 h3 {
    font-weight: 700;
}
/* Digital marketing page style end */


/* REFERRAL PARTNER CSS START */

.page-template-referral-partner h1 {
    font-size: 75px;
    line-height: 99px;
}

.page-template-referral-partner h3 {
    font-size: 32px;
    font-weight: 600;
}

.referral_banner {
    position: relative;
    height: 940px;
    margin-top: 40px;
}

.ref_bnr_right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 120px;
    width: initial !important;
}

.referral_banner h4 {
    font-size: 31px;
    font-weight: 600;
    margin-bottom: 30px;
}

.referral_banner p {
    font-size: 22px;
    color: #777777;
}

.referral_banner ul {
    margin: 0;
    padding: 0;
}

.referral_banner ul li {
    color: #333333;
    font-size: 22px;
    font-weight: 400;
    list-style: none;
    position: relative;
    padding-left: 33px;
    line-height: 52px;
}

.referral_banner ul li:before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    font-family: "fontawesome";
    font-weight: 700;
    color: #333;
}

.ref_sec02_img img {
    width: initial !important;
}

.ref_sec03_col img {
    width: initial !important;
    margin-right: 30px;
}

.ref_sec03_col {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
}

.ref_sec04 {
    background-color: #dae8ff;
}

.ref_sec04_col img {
   width: 50px !important;
    margin-right: 25px;
    height: 50px;
    object-fit: contain;
}

.ref_sec04_col {
    margin: 55px 0;
}

.ref_sec04_col h3 {
    margin-bottom: 0px !important;
}

.ref_sec04_col div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.ref_sec05 h1 {
    font-size: 150px;
    font-weight: 700;
    color: #e7e7e7;
    line-height: 120px;
    position: relative;
    display: inline-block;
}

.ref_sec05 h1 span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background-color: #fff;
    font-size: 26px;
    text-transform: uppercase;
    color: #e7e7e7;
    font-weight: 400;
    line-height: initial;
}

.ref_sec05 h3 {
    margin-bottom: 10px;
}

.ref_form_sec input,
.ref_form_sec textarea {
    height: 60px;
    margin-bottom: 30px;
    padding: 17px;
    font-size: 16px;
    color: #777777;
    background-color: #f6f6f5;
    border: 1px solid #e0e0e0;
    border-radius: 0;
}

.ref_form_sec input.ref_btn {
    display: block;
    margin: 25px auto 0;
    font-size: 18px;
    font-weight: 500;
    color: #111111;
    border-radius: 5px;
    border: 1px solid #666666;
    padding: 10px 40px;
    background-color: transparent;
}

.web_sec2_box:hover {
    background-color: #dae8ff;
}
.industry_icon svg {
    width: 80px;
    height: 75px;    transition: .5s ease;
}
.industry_icon:hover svg {
    fill: #b6d2fe;
}
 .anim_sec03.pd_top.pd_bottom .owl-carousel .owl-item img {
   
    width: 80%;
}

.industry_icon svg {
    width: 70px;
    height: 70px;
    transition: .4s ease;
}

.industry_icon:hover svg {
    fill: #b5d0fc;
}
/* REFERRAL PARTNER CSS END */
.circ svg {
    width: 50%;
    height: 100%;
}
.circle_col:hover svg {
    fill: #fff;
}
section.section007 h3 {
    color: #afcdfb;
    font-size: 60px;
    font-weight: 700;
}
/* Magnific popup css start*/ 

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
  }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  }

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 12px solid black;
    left: 5px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    border-right: 20px solid white; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 12px solid black;
    left: 3px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 20px solid white; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.mfp-iframe-holder .mfp-close {
  top: -43px; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }
@media all and (max-width: 800px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }
a.popup-youtube {
    display: block;
    width: 100%;
    height: 100%;
}
/* Magnific popup css end*/




/* Portfolio page start  */
section.portfolio {
    padding-bottom: 160px;
}
.portfolio_banner h1 {
    font-size: 190px;
    font-weight: 700;
    line-height: 190px;
    text-transform: uppercase;
}

.portfolio_banner h2 span {
    color: #0080ff;
    font-style: italic;display:block;
}

.portfolio_banner {padding-bottom:0px;
    padding-top: 215px;
}
.portfolio_banner p {
    font-size: 24px;
}
.portfolio_image {
    width: 100%;
    height: 520px;
    margin-bottom: 30px;
}

.portfolio_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text1 {
    padding-left: 15px;
}
.text2 {
    padding-left: 65px;
}
.portfolio h4 {
    padding-right: 71px;
    line-height: 40px!important;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
}

.portfolio a {
    font-size: 22px;
    color: #737171;
    text-decoration: none;
    font-weight: 600;
}

.box_portfolio {
    height: 75%;
    display: flex;
    align-items: center;
    position: relative;
    top: 25%;
    right: 15%;
    box-shadow: 3px 9px 44px 0px rgba(0, 0, 0, 0.28);}
.box_portfolio2 {
    height: 75%;
    display: flex;
    align-items: center;
    position: relative;
    top: 25%;
    right: 0;
    box-shadow: 3px 9px 44px 0px rgba(0, 0, 0, 0.28);
    z-index: 99;
    }
.color1 {
    background: #ff214f;
}
.color2 {
    background: #3621ff;
}
 
.color3 {
    background: #eb1373;
}
.logo_img {
    margin: 0 auto;
}
.logo_img h3 {
    font-size: 40px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 700;
}
.pd-port {
    padding-top: 160px;
}


.portfolio_image1 {
    width: 100%;
    height: 520px;
    margin-bottom: 30px;
    right: 15%;
    position: relative;
}
.portfolio_image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.portfolio_tabs {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    align-items: center;
}
.portfolio_tabs li {
    margin: 0 16px;
    display: inline-block;
}
.portfolio_tabs li a {
    font-size: 20px;
    font-weight: 700;
    color: #868686;
    position: relative;
}
.portfolio_tabs li.active a {
    font-size: 26px;
    font-weight: 700;
    color: #333333;
}
.portfolio_tabs li.active a:before {
    content: "";
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    height: 9px;
    width: 110%;
    background-color: #333333;
}
/* Portfolio page end  */
.page-template-animation .section14 {
    min-height: 860px;
}




.tab-content.tab_app .fade {
    transition: initial;
}
ul#menu-top-bar {
    width: 100%;
}
.menu-item-11941:hover ul.sub-menu {
    opacity: 1;
    overflow: visible;
}
.menu-item-11941:hover ul.sub-menu li {
    opacity: 1;
    transform: translateY(0px);
}

.subscribe {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.subscribe span.wpcf7-form-control-wrap.email-699 {width: 70%;}

.subscribe span.wpcf7-form-control-wrap.email-699  .newsletteremail {
    width: 100% !important;
}

.subscribe span.ajax-loader {
}:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}
.wpcf7 form.sent .wpcf7-response-output ,.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output{ 
	font-size: 12px;
	margin-top: 0;
}
.wpcf7 .ajax-loader { 
	width: 20px;
	height: 20px; 
	margin: 10px; 
}
.tech_icon    img {
    max-width: 60px!important;
    margin: 0 auto;
}
 section.anim_sec02.pd_top.pd_bottom span.underline::before {
    border-bottom: 8px solid #2d75bc;
}
section.Contact textarea.form-control {
    height: 250px!important;
}
.child_mt  img {
    max-width: 83%;
    margin: 0 auto;
}
.element-item {
    width: 30.333%;
    margin: 0px 20px;
    margin-top: 50px;
    float: left;
    margin-right: 1%;
}
#filters button {
    padding: 20px 12px;
    font-size: 15px;
    color: #616161;
    background: rgb(204 204 204 / 0%);
    display: inline-block;
    margin-right: 5px;
    border: 0;
    text-transform: capitalize;
    font-weight: 500;
}

div#filters {
    margin-bottom: 0px!important;
    border-bottom: 1px solid #61616124;
    margin-top: 30px;
}

.post_grid2 .list-view {
    height:180px;
}
.post_grid2 .list-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}
.blog_content p {
    font-size: 14px;
}

h4.blog_title a {
    padding: 0 0 0 0px;
    color: #616161;
    text-transform: capitalize;
    font-size: 17px;
    position: relative;
    margin: 0px 0px 0px;
    display: inline-block;
    line-height: 25px;
    text-decoration: none;
}

.post_grid2 {
    background: #dae8ff14;
    border: 1px solid #dae8ffb3;
    border-radius: 10px;
    overflow: hidden;
}
button.button.is-checked,button.button:hover {
    color: #000!important;
    transition: .2s ease;
}
.post_grid2 .cont {
    padding: 20px;
}

.post_grid2 .list-view a {
    width: 100%;
    height: 100%;
    display: block;
}
button#load-more {
    display: none;
}
/* Single page style  */
.author-img img {
    height: 100% !important;
    object-fit: cover;
}
.img-in {
    width: 100%;
    display: block;
    height: 473px;
}

.img-in img.alignnone.size-full.wp-image-298 {
    height: 100%;
    width: 100%;
    object-fit: fill;
} 

.single-post headerinner {
    display: none;
}

.single-post section#ban { 
    padding: 1% 0;
    text-align: center; 
        margin-top: -1px;
            position: relative;
}

.single-post section#ban .col-md-12 {
      position: relative;
    z-index: 2;
}

 

section#ban {
    padding: 5% 0 0 !important;
}

.single-post section#ban ul {
    padding: 0;
    margin: 20px 0;
    text-align: center;
    position: relative;
}

.single-post section#ban ul li {
    display: inline-block;
    margin: 0 10px;color:#000 !important;
}

.single-post section#ban ul li span.date {
    position: relative;
    padding-left: 23px;color:#000;
}

.single-post section#ban ul li span.date:after {content: "\f017";position: absolute;height: 23px;
width: 17px;left: 0;font-family: FontAwesome;top: -1px;color:#000;}

.single-post section#ban ul li span.comnts {
    padding-left: 23px;
    position: relative;color:#000;
}

.single-post section#ban ul li span.comnts:after {
    content: "\f02b";
    position: absolute;color:#000;
    height: 15px;
    width: 17px;
    left: 0;
    font-family: FontAwesome;
        top: -1px;
}

.single-post section#ban ul:after {content: "";
/* position: absolute;border: 1px solid #000;left: 0;width: 180px;top: 9px;left: 14%; */
}

.single-post section#ban ul:before {
    content: "";
    /* position: absolute;
    border: 1px solid #000;
    width: 180px;
    top: 9px;
    right: 16%; */
}
 
 
section#cont {
    padding: 2% 0;
    max-width: 1140px;
    margin: auto;
    border-top: 1px solid #cccccc87;
    margin-top: 1%;
}

section#ban .container {
    padding: 0;
    max-width: 1140px;
    margin: auto;
}

 

section#cont .container {
    width: 100%;
    position:relative;
}
 

section#cont i.post-img {
    display: block;
    height: 500px;
    width: 100%;
}

 

section#cont i.post-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
 
section#cont ul.table-of-content {
    padding: 0;
    margin: 35px 0;
}

section#cont ul.table-of-content li {
    display: block;
    margin: 10px 0;
}

 
section#cont ul.table-of-content li {
    padding: 5px 10px;
    border-bottom: 1px solid #cccccc91;
    position: relative;
}

section#cont ul.table-of-content li a {
    font-size: 18px !important;
    font-family: "Avenir-Book-01";
    line-height: 25px;
    color: #7b7b84;
    transition: 0.2s;
    padding: 0;
}

section#cont ul.table-of-content li:after {content: ">";position: absolute;right: 10px;font-family: 'Neutraface2Text-Bold';font-size: 31px;top: 0;font-weight: 100;color: #4542cd;transition: 0.2s;}

section#cont ul.table-of-content li:first-child:after {
    display: none;
}


.darkpara p a {
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
}
.darkpara img {
    width: auto !important; 
}

.container.rel {
    margin-bottom: 50px;
}

 .rel h2 {
    text-transform: uppercase; 
}

 .rel ul {
    padding: 0;
}
 
.darkpara p {
    font-size: 16px;
    line-height: 30px;
    color: #777777; 
    margin: 0 0 15px 0;
}

.darkpara h2{
    font-size: 40px;
    /* text-transform: uppercase; */
    width: 100%;
    margin: 40px 0 10px 0;
}

md-12.darkpara h3 {
       color: #4e4d76;
    font-family: 'Neutraface2Text-Bold';
    font-size: 24px !important; 
    text-transform: uppercase;
    width: 100%;
    margin: 40px 0 0;
    }

 .conc {
    background-color: #e0e0e0;
    padding: 2%;
    border-radius: 25px;
    box-shadow: 0px 0px 32px #00000026;
    margin: 0 auto 4%;
}

 .conc h2.related-post {
    margin: 20px 0 !important;
    color: #333 !important;
    text-transform: uppercase;
    font-family: 'Neutraface2Text-Bold';
    font-size: 42px;
}

 .conc p {
    margin: 0;
    font-size: 19px;
    line-height: 30px;
    color: #333 !important;
}

.container.rel ul li {
    display: inline-block;
    width: 50%;
    float: left;
}

 .rel ul {    flex-wrap: wrap;
        width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}

 .rel ul li a h2 {
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 10px;
    line-height: 28px;
}

 .rel ul li:nth-child(2) {
    width: 44%;
    float: right;
    padding: 1%;
}

 .rel ul li span {font-size: 14px;}

 .rel ul li i {
    display: block;
    height: 162px;
    width: 100%;
}

 .rel ul li i img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.single-post section#ban ul li span.comnts p:last-child span {
    display: none;
}
 
.single-post section#ban ul li span.comnts p {
    margin: 0;
    display: inline-block;
    padding: 0 5px;
    color:#000;
}

.author-img {
    width: 100px;
    height: 100px;
    border-radius: 5em;
    margin: auto;
    overflow: hidden;
}

#ban h1.darkheading{
        font-size: 37px;
        text-transform: uppercase;
        width: 100%;
        margin: 0;
}

.author h3.author-t {
    color: #777777;
    font-size: 18px;
    text-transform: uppercase;
    width: 100%;
    margin: 10px 0;
}
#cont blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
    background: #f2f2f2;
}

.author {
    background-color: #dae8ff14;
    border-radius: 5px;
    border: 1px solid #dae8ff;
    padding: 20px;
    text-align: center;
    margin: 40px 0;
}

h2.related-post {
    text-align: center;
    margin-bottom: 40px;
}

.container.rel ul li a {
    text-decoration: none;
}
.single-post tbody {
    border-width: 1px;
    border-color: #ccc;
    padding: 4px;
}

.single-post tbody td {
    padding: 7px;
    font-size: 13px;
    border-width: 1px;
    border-color: #ccc; 
}
 

.single-post .main_section ol {
    
    margin: 30px 0;
}

.single-post .main_section ol li { 
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    color: #777777;
    padding-left: 23px;
}

.darkpara span,.darkpara p span {
    color: #777777;
}
.single-post .main_section ul {
    padding: 0;
    margin: 30px 0;
}

.single-post  .main_section ul li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    color: #777777;
    padding-left: 23px;
}

.single-post .main_section ul li:before {content:'';width: 10px;height: 10px;background: #71a2ee;position: absolute;left: 0;border-radius: 50%;top: 5px;}

 
section#ban ul li:before {
    display: none;
}
section#ban ul li{padding:0px;}
  .darkheading span:before {
    border-bottom: 8px solid #b6d2fe;
    content: "";
    /* width: 94%; */
    position: absolute;
    bottom: 17px;
    /* z-index: -1; */
    right: 4px;
    height: 4px;
    width: 100%;
    z-index: -1;
}

.darkheading span {
    min-height: fit-content;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.main_section h3 {
    font-size: 30px;
}
.single-post .videobg {
    background:linear-gradient(
180deg
, rgb(207 214 251) 0%, rgba(248,249,254,1) 67%, rgba(255,255,255,1) 100%)!important;
}
.portfolio_box {
    width: 100%;
    margin-top: 0px;
}
section#ban {
    padding: 110px 0 0 !important;
}
/* blog single page style end */
.page-template-page-web .web_banner {
    margin-bottom: 0;
    padding-bottom: 0; 
    
        margin-top: 160px;
    
}
.portfolio_box:nth-child(even) .portfolio_wrap .pr1 {
    order: 2;
}
.portfolio_box:nth-child(even) .portfolio_wrap .pr2 {}

.portfolio_box:nth-child(even) .portfolio_wrap .pr1 .portfolio_image {
    width: 100%;
    height: 520px;
    margin-bottom: 30px;
    right: 15%;
    position: relative;
}

.portfolio_box:nth-child(even) .portfolio_wrap .pr2 .box_portfolio {
    right: 0;
} 
.portfolio_tabs {
    border-bottom: 1px solid #000000!important;    text-align: center;
}

.portfolio_tabs  .button {
    padding: 7px 0!important;
    margin: 0 11px;
    font-weight: 700!important;
    color: #868686!important;
    position: relative;
}

.portfolio_tabs  button.button.is-checked {
    font-weight: 700!important;
    color: #333333!important;
}.awards_slider  .owl-dots {
    margin: 0;
}
.awards_slider .owl-dots.disabled {
    display: block!important;
}
.page-template-contact .mob_anim {
    position: initial;
    width: 100%;
    top: 0;
    transform: translateY(0%);
}
.page-template-contact section.web_banner.portfolio_banner {
    padding: 0;
}
.portfolio_tabs button.button.is-checked:after {content: "";position: absolute;bottom: 0;left: 50%;/* transform: translateX(-50%); */height: 5px;width: 100%;left: 0;background-color: #333333;}
.web_section3 h3 span.underline {
    line-height: 31px;
}

.navigation ul.menu_btn {
    display: block;
}

.web_banner img.img-fluid.ref_bnr_right.mobile_bnr_img.contact_image{    top: 90px;
    width: 55%!important;}
    
section.web_banner.portfolio_banner.contact_us   p {
    padding-right: 160px!important;}
   
   
.section13 h3 a {
    color: #252525;
    text-decoration: none;
}
.web_banner img.img-fluid.ref_bnr_right.mobile_bnr_img.portfolio_img {
    width: 50%!important;
    top: 190px;
}
.new_height {
    height: 420px;
}
.overflow {
    overflow-y: hidden!important;height: 94vh;
}
.box2 .or22 {
    order: 2;
}
.box2 .or33 {
    order: 3;
}
.box2 .or11 {
    order: 1;
}










/* Q/A fixes */
.hs-button.primary.large {
    padding: 11px 30px;
    border: 1px solid #666666;
    width: auto;
    margin: 0px auto;
    border-radius: 7px;
    color: #111111;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.accordion-body p {
    text-align: justify;
}

h4.blog_title {
    min-height: 50px;
}

span.wpcf7-not-valid-tip + span {
    display: none;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
}

.ref_sec05  p {
    text-align: center!important;
}
.our_work  p,.blog_box p ,.testimonials-left-side p,.about_section2 p,.about_section5 .tab-pane p ,.about_section1 p,.web_sec2_box p,.web_portfolio_slider p,.animServices_slider p,.anim_sec04_tabs p,.cli p,.section001 p,.child_mt p,.sec02 p,.ref_sec02  p,.ref_sec03_col div ,.ref_sec04_col p,.about_section1 p,.web_section3 p{
    /* text-align: justify; */
}
 
 
li#menu-item-1199 {
    transition: all .25s ease;
}

li#menu-item-1195 {
    transition: all .5s ease;
}

li#menu-item-1196 {
    transition: all .75s ease;
}

li#menu-item-1197 {
    transition: all 1s ease;
}

li#menu-item-1198 {
    transition: all 1.25s ease;
}


.sub-menu.active1 li {
    opacity: 1;
    transform: translateY(0px);
}



/* Service page style */

.banner_image_service {
    position: absolute;
    right: 0;
    top: 0;
    width: 53%;
    text-align: right;
}

.services_listing {
    /* margin: 0; */
    display: flex;
    height: 559px;
    /* flex-wrap: wrap; */
    padding: 0;
    margin: 0;
    position: relative;
    height: 610px;
    overflow: hidden;
}

.services_listing li {width: 20%;background-position: 62%!important;list-style: none;/* position: relative; */height: 610px;display: block;overflow: hidden;transition: width .7s ease;border-top: 0;padding-top: 0;margin-top: 0;color: #fff;background-repeat: no-repeat!important;background-size: cover!important;}
.services_listing li  .servive_box {
    border-left: 1px solid #ffffff8f;
    display: block;
    height: 639px;
    text-decoration: none;
    position: relative;
    /* background-size: 100% 100%!important; */
    /* background-position: center top!important; */
    /* background-repeat: no-repeat!important; */
    padding: 0px 20px;
    /* background-color: rgba(18,18,18,.7); */
    color: #fff;
    position: absolute;
    height: 100%;
    width: 20%;
    left: 0;
    z-index: 2;
    left: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: rgb(18 18 18 / 48%);
}
.main_content {
    position: absolute;
    top: 110px;
    left: 0;
    width: 90%;
    right: 0;
    margin: 0 auto;
}

.icon {
    position: absolute;
    bottom: 90px;
    display: flex;
    align-items: center;
}

.main_content p {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}
.main_content p.list_item {
    font-weight: 400;
    font-size: 16px ;
}


.icon i {
    color: #fff;
    font-size: 30px;
}
.pb-60{padding-bottom:60px;}
.work_sec {}

.work_sec .nav-tabs {
    border-bottom: 0;
    margin: 0;
}

.work_sec .nav-tabs li.nav-item {
    width: 16.666%;
    position: relative;
}

.work_sec .nav-tabs li.nav-item .nav-link.active {
    color: #88b1f1;
}

.work_sec .nav-tabs li.nav-item .nav-link {
    padding: 0;
    margin: 0 auto;
    font-weight: 600;
}

span.count1 {
    display: block;
    height: 57px;
    width: 57px;
    line-height: 57px;
    border: 2px solid #000;
    border-radius: 50%;
    color: #0f0f49;
    font-size: 22px;
    position: relative;
    z-index: 99;
    margin: 0 auto 30px;
    background: #fff;
}

.work_sec .nav-tabs li.nav-item .nav-link.active span.count1 {
    position: relative;
    color: #fff;
    border: 1px solid #88b1f1;
    background: #fff;
    z-index: 999999999;
    animation: new-pulse 2s infinite;
}

.work_sec .nav-tabs li.nav-item .nav-link.active span.count1:after {
    background: #88b1f1;
}

.work_sec .nav-tabs li.nav-item .nav-link  .count1:after {content: '';width: 90%;height: 90%;background: #ffffff;position: absolute;left: 5%;border-radius: 50%;top: 5%;z-index: -9;}
.desc {
    background: #f9f9f9;
    padding: 120px 0;
    position: relative;
}

a.sch {
    display: block;
    font-size: 32px;
    color: #c8c7c7;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
}

.process_work p {
    color: #777777;
}
.image_box {
    width: 100%;
}

.image_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work_sec .nav-tabs li.nav-item:before {content: '';width: 100%;height: 1px;background: #b2b4b8;position: absolute;left: -70px;top: 27%;z-index: -9;}

.work_sec .nav-tabs li:first-child:before {
    display: none;
}

.work_sec .nav-tabs li:last-child:before {
    /* width: 50%; */
}

.work_sec .nav-tabs .nav-link:focus, .work_sec .nav-tabs .nav-link:hover {
    background-color: #fff0;
}p.start {
    color: #646464;
    font-weight: 600;
}
.tr {
    text-transform: uppercase;
}
.image_gallery {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}



.image_gallery li .im {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform .2s; /* Animation */
    overflow: hidden;
}

.image_gallery li .im img {
    width: 100%;
    height: 100%;
    transition: transform .5s; /* Animation */
    object-fit: cover;
}
.image_full {
    height: 940px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: .5s ease;
}
.image_gallery li {
    width: 50%;
    height: 470px;
}
.image_full img {
    width: 100%;
    height: 100%;
    transition: .5s ease;
}
.banner_service {
    margin-bottom: 0;
    padding-bottom: 0;
}.serv  .pd_bottom {
    padding-bottom: 100px;
}

.serv .pd_top {
    padding-top: 100px;
}
 .heighlights.pt0.faaiz .cunt {
    box-shadow: -2px -2px 39.2px 0.8px rgba(0, 0, 0, 0.07);
}
.services_listing li:nth-child(1):before {content: '';/* background: url(http://cydover3.demo.cydostaging.com/wp-content/uploads/2021/08/02.png); */width: 100%;height: 100%;position: absolute;left: 0;}

 
 
.services_listing li:hover {
    width: 100%;
    left:0;
}

.services_listing li:nth-child(2) a {
    left: 20%;
}

.services_listing li:first-child a {
    left: 0;
}

.services_listing li:nth-child(3) a {
    left: 40%;
}

.services_listing li:nth-child(4) a {
    left: 60%;
}

.services_listing li:nth-child(5) {}

.services_listing li:nth-child(5) a {
    left: 80%;
}

.services_listing li:first-child:hover {
    width: 100%;
}

.services_listing li:nth-child(1) .services_listing li:nth-child(2) {
    width: 0;
}

.services_listing li:first-child:hover + li + li + li + li,.services_listing li:first-child:hover + li + li + li,.services_listing li:first-child:hover + li + li  ,.services_listing li:first-child:hover + li   {
    width: 0;
}
.services_listing li:nth-child(2):hover + li + li + li + li,
.services_listing li:nth-child(2):hover + li + li + li,
.services_listing li:nth-child(2):hover + li + li,
.services_listing li:nth-child(2):hover + li   {
    width: 0;
}
.services_listing li:nth-child(3):hover + li + li + li + li,
.services_listing li:nth-child(3):hover + li + li + li,
.services_listing li:nth-child(3):hover + li + li  ,
.services_listing li:nth-child(3):hover + li   {
    width: 0;
}
.services_listing li:nth-child(4):hover + li + li + li + li,
.services_listing li:nth-child(4):hover + li + li + li,
.services_listing li:nth-child(4):hover + li + li  ,
.services_listing li:nth-child(4):hover + li   {
    width: 0;
}
.services_listing li:nth-child(5):hover + li + li + li + li,
.services_listing li:nth-child(5):hover + li + li + li,
.services_listing li:nth-child(5):hover + li + li  ,
.services_listing li:nth-child(5):hover + li   {
    width: 0;
}

.services_listing li:nth-child(2):hover,
.services_listing li:nth-child(3):hover,
.services_listing li:nth-child(4):hover,
.services_listing li:nth-child(5):hover {
    width: 100%;
}.services_listing li:nth-child(2):hover ~ li {width:0px;}

 

.services_listing:hover > li {
    width: 0%;
}
 
 .image_gallery li .im img:hover {
    transform: scale(1.1);
}

.image_full img:hover {
    transform: scale(1.1);
    transition: .5s ease;
}
.main_content p.text {
    font-size: 14px;
    font-weight: 300;
    opacity: 0;
    transition: .7s ease;
}

.services_listing li:hover p.text {
    opacity: 1;
    transition: .7s ease;
}

.icon span {
    opacity: 0;
    width: 0;
}

.services_listing li:hover .icon span {
    width: auto;
    opacity: 1;
    margin-right: 55px;
    transition: .7s ease;
}
.services_listing li:hover .icon i {
    color: #000;
}

.services_listing li:hover .icon {
    padding: 11px 20px;
    border: 1px solid #ffffff;
    width: auto;
    margin: 0px auto;
    border-radius: 0;
    font-weight: 500;
    margin-top: 45px;
    text-decoration: none;
    /* transition: .7s ease; */
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
}
.image_box video {
    width: 100%;
}

.image_box_wrap img {
    position: relative;
    z-index: 1;
}
.image_box {
    width: 100%;
    /* position: absolute; */
}
.image_box_wrap {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

@keyframes new-pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #88b1f185;
        box-shadow: 0 0 0 0 #88b1f185;
    }
    70% {
        -moz-box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 20px rgba(204, 169, 44, 0);
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

section.web_sec.app_sec.pd_top.serv .desc:before {content: '';width: 50%;height: 100%;background: #b6d2fe;position: absolute;right: 0;top: 0;}

section.web_sec.app_sec.pd_top.serv {
    position: relative;
}


/* table of content */
.toc {
    position: sticky;
    position: -webkit-sticky;
    top: 110px;
    left: 0;
    height: 340px;
    width: 100%;
    overflow-y: auto;
    /* border: 1px solid #dadada; */
    /* padding: 15px; */
}
.toc::-webkit-scrollbar {
  width: 2px;
}
.toc::-webkit-scrollbar-thumb {
  background: #a5a5a5; 
}
.single-post .main_section .toc ul li:before {
    display:none;
}
.toc_hd {
    width: 100%;
    background-color: #eaeaea;
    padding: 15px 15px;
}
.toc_hd h3 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #71a2ee;
    margin-bottom: 0px;
}
.toc_list, .toc_sub_list {
    margin: 0 !important;
}
.toc_list a {
    border-bottom: 1px solid #eaeaea;
    display: block;
    padding: 12px 0 12px 15px;
    font-size: 14px;
    transition: all 0.25s ease-in-out;
}
.toc_list a:hover, .toc_list a.active {
    background-color: #eaeaea;
    color: #71a2ee !important;
    transition: all 0.25s ease-in-out;
}
.toc_list li {
    padding: 0 !important;
    margin: 0px !important;
}

.toc_list p {margin: 0px !important;}

.search_result {
    font-size: 30px;
    font-weight: 600;
}
.search-wrap .search {
    display: flex;
    width: 70%;
    height: 50px;
    border: 1px solid #a0a0a0;
    border-radius: 7px;
    overflow: hidden;
    background-color: #fff;
    margin-top: 15px;
}
.search-wrap .search .sp_search_input {
    width: 92%;
}

.sp_search_input input {
    width: 100%;
    height: 100%;
}
.search.educon-top-search input {
    background-color: transparent;
    border: none;
    width: 100%;
    height: 100%;
    display: block;
    font-size: 15px;
}
.search_btn_wrap {
    width: 8%;
    position:relative;
    border-left: 1px solid #a0a0a0;
}
.search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-block;
    top: 0;
    left: 0;
}
.search-icon i {
    position: absolute;
    font-size: 17px;
    color: #a0a0a0;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    display: block;
} 
.search_btn {
    position: relative; z-index: 2;}