/* ==========
===> Imported Fonts 
==========  */
@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&amp;family=Source+Sans+Pro:wght@200;300;400;600;700;900&amp;display=swap);
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap');


/* ==========
===>  Global/Core CSS
========== */

body {
    font-family: 'Poppins', sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1f2471;
    font-weight: 800 !important;
}

.h2,
h2 {
    font-size: 40px;
}

p {
    line-height: 1.6;
    color: #505489;
    font-size: 15px;
}

a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}


/* =============================
===================> index page
=============================================== */
.logo-header {
    display: table;
    float: left;
    vertical-align: middle;
    padding: 0;
    color: #efbb20;
    margin: 0;
    width: 150px;
    height: 85px;
    position: relative;
    z-index: 9;
}

.logo-header a {
    display: table-cell;
    vertical-align: middle;
}

.logo-header img {
    height: auto;
    width: 100%;
}

.logo-header span {
    font-size: 20px;
    letter-spacing: 20px;
}

.site-header {
    position: relative;
    z-index: 9999;
}

.site-header .main-bar {
    background: transparent;
    width: 100%;
    position: relative;
    transition: all .5s;
}

.site-header .container {
    position: relative;
}

.site-header .extra-nav {
    float: right;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    margin-left: 20px;
    height: 85px;
}

@media only screen and (max-width:575px) {
    .site-header .extra-nav .btn {
        padding-left: 15px;
        padding-right: 15px;
    }
       }

.site-header .extra-nav ul li {
    display: inline-block
}

.site-header .extra-nav ul li .icon {
    padding: 0;
    background: transparent;
    min-width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-radius: 4px
}

@media only screen and (max-width:575px) {
    .site-header .extra-nav {
        display: none;
    }
}

.navbar-toggler {
    border: 0 solid #efbb20;
    font-size: 16px;
    line-height: 24px;
    margin: 34px 0 32px 15px;
    padding: 0;
    float: right;
    outline: none !important
}

.mo-left .navbar-toggler[aria-expanded=true] {
    box-shadow: 0 0 0 1500px rgb(0 0 0 / 60%);
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    transition: all 0s;
}

.mo-left .navbar-toggler[aria-expanded=false] {
    transition: all 0s;
}

@media only screen and (max-width:575px) {
    .navbar-toggler {
        margin: 28px 0 28px 15px
    }
}

.navicon {
    width: 20px;
    height: 18px;
    position: relative;
    transition: .5s ease-in-out;
    cursor: pointer
}

.navicon,
.navicon span {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
}

.navicon span {
    background: #262f5a;
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out
}
.header-transparent .navicon span {
    background: #fff;  
}

.navicon[aria-expanded=false] span:first-child {
    top: 0;
}

.navicon[aria-expanded=false] span:nth-child(2) {
    top: 7px;
}

.navicon[aria-expanded=false] span:nth-child(3) {
    top: 14px;
}

.navicon[aria-expanded=true] span:first-child {
    top: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    background: #fff !important;
}

.navicon[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
    left: -60px;
    background: #fff !important;
}

.navicon[aria-expanded=true] span:nth-child(3) {
    top: 7px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background: #fff !important;
}

.header-nav {
    padding: 0
}

@media only screen and (max-width:991px) {
    .header-nav {
        overflow-y: scroll;
        position: fixed;
        width: 60px;
        left: -280px;
        height: 100vh !important;
        top: 0;
        background-color: #fff;
        margin: 0;
        z-index: 99
    }

    .header-nav.show {
        left: -1px;
        margin: 0;
        width: 280px
    }
}

.header-nav .logo-header {
    display: none;
}

@media only screen and (max-width:991px) {
    .header-nav .logo-header {
        padding: 30px 20px;
        float: none;
        height: auto;
        width: 240px;
    }
}

.header-nav .nav {
    float: right;
    padding: 0
}

.header-nav .nav>li {
    margin: 0;
    font-weight: 400;
    position: relative
}

@media only screen and (max-width:991px) {
    .header-nav .nav>li {
        border-bottom: 1px solid #eee;
        width: 100%
    }
}

.header-nav .nav>li>a {
    color: #262f5a;
    font-size: 15px;
    padding: 35px 15px;
    cursor: pointer;
    font-weight: 600;
    display: inline-block;
    position: relative;
    border-width: 0 0 0 1px;
    text-transform: capitalize;
    line-height: 1
}

@media only screen and (max-width:1199px) {
    .header-nav .nav>li>a {
        padding: 35px 12px
    }
}

.header-nav .nav>li>a span {
    display: inline-block
}

.header-nav .nav>li>a i {
    font-size: 9px;
    font-weight: bold !important;
    margin-top: -3px;
    vertical-align: middle
}

@media only screen and (max-width:991px) {
    .header-nav .nav>li>a i {
        background-color: #896eff;
        color: #fff;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        float: right;
        font-size: 20px;
        margin: 0
    }

    .header-nav .nav>li>a i:before {
        content: "\f105"
    }

    .header-nav .nav>li>a {
        padding: 8px 0;
        display: block;
        line-height: 30px
    }
}

@media only screen and (min-width:991px) {
    .header-nav .nav>li:hover>a span {
        -webkit-animation: upToDown .3s forwards;
        animation: upToDown .3s forwards
    }
}

.header-nav .nav>li .sub-menu {
    background-color: #fff;
    display: block;
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 5px 0;
    position: absolute;
    visibility: hidden;
    width: 220px;
    z-index: 10;
    margin-top: 20px;
    box-shadow: 0 1px 40px 0 rgba(0, 0, 0, .1);
    transition: all .8s
}

@media only screen and (max-width:991px) {

    .header-nav .nav>li .sub-menu {
        display: none;
        position: static;
        visibility: visible;
        width: auto;
        background: transparent;
        box-shadow: none;
        margin: 0;
        border-top: 1px solid #eee;
        padding: 10px 0;
        transition: none;
    }

    .header-nav .nav>li .sub-menu>li>a i {
        color: #fff !important;
        height: 30px;
        line-height: 30px;
        right: 0;
        text-align: center;
        width: 30px;
        z-index: 3;
        font-size: 20px !important;
        margin: 0 !important;
        background: #aaa;
    }
}

.header-nav .nav>li .sub-menu li {
    position: relative;
}

.header-nav .nav>li .sub-menu li a {
    color: #262f5a;
    display: block;
    font-size: 15px;
    padding: 10px 25px;
    text-transform: capitalize;
    position: relative;
    transition: all .15s linear;
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
    font-weight: 500;
}

.header-nav .nav>li .sub-menu li a:after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    background: #896eff;
    left: 20px;
    top: 20px;
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

@media only screen and (max-width:991px) {

    .header-nav .nav>li .sub-menu li a {
        padding: 2px 0 1px 15px;
        display: block;
        line-height: 30px;
        position: relative;
    }

    .header-nav .nav>li .sub-menu li a:after {
        content: "\f105";
        font-family: FontAwesome;
        width: auto;
        height: auto;
        background: 0 0 !important;
        top: 1px;
        color: #262f5a;
        font-size: 16px;
        position: absolute;
        left: 0;
        font-weight: 700
    }
}

.header-nav .nav>li .sub-menu li:hover>a {
    background-color: #f2f2f2;
    padding: 10px 20px 10px 35px;
    color: #896eff
}

@media only screen and (max-width:991px) {

    .header-nav .nav>li .sub-menu li:hover>a {
        padding: 2px 0 1px 15px;
        background: transparent
    }
}

.header-nav .nav>li .sub-menu li:hover>a:after {
    width: 10px
}

.header-nav .nav>li .sub-menu li>.sub-menu {
    left: 220px;
    transition: all .5s
}

@media only screen and (max-width:991px) {

    .header-nav .nav>li .sub-menu li>.sub-menu {
        display: none
    }

    .header-nav .nav>li .sub-menu .sub-menu {
        border-top: 0;
        padding-left: 20px
    }

    .header-nav .nav>li .sub-menu .sub-menu li a:after {
        width: 5px;
        content: "";
        height: 5px;
        background: #262f5a !important;
        border-radius: 4px;
        top: 13px
    }
}

.header-nav .nav>li .sub-menu li .fa {
    color: inherit;
    display: block;
    float: right;
    font-size: 16px;
    opacity: 1;
    margin-top: 4px
}

.header-nav .nav>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transition: all .5s
}

@media only screen and (max-width:991px) {
    .header-nav .nav>li:hover>.sub-menu {
        transition: none
    }
}

.header-nav .nav>li:hover>.sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    top: -1px
}

.header-nav .nav>li.show .sub-menu {
    display: block;
    opacity: 1;
    transition: none
}


.header-nav .nav>li .sub-menu.show {
    display: block;
    opacity: 1;
    transition: none
}

@media only screen and (max-width:1400px) {

    .header-nav .nav>li:last-child .sub-menu .sub-menu,
    .header-nav .nav>li:nth-last-child(2) .sub-menu .sub-menu,
    .header-nav .nav>li:nth-last-child(3) .sub-menu .sub-menu {
        left: -220px
    }
}

@media only screen and (max-width:1199px) {
    .header-nav .nav>li:last-child .sub-menu {
        left: auto;
        right: 0
    }
}

@media only screen and (max-width:991px) {
    .header-nav .nav {
        float: none;
        padding: 0 20px
    }
}

.header-nav .dlab-social-icon {
    display: none;
    text-align: center;
}

.header-nav .dlab-social-icon a {
    font: normal normal normal 14px/1 FontAwesome;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #896eff !important;
    border: 1px solid #eee;
    line-height: 38px;
    text-align: center;
    border-radius: 40px;
}
.header-nav .dlab-social-icon a:hover {
    color: #4B22FF !important;
}

@media only screen and (max-width:991px) {
    .header-nav .dlab-social-icon {
        display: block;
        padding-top: 30px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width:991px) {
    .mo-left .header-nav {
        overflow-y: scroll;
        position: fixed;
        width: 60px;
        left: -280px;
        height: 100vh !important;
        top: 0;
        background-color: #fff;
        margin: 0;
        z-index: 99;
		transition: all 0s;
    }

    .mo-left .header-nav.show {
        left: -1px;
        margin: 0;
        width: 280px;
        height: 100% !important;
    }

    .mo-left .header-nav .logo-header {
        display: block;
        float: none;
        height: auto !important;
        max-width: 100%;
        padding: 25px 20px;
        width: 100%;
    }

    .mo-left .header-nav .logo-header img {
        max-width: unset;
        width: 160px;
        height: auto;
        vertical-align: middle;
    }

}

.text-black .nav>li>a {
    color: #262f5a
}

.text-black .navbar-toggler span {
    background: #262f5a
}

@-webkit-keyframes upToDown {
    49% {
        -webkit-transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes upToDown {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    51% {
        opacity: 1
    }
}

.btn-link {
    display: inline-flex!important;
    align-items: center!important;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    border: 0;
}

.btn-link i {
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 15px 20px rgb(31 66 135 / 10%);
    font-size: 13px;
    font-weight: 500;
    background-color: #896eff;
    color: #fff;
    margin-right: 10px;
    display: inline-block;
    overflow: hidden;
}

.btn-link:hover i:before {
    display: inline-block;
    -webkit-animation: toLeftFromRight .5s forwards;
    animation: toLeftFromRight .5s forwards
}

@-webkit-keyframes toLeftFromRight {
    49% {
        -webkit-transform: translateX(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%)
    }

    51% {
        opacity: 1
    }
}

@keyframes toLeftFromRight {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    51% {
        opacity: 1
    }
}

.header-transparent .nav>li>a {
    color: #000;
}

.btn-corner {
    padding: 12px 35px;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.btn-corner:active,
.btn-corner:focus,
.btn-corner:hover {
    border-top-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    
}
.btn-corner:focus { 
    outline: none !important;
    border-color: #896eff!important;
    box-shadow: 0 0 0 #896eff!important;
 }

.gradient {
    background-image: linear-gradient(90deg, #896eff 0, #5f3bff 51%, #896eff);
}

.gradient {
    background-size: 200%;
    border-color: transparent !important;
    transition: all .5s
}

.btn-corner i {
    margin-right: 10px;
}

/* sticky navbar */
  .sticky-header{
    position:fixed;
    top:0;
    background:transparent !important;
    width:100%;
    height:50px;
    
  }


/* ==========
===> Home Section
========== */
.banner__one {
    background-image: url(../../images/pic2.png);
    background-position: 0 100%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 750px;
    position: relative
}

.banner__one .banner__inner {
    padding-top: 158px
}

.banner__one .banner__inner .img1 {
    position: absolute;
    left: 100px;
    bottom: 50px
}

.banner__one .banner__inner .img2 {
    position: absolute;
    right: 0;
    top: 120px
}

.banner__one .row.align-items-center {
    position: absolute;
    margin-right: 0;
}

.banner__one .banner__content h1 {
    font-size: 54px;
    font-weight: 700;
    color: #1f2471;
    margin-bottom: 20px
}

.banner__one .banner__content h1 span {
    color: #896eff !important;
}

.banner__one .banner__content p {
    font-size: 15px;
    margin-bottom: 30px;
}

.banner__one .banner__content .sub-title {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 18px;
    color: #896eff !important;
    background: transparent;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    padding: 0;
}

.btn-link span {
    font-size: 15px;
    color: #896eff !important;
    transition: .2s;
}

.btn-link span:hover {
    color: #4B22FF !important;
    
}

/* animation */
.move-box {
    position: relative;
}

.move-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 550px;
    height: 100%
}

.move-box img:first-child {
    position: unset
}

.move-1 {
    -webkit-animation: move1 5s infinite;
    animation: move1 5s infinite
}

.move-2 {
    -webkit-animation: move2 5s infinite;
    animation: move2 5s infinite
}


@-webkit-keyframes move1 {
    0% {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }

    50% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }

    to {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }
}

@keyframes move1 {
    0% {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }

    50% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }

    to {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }
}

@-webkit-keyframes move2 {
    0% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }

    50% {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }

    to {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }
}

@keyframes move2 {
    0% {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }

    50% {
        -webkit-transform: rotate(-1deg) translate(-2px, -2px);
        transform: rotate(-1deg) translate(-2px, -2px)
    }

    to {
        -webkit-transform: rotate(1deg) translate(2px, 2px);
        transform: rotate(1deg) translate(2px, 2px)
    }
}

/* ==========
===> logo slider Section
========== */
.clients__logo {
    padding-top: 100px;
}

.clients__logo .clients-logo {
    padding: 20px 30px;
    height: 100px;
    display: flex;
    align-items: center;
    border-radius: 10px;
    transition: all .5s;
}

.clients__logo .clients-logo img {
    width: auto !important;
    margin: auto;
}

.clients__logo .clients-logo .logo-hover {
    display: none !important;
}

.clients__logo .clients-logo:hover {
    background: #896eff;
}

.clients__logo .clients-logo:hover .logo-main {
    display: none;
}

.clients__logo .clients-logo:hover .logo-hover {
    display: block !important;
}

.clients__logo .owl-carousel .owl-nav button.owl-next,
.clients__logo .owl-carousel .owl-nav button.owl-prev,
.clients__logo .owl-carousel button.owl-dot {
    display: none;
}


/* ==========
===> provide service Section
========== */
.service {
    padding-top: 100px;
}

.service_1 {
    padding-bottom: 70px;
}

.service {
    background-image: url(../../images/bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}


.sub-title {
    background-color: #896eff1a;
    color: #896eff !important;
    padding: 10px 30px;
    display: inline-block;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

.service .title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700 !important;
    margin-bottom: 45px;
}


.service_1 .service__item {
    margin-top: 0;
}

.service__item .icon-box:nth-child(2) {
    margin-left: 100px;
}


.service__item .icon-box:after,
.service__item .icon-box:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all .5s;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    z-index: 0;
}


.service .icon-box {
    padding: 30px;
    transition: all .5s;
    border-radius: 10px;
    background-color: #fff
}

.service .icon-box .dlab-title {
    font-weight: 700;
    color: #1f2471;
    margin-bottom: 15px
}

.service .icon-box>[class*=icon-bx-] {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 24px 0 45px;
    position: relative;
    z-index: 1
}

.service .icon-box>[class*=icon-bx-]:after {
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    height: 133px;
    width: 82px;
    background-position: 100%;
    z-index: -1;
    transition: all .5s;
}

.service .icon-box>[class*=icon-bx-].bg-yellow:after {
    background-image: url(../../images/yellow.8650ef8402e327ef6d1ce799db549726.png);
}

.service .icon-box>[class*=icon-bx-].bg-red:after {
    background-image: url(../../images/red.65c4060121b7c7c5046d9d8cb2e81a8b.png);
}

.service .icon-box>[class*=icon-bx-].bg-green:after {
    background-image: url(../../images/green.dc1aac2392f4e93c456192a90a2ff7c9.png);
}

.service .icon-box>[class*=icon-bx-].bg-skyblue:after {
    background-image: url(../../images/skyblue.e3953cbbb3f5a627a425463d81844781.png)
}

.service .icon-box>[class*=icon-bx-].bg-orange:after {
    background-image: url(../../images/orange.5ad5039b03d4efcc5c1aa71093d638ec.png)
}

.service .icon-box>[class*=icon-bx-].bg-maroon:after {
    background-image: url(../../images/maroon.0008ea076714bea3d3295d5537964c5f.png)
}

.service .icon-box:after,
.service .icon-box:before {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all .5s;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    z-index: 0;
}

.service .icon-box:before {
    background-image: url(../../images/pattern5.938308d28315d26e13706ff6c39af6ab.png);
    height: 100%;
    top: -30px;
    left: 0px;
    width: 100%;
}

.service .icon-box:after {
    background-image: url(../../images/pattern6.78d4aed68e55621bbc5b4e82453a07cf.png);
    height: 290px;
    bottom: -19px;
    right: 3px;
    width: 250px;
}

.service .icon-box.active,
.service .icon-box:hover {
    box-shadow: 0 0 10px 4px rgba(31, 66, 135, .1);
}

.service .icon-box.active>[class*=icon-bx-]:after,
.service .icon-box:hover>[class*=icon-bx-]:after {
    right: 30px;
}

.service .icon-box.active:after,
.service .icon-box.active:before,
.service .icon-box:hover:after,
.service .icon-box:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.service .icon-bx-md {
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.service .icon-bx-md.radius {
    border-radius: 100%;
}

.service .icon-bx-md i {
    font-size: 45px;
    vertical-align: middle;
}

.service .bg-yellow {
    background-color: #ffa808;
}

.service .shadow-yellow {
    box-shadow: 0 2px 15px rgba(255, 168, 8, .5);
}

.service .bg-red {
    background-color: #ff586e;
}

.service .shadow-red {
    box-shadow: 0 2px 15px rgba(255, 88, 110, .5);
}

.service .bg-green {
    background-color: #029e76;
}

.service .shadow-green {
    box-shadow: 0 2px 15px rgba(2, 158, 118, .5);
}

.service .bg-skyblue {
    background-color: #00aeff;
}

.service .shadow-skyblue {
    box-shadow: 0 2px 15px rgba(0, 174, 255, .5);
}

.service .bg-orange {
    background-color: #ff8853;
}

.service .shadow-orange {
    box-shadow: 0 2px 15px rgba(255, 136, 83, .5);
}

.service .bg-maroon {
    background-color: #9e0168;
}

.service .shadow-maroon {
    box-shadow: 0 2px 15px rgba(158, 1, 104, .5);
}

.service .icon-box .icon-cell {
    overflow: hidden;
}

.service .icon-box .icon-cell {
    overflow: hidden;
}

.service .icon-bx-md i {
    font-size: 40px !important;
    vertical-align: middle;
    color: #fff !important;
}

[class*=icon-bx-][class*=border-] .icon-cell {
    display: table-cell;
    vertical-align: middle;
}


.service .icon-box:hover .icon-cell i {
    display: inline-block;
    -webkit-animation: toTopFromBottom .5s forwards;
    animation: toTopFromBottom .5s forwards;
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%)
    }

    51% {
        opacity: 1;
    }
}

@keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }

    51% {
        opacity: 1;
    }
}

.service .col-lg-4:nth-child(4),
.service .col-lg-4:nth-child(5),
.service .col-lg-4:nth-child(6) {
    margin-top: 20px;
}


/* ==========
===> about Section
========== */
.about {
    padding-top: 100px;
    padding-bottom: 70px;
}

.about__item .section-head {
    margin-top: 20px;
}


.about__item .section-head h2.title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700 !important;
    color: #1f2471;
}

.about__item h4 {
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 700 !important;
    margin-bottom: 30px;
}

.about__item .btn {
    padding: 0 !important;
}

.m-b40 {
    margin-bottom: 40px;
}

.m-b30 {
    margin-bottom: 30px;
}



/* ==========
===> counter Section
========== */
.counters {
    background-image: url(../../images/bg3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #896eff !important;
    padding-top: 100px;
    padding-bottom: 70px;
}

.counters__item .col-lg-3:nth-child(2),
.counters__item .col-lg-3:nth-child(4) {
    margin-bottom: 30px;
    margin-top: 30px;
}

.counters .icon_bg_green {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    align-self: center;
    background-color: #029e76;
    box-shadow: 0 2px 15px rgb(2 158 118 / 50%);
}

.counters .icon_bg_orange {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    align-self: center;
    background-color: #ffa808;
    box-shadow: 0 2px 15px rgb(255 168 8 / 50%);
}

.counters .icon_bg_blue {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    align-self: center;
    background-color: #5543d1;
    box-shadow: 0 2px 15px rgb(85 67 209 / 50%);
}

.counters .icon_bg_red {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    align-self: center;
    background-color: #ff586e;
    box-shadow: 0 2px 15px rgb(255 88 110 / 50%);
}

.counters i {
    font-size: 35px;
    color: #fff;
}

.counters h5 {
    font-size: 20px !important;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
}

.counters .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    padding: 30px;
    transition: all .5s;
}

.counters .card-title {
    margin-bottom: 0;
    margin-top: 20px;
}

.counters .card-body {
    padding: 0 !important;
}

.counters h2 {
    font-size: 2.375rem !important;
    font-weight: 700 !important;
    color: #896eff !important;
    margin-top: 5px;
}

.counters__item .card:hover {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px)
}


/* ==========
===> fetures Section
========== */
.fetures {
    padding-top: 100px;
}

.fetures .section-head {
    margin-bottom: 40px;
}

.fetures__content__item .media {
    margin-bottom: 25px;
}

.fetures .media.left {
    padding-left: 6rem;
}

.fetures .section-content .red {
    background-image: url(../../images/red.3b9b7a110abc0c309202a67ad5c60078.png);
    height: 165px;
    width: 165px;
    background-repeat: no-repeat;
    position: relative;
}

.fetures .section-content .orange {
    background-image: url(../../images/yellow.8db501e1a5b56d38cbac3a94cc99b0bf.png);
    height: 165px;
    width: 165px;
    background-repeat: no-repeat;
    position: relative;

}

.fetures .section-content .green {
    background-image: url(../../images/green.5fa9d0cfb5ff0fed0b8a2789f2b9f938.png);
    height: 165px;
    width: 165px;
    background-repeat: no-repeat;
    position: relative;
}

.fetures .section-content .icon-bx-wraper {
    display: flex;
    align-items: center;
}

.fetures .section-content .icon-bx-wraper .icon-box {
    position: relative;
    margin: 20px;
    min-width: 100px;
    transition: all .5s;
    z-index: 1;
}

.fetures .section-content .icon-bx-wraper .icon-box .icon-cell {
    font-size: 50px;
    color: #fff;
    z-index: 2;
    position: relative;
    left: calc(50% - 27px);
}

.fetures .section-content .icon-bx-wraper .icon-box:before {
    content: "";
    position: absolute;
    width: 165px;
    height: 165px;
    left: calc(50% - 82px);
    top: calc(50% - 82px);
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat;
}

.fetures .section-content .icon-bx-wraper .icon-box.text-red:before {
    background-image: url(../../images/red.3b9b7a110abc0c309202a67ad5c60078.png)
}

.fetures .section-content .icon-bx-wraper .icon-box.text-yellow:before {
    background-image: url(../../images/yellow.8db501e1a5b56d38cbac3a94cc99b0bf.png)
}

.fetures .section-content .icon-bx-wraper .icon-box.text-green:before {
    background-image: url(../../images/green.5fa9d0cfb5ff0fed0b8a2789f2b9f938.png)
}

.fetures .section-content .icon-bx-wraper .icon-box.text-skyblue:before {
    background-image: url(../../images/skyblue.2a439595a28ee6115dd65a8b31910f5d.png)
}

.fetures .section-content .icon-bx-wraper .icon-box.text-maroon:before {
    background-image: url(../../images/maroon.ebbd7ed466404c9dc7e9ecd08f0d3f42.png)
}

.fetures .section-content .icon-bx-wraper .icon-box.text-orange:before {
    background-image: url(../../images//orange.50f3b6ce0f5750769982c41444235628.png)
}

.fetures .section-content .icon-bx-wraper .icon-content {
    padding-left: 20px
}

.fetures .section-content .icon-bx-wraper:hover .icon-box {
    background-color: transparent !important
}

.fetures .media-body h4 {
    margin-top: 30px !important;
}

.fetures i.far.fa-smile {
    position: absolute !important;
    top: 36% !important;
    left: 40% !important;
    font-size: 40px !important;
    color: #fff !important;
}

.item_image img {
    width: 100% !important;
}

/* ==========
===> project Section
========== */
.home__project {
    padding-top: 100px;
    padding-bottom: 70px;
}

.home__project__item .tab-content {
    margin-top: 28px;
}

.home__project__item ul {
    background-color: rgba(137, 110, 255, .1);
    border-radius: 50px;
    padding: 10px;
    margin-top: 28px;
}

.home__project__item .nav-link {
    font-size: 18px;
    font-weight: 600 !important;
    color: #1f2471;
    padding: 10px 30px;
    border-radius: 30px;
    text-transform: capitalize;
}

.home__project__item .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #896eff;
    box-shadow: 0 2px 15px rgb(137 110 255 / 50%);
    color: #fff;
}

.home__project__item .tab_item img {
    height: 370px;
    width: 100%;
}

.home__project__item .tab_item img {
    margin-bottom: 30px;
}

/* ==========
===> newsletter Section
========== */
.newsletter {
    background-image: url(../../images/bg13.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #896eff !important;
    padding-top: 70px;
    padding-bottom: 40px;
}

.newsletter .item_img {
    margin-bottom: 30px;
}

.newsletter__item .item_img img {
    width: 100%;
    height: 370px;
}

.newsletter__item .section-head {
    margin-bottom: 40px;
}

.newsletter__item .sub-title {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600 !important;
    color: #fff !important;
    background-color: rgba(250, 248, 242, .1);
}

.newsletter__item .title,
.newsletter__item p {
    color: #fff !important;
}

.newsletter__item .subscribe {
    max-width: 500px;
}

.newsletter__item .form-control {
    height: 56px !important;
    border-radius: 50px !important;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #888 !important;
    transition: all .3s ease-in-out;
    background: #fff;
    border: 1px solid transparent;
    padding: 10px 20px !important;
    position: relative;
}

.newsletter_form_button {
    position: absolute;
    right: 4px;
    top: 4px;
    z-index: 9;
    padding: 12px 35px;
    border-radius: 30px !important;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #896eff;
    border-color: #896eff;
}

.newsletter_form_button:hover {
    background-color: #6A48FF;
    color: #fff;
}

.newsletter_form_button:focus { 
    outline: none !important;
    border-color: #6A48FF;
    box-shadow: 0 0 0 #6A48FF;
 }

/* ==========
===> team Section
========== */
.team {
    padding-top: 100px;
    padding-bottom: 30px;
}

.team__title {
    margin-bottom: 40px;
}

.team__item .item {
    height: 470px;
}

.team .member_image img {
    width: 330px !important;
    height: 389px;
    box-shadow: 0 36px 48px rgb(31 66 135 / 10%);
    border-radius: 10px;
}

.member_info {
    box-shadow: 0 5px 10px rgb(31 66 135 / 10%);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -60px;
    z-index: 99;
    background-color: #fff;
    margin-left: 30px;
    position: relative;
}

.member_info .member_name {
    float: left;
}

.member_name a {
    color: #1f2471 !important;
}

.member_name span {
    text-transform: uppercase;
    font-size: 13px;
    color: #505489;
}

.team__item ul {
    margin-bottom: 0;
}

.member_info .social_icon {
    float: right;
}

.member_info .social_icon i {
    background-color: rgba(137, 110, 255, .1);
    color: #896eff;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    transition: all .5s;
    margin: 2px;
}

.member_info .social_icon i:hover {
    color: #fff;
    background-image: linear-gradient(to right, #866AFF, #6441FF);
}

.team__item .owl-carousel .owl-nav button.owl-next,
.team__item .owl-carousel .owl-nav button.owl-prev {
    display: none;
}

.team__item .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    content: "";
    opacity: 1;
    background: #896eff;
    border-radius: 30px;
    margin: 4px;
}

.team__item .owl-theme .owl-dots .owl-dot.active span,
.team__item .owl-theme .owl-dots .owl-dot::after {
    width: 30px;
    height: 10px;
    background: #896eff;
    border-radius: 30px;
}


/* ==========
===> pricing Section
========== */
.home__pricing {
    background-image: url(../../images/bg20.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 70px;
}

.home__pricing__title {
    margin-bottom: 30px;
}

.home__pricing__content__item .card {
    padding: 35px 57px;
    box-shadow: 0 0 10px rgb(31 66 135 / 30%);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin-top: 02816;
    margin-bottom: 30px;
    transition: .5s;
}

.home__pricing__content__item h3 {
    font-size: 2rem;
}

.home__pricing__content__item .pricingtable-bx {
    color: #896eff;
    font-weight: 900 !important;
    margin: 0;
    transition: all .5s;
}

.home__pricing__content__item small {
    font-size: 73%;
}

.home__pricing__content__item ul {
    padding: 15px 0;
}

.home__pricing__content__item ul li {
    padding: 8px 0;
    font-weight: 500;
}

.home__pricing__content__item .card:hover  li {
    color: #fff;
    transition: 0s !important;
}

.pricing_button {
    padding: 12px 35px;
    display: inline-block;
    border-radius: 10px !important;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #896eff;
    border-color: #896eff;
    transition: all .5s;
}

.pricing_button:focus { 
    outline: none !important;
    border-color: #6A48FF;
    box-shadow: 0 0 0 #6A48FF;
 }

.home__pricing__content__item .card:hover {
    color: #fff;
    background-image: linear-gradient(90deg, #896eff 0, #5f3bff 51%, #896eff);
    background-size: 200%;
}

.home__pricing__content__item .card:hover h3,
.home__pricing__content__item .card:hover h2,
.home__pricing__content__item .card:hover p {
    color: #fff;
}


.pricing_button:hover {
    color: #fff;
    background-color: #6A48FF;
    border: 1px solid #613EFF;
}

/* ==========
===> testimonials Section
========== */
.testimonials {
    background-image: url(../../images/bg3.png);
    background-color: #896eff !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 95px;
}

.testimonials__content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.testimonials_slider .card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    margin-bottom: 20px;
}

.testimonial_text {
    border-bottom: 1px solid #e1e1f0;
    margin-bottom: 20px;
}

.testimonial_pic {
    border-radius: 50%;
    height: 70px;
    width: 70px;
    border: 3px solid #896eff;
    overflow: hidden;
    margin-right: 15px;
}
.testimonial_pic img {
    max-width: 100%;
    height: 100%;
}

.testimonial_name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2471;
    line-height: 26px;
    margin-bottom: 5px;
}

.testimonial_position {
    font-size: 15px;
}

.testimonial_detail .star_rating i {
    color: #fea500;
    margin-left: 5px;
}

.testimonials_slider .owl-stage-outer {
    margin-bottom: 20px;
}

.slick-slide {
    margin: 0px 15px;
}


.slick-slide {
    transition: all ease-in-out .3s;

}

.testimonials_slider .slick-prev:before,
.testimonials_slider .slick-next:before {
    background-color: #fff;
    color: #896eff !important;
    border-radius: 50px;
    height: 45px;
    line-height: 45px;
    margin: 0 10px !important;
    padding: 10px;
    text-align: center;
    width: 45px;
    opacity: 1;
    transition: all .5s;
}

.testimonials_slider .slick-prev,
.testimonials_slider .slick-next {
    font-size: 30px;
}
.testimonials_slider .slick-prev {
    top: 100%;
    left: 44%;
    margin-top: 10px;
}
.testimonials_slider .slick-next {
    top: 100%;
    right: 48%;
    margin-top: 10px;
}

.testimonials_slider .slick-prev:hover::before,
.testimonials_slider .slick-next:hover::before {
    background-color: #896EFF;
    color: #fff !important;
}
.testimonials_slider .slick-dots li button::before {
    display: none;
}

.testimonials__content__item .section-head .sub-title {
    padding: 10px 30px;
    display: inline-block;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600 !important;
    color: #fff !important;
    background-color: rgba(250, 248, 242, .1);
    margin-top: 20px;
}

.testimonials__content__item .section-head .title,
.testimonials__content__item .section-head p {
    color: #fff;
}


/* ==========
===> blog Section
========== */
.blog {
    background-image: url(../../images/bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    position: relative;
}

.blog__content__item .row {
    margin-right: 0;
    margin-left: 0;
}

.blog__content__item {
    position: relative;
    margin-top: 45px;
}

.blog__content__item .card {
    box-shadow: 0 0 10px rgb(31 66 135 / 30%);
    border-radius: 10px;
}

.blog__content__item .card-text {
    padding-bottom: 20px;
    border-bottom: 1px solid #e1e1f0;
}

.blog__content__item .card-footer {
    padding-top: 0;
    padding-bottom: 20px;
    background-color: #fff;
    border-top: 0;
}

.blog__content__item .post-date {
    float: left;
}

.blog__content__item .post-date i {
    font-size: 18px;
    color: #896eff;
}

.blog__content__item .post-date span,
.blog__content__item .right a span {
    color: #505489 !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    padding-left: 5px !important;
}

.blog__content__item .right {
    float: right;
}

.blog__content__item .post-comment,
.blog__content__item .post-share {
    font-size: 18px !important;
    color: #896eff !important;
}


.blog__content__item .tooltip {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
}

.blog__content__item .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #896EFF;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 7px 0;
    position: absolute;
    z-index: 1;
    top: -8px;
    right: 110%;
}

.blog__content__item .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #896EFF;
}

.blog__content__item .tooltip:hover .tooltiptext {
    visibility: visible;
}

.blog__content__item .owl-theme .owl-dots .owl-dot span {
    display: none;
}

.blog__content__item .owl-carousel .owl-nav button.owl-next,
.blog__content__item .owl-carousel .owl-nav button.owl-prev {
    border-radius: 3px;
    height: 40px;
    line-height: 40px;
    margin: 0 -70px !important;
    padding: 0;
    text-align: center;
    width: 40px;
    background-color: #896eff;
    color: #fff;
    transition: all .5s;
}

.blog__content__item .owl-carousel .owl-nav button.owl-next span,
.blog__content__item .owl-carousel .owl-nav button.owl-prev span {
    font-size: 30px;
}

.blog__content__item .owl-carousel .owl-nav button.owl-next:hover,
.blog__content__item .owl-carousel .owl-nav button.owl-prev:hover {
    background-color: #fff;
    color: #896eff;
}

.blog__content__item .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 45%;
    left: 5%;
}

.blog__content__item .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    right: 5%;
}


/* ==========
===> contact us Section
========== */
.contact__us {
    background-image: url(../../images/bg1.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 70px;
}

.contact__us__content__item {
    margin-bottom: 30px;
}

.contact_form {
    margin-top: 40px;
}

.form-control {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    height: 45px;
    border-radius: 1.5rem !important;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #888;
    transition: all .3s ease-in-out;
    background: #fff;
    border: 1px solid transparent;
    padding: 10px 20px 10px 65px;
}

.contact_form .input-group-prepend {
    position: absolute;
    left: 10px;
    top: 22.5px;
    z-index: 99;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: transparent;
    border-right: 1px solid #1f2471;
    margin-right: 10px;
}

.contact_form .input-group-prepend i {
    color: #1f2471;
}

.contact_form .input-group-text {
    background-color: transparent;
    border: 0;
}

.contact_form .input-group {
    margin-bottom: 20px;
}

.contact_form .form-control:focus {
    border-color: #896EFF;
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0) inset, 0px 0px 8px rgba(255, 255, 255, 0);
}

.contact_item_image img {
    width: 100%;
}

.input-group-text {
    padding: .19rem .75rem !important;
}

/* ==========
===> more with us Section
========== */
.more__with__us {
    background-image: url(../../images/bg5.jpg);
    background-size: cover;
    padding: 80px 0 30px;
}

.more__with__us .section-head {
    margin-bottom: 40px;
}

/* ========================
================= about us-1 page
          ====================*/


/* ==========
===> header Section
========== */
.page__banner {
    background-image: url(../../images/bnr1.jpg);
    height: 450px;
    background-size: cover;
    background-position: 50%;
    position: relative;
    overflow: hidden;
}

.page__banner .overlay {
    background: rgba(137, 110, 255, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page__banner__content {
    height: 450px;
    vertical-align: middle;
    display: table-cell;
    padding-top: 30px
}

.page__banner__content h1 {
    margin-bottom: 20px;
    font-size: 60px;
    line-height: 75px;
    font-weight: 1000 !important;
    color: #fff;
    text-transform: capitalize;
}

.page__banner__content ul li a,
.page__banner__content ul li {
    font-size: 18px;
    color: #fff;
}

.page__banner__content ul li i {
    font-size: 15px;
    padding: 0 7px;
}

.move-3 {
    -webkit-animation: move3 5s infinite;
    animation: move3 5s infinite
}

@-webkit-keyframes move3 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    20% {
        -webkit-transform: translate(5px);
        transform: translate(5px)
    }

    40% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px)
    }

    65% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }

    65% {
        -webkit-transform: translate(5px);
        transform: translate(5px)
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

ul.list-arrow li:before {
    content: "\f101";
    font-family: fontawesome;
    position: absolute;
    left: 0;
    top: 0%;
    font-size: 24px;
    color: #896eff;
}

ul.list-arrow li {
    position: relative;
    padding: 8px 5px 8px 35px;
    font-size: 15px;
    color: #505489;
}

/* ==========
===> watch us Section
========== */
.watch__us {
    padding-top: 100px;
    padding-bottom: 0;
}

.watch__us__item p {
    margin-bottom: 35px;
}

.watch__us__item .media i {
    color: #896eff !important;
    font-size: 40px;
}

.watch__us__item .media .icon {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    padding: 5px 20px 5px 20px;
    margin-bottom: 30px;
    transition: all .5s;
    border-radius: 3px;
}

.watch__us__item .media-body span {
    color: #505489;
    font-size: 15px;
}

.watch__us__item .media:hover .icon {
    background-image: linear-gradient(to right, #866AFF, #6441FF);
}

.watch__us__item .media:hover i {
    color: #fff !important;
}

.watch__us__item .video_box {
    position: relative;
    box-shadow: 0 0 10px 4px rgba(31, 66, 135, .2);
    border-radius: 10px;
    overflow: hidden
}

.watch__us__item .video_box .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.watch__us__item .video_box .popup-youtube {
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #896eff;
    border-radius: 10px;
    display: block;
    color: #fff;
    font-size: 42px;
    margin: 0 auto 10px;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 20%);
    transition: all .5s;
}

.watch__us__item .video_box .popup-youtube:hover {
    background-color: #fff;
    color: #896eff;
}

.modal-open .modal {
    z-index: 9999;
}

.watch__us__modal .modal-dialog {
    max-width: 940px;
}

.watch__us__modal .close {
    font-weight: 400;
    line-height: 1;
    color: #fffdfd;
    text-shadow: none;
    opacity: 1;
}

.watch__us__modal button span {
    font-size: 50px;
    position: absolute;
    right: -37px;
    top: -35px;
    opacity: 1 !important;
    background-color: rgb(0 0 0 / 60%);
    box-shadow: 0 0 0 1500px rgb(0 0 0 / 60%);
    transition: all 0s !important;
}
.watch__us__modal button span:hover {
    opacity: 1 !important;
    background-color: rgb(0 0 0 / 80%) !important;
    box-shadow: 0 0 0 1500px rgb(0 0 0 / 80%) !important;
}

.modal-body {
    padding: 0 !important;
    background-color: #000;
}

/* ========================
================= faq-1 page
          ====================*/

/* ==========
===> FAQ Section
========== */
.faq {
    background-image: url(../../images/bg1.png);
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-bottom: 70px;
}

.faq__content {
    width: 100%;
}

.faq__content__item {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    border-radius: 8px;
}

.faq__content .collapsible .h5 {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    font-family: 'Source Sans Pro', sans-serif;
}

.faq__content p {
    line-height: 1.6;
    color: #505489;
    font-size: 15px;
}

.faq__content .collapsible {
    color: #1f2471;
    background-color: #fff;
    cursor: pointer;
    padding: 7px 8px 7px 30px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 24px;
    border-radius: 8px;
}

.faq__content .faq__icon i {
    transition: .5s;
}

.faq__content .content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.faq__content .active {
    background-image: linear-gradient(to right, #866AFF, #6441FF);
    color: #fff;
    margin-bottom: 20px;
}

.faq__content .collapsible .icon {
    float: right;
    font-size: 25px !important;
    color: #fff;
    background-image: linear-gradient(to right, #866AFF, #6441FF);
    height: 55px;
    width: 55px;
    border-radius: 8px;
    line-height: 55px;
    text-align: center;
    transition: .2s;
}

button.collapsible.faq__icon {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.faq__content .active i {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .5s;
}

.faq__content .active .icon {
    color: #896eff;
    background-image: linear-gradient(to right, #fff, #fff);
    transition: .2s;

}


/* ========================
================= pricing table page
          ====================*/

/* ==========
===> pricing table Section
========== */

.pricing__table {
    padding-top: 100px;
    padding-bottom: 70px;
}

.pricing__table__title {
    margin-bottom: 50px;
}

.pricing__table__content__item .card {
    padding: 35px 57px;
    box-shadow: 0 0 10px rgb(31 66 135 / 30%);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 30px;
}

.pricing__table__content__item .pricingtable-bx {
    color: #896eff;
    font-weight: 900 !important;
    margin: 0;
    transition: all .5s;
}

.pricing__table__content__item .card h3 {
    font-size: 2rem;
}

.pricing__table__content__item ul {
    padding: 15px 0;
}

.pricing__table__content__item ul li {
    padding: 8px 0;
    font-weight: 500;
}

.pricing__table__content__item ul li:hover {
    transition: 0s;
}

.pricing__table__content__item .card:hover {
    color: #fff;
    background-image: linear-gradient(90deg, #896eff 0, #5f3bff 51%, #896eff);
    background-size: 200%;
}

.pricing__table__content__item .card:hover h3,
.pricing__table__content__item .card:hover h2,
.pricing__table__content__item .card:hover p {
    color: #fff;
}

.pricing__table .card:hover .btn-link i {
    background-color: #fff !important;
    color: #896eff !important;
}

.pricing__table .card:hover .btn-link span {
    color: #fff !important;
}

/* =============================
===================> team-1 page
=============================================== */
.team_1 {
    background-image: url(../../images/bg1.png);
    background-repeat: no-repeat;
    padding-top: 100px;
}

.team_1 .member_info {
    padding: 30px 20px 30px 20px;
}

.team_1 .image_effect {
    position: relative;
    overflow: hidden;
    display: block;
    vertical-align: middle;
    width: 330px !important;
}

.team_1 .image_effect img {
    display: block;
    margin: 0;
    width: 100%;
    box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    transition: all .2s;
    border-radius: 10px;
}

.team_1 .image_effect.opacity img:hover {
    opacity: .8;
}

.team_1 .image_effect.zoom-slow img {
    transition: all 3s;
    -moz-transition: all 3s;
    -webkit-transition: all 3s;
    -o-transition: all 3s;
}

.team_1 .image_effect.zoom-slow {
    border-radius: 10px;
}

.team_1 .image_effect.zoom-slow:hover img,
.team_1 .image_effect.zoom:hover img {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    border-radius: 10px;
}

.team_1 .team__item .col-xl-4 {
    margin-bottom: 15px;
}

/* =============================
===================> coming soon page
=============================================== */
.section-full {
    background-image: url(../../images/bg2.jpg);
    height: 100vh;
    display: table;
    width: 100%;
    background-size: cover;
    position: relative;
    color: #fff;
}

.coming__soon .overlay {
    background: rgba(0, 0, 0, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.countdown_content {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.countdown_content .logo img {
    margin-bottom: 15px;
}

.coming__soon .cs-title {
    font-size: 50px;
    color: #fff;
    font-weight: 500;
    line-height: 70px;
    margin-bottom: 15px;
    opacity: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown .date {
    font-size: 70px;
    line-height: 70px;
    margin: 0;
    font-weight: 600;
}

.countdown .time {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
}

.countdown .time span {
    margin: -22px 28px;
    padding-left: 13px;
}

.countdown .time span:nth-child(2) {
    padding-left: 36px;
}

.countdown_social {
    margin-top: 30px;
}

.countdown_social i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50px;
    font-size: 18px;
    line-height: 50px;
    color: #000;
    margin: 0 2px;
}

.countdown_social i:hover {
    background: #896EFF;
    color: #fff;
}

/* =============================
===================> error-404 page
=============================================== */
.error {
    background-image: url(../../images/bg1.png);
    background-repeat: no-repeat;
}

.error_page {
    padding: 150px 0;
}

.error_page .dlab_error {
    font-size: 190px;
    font-weight: 700;
    line-height: 160px;
    margin: auto;
    color: #896eff;
    opacity: .2;
}

.error_page .error_head {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 30px;
    font-weight: 500 !important;
    max-width: 600px;
    line-height: 40px;
    margin: 15px auto 25px;
    color: #000;
}

.error_button {
    padding: 12px 50px;
    display: inline-block;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    background-color: #896eff;
}

.error_button:hover {
    color: #fff;
    background-color: #6A48FF;
}

.error_button:focus { 
    outline: none !important;
    border-color: #6A48FF;
    box-shadow: 0 0 0 #6A48FF;
 }

/* =============================
===================> sitedown page
=============================================== */
.sitedown {
    background-image: url(../../images/bg2.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: right top;
    position: relative;
    color: #fff;
}

.sitedown .overlay {
    background: rgba(0, 0, 0, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pagedown_title {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(8%, -50%);
    transform: translate(8%, -50%);
}

.pagedown_title .media img {
    width: 160px;
    height: 160px;
    margin-top: 10px;
}

.pagedown_title h1 {
    font-family: Roboto;
    font-weight: 500 !important;
    color: #fff;
    font-size: 70px;
    line-height: 80px;
    margin: 0 0 15px;
}

.pagedown_title p {
    margin: 0;
    font-family: Roboto;
    font-weight: 300;
    color: #fff;
    font-size: 28px;
    line-height: 40px;
    opacity: .8;
}

/* =============================
===================> service-details-1 page
=============================================== */
.service_details_inner {
    background-image: url(../../images/bg1.png);
    background-repeat: no-repeat;
    padding-top: 100px;
}

.service_details_inner .thum_image img {
    width: 100%;
    height: auto;
    border-radius: 10px !important;
    margin-bottom: 30px;
}

.service_details_inner .thum_content h3 {
    font-size: 2rem !important;
}

.service_details_inner .thum_content-details p {
    margin-bottom: 2rem !important;
}

.service_details_inner .video_box {
    position: relative;
    box-shadow: 0 0 10px 4px rgba(31, 66, 135, .2);
    border-radius: 10px;
    overflow: hidden
}

.service_details_inner .video_box .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.service_details_inner .video_box .popup-youtube {
    height: 100px;
    width: 100px;
    line-height: 100px;
    text-align: center;
    background-color: #896eff;
    border-radius: 10px;
    display: block;
    color: #fff;
    font-size: 42px;
    margin: 0 auto 10px;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 20%);
    transition: all .5s;
}

.service_details_inner .video_box .popup-youtube:hover {
    background-color: #fff;
    color: #896eff;
}

.service_details.service {
    padding-bottom: 70px;
}

/* =============================
===================> blog-large-right-sidebar page
=============================================== */
.large__sidebar {
    background-image: url(../../images/bg1.png);
    background-size: cover;
}

.large__sidebar {
    padding-top: 100px;
    padding-bottom: 70px;
}

.sidebar__left {
    margin-bottom: 50px;
}

.large__sidebar .blog__content__item {
    margin-top: 0;
}

.large__sidebar .blog__content__item .card {
    border-radius: 10px;
    margin-bottom: 50px !important;
    padding-bottom: 10px;

}

.large__sidebar .blog__content__item .image_effect {
    position: relative;
    overflow: hidden;
    display: block;
    vertical-align: middle;
    width: 100% !important;
}

.large__sidebar .blog__content__item .image_effect img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -moz-box-shadow: 0 0 0 transparent;
    transition: all .2s;
}

.large__sidebar .blog__content__item .image_effect.zoom-slow img {
    transition: all 3s;
    -moz-transition: all 3s;
    -webkit-transition: all 3s;
    -o-transition: all 3s;
}

.large__sidebar .blog__content__item .image_effect.zoom {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.large__sidebar .blog__content__item .image_effect.zoom:hover img {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.large__sidebar .blog__content__item .card h4 a {
    color: #1f2471 !important;
    font-size: 21px !important;
}

.large__sidebar .blog__content__item .card h4 a:hover {
    color: #4B22FF !important;
}

.large__sidebar .blog__content__item .card-body {
    padding: 30px 30px 20px 30px;
}

.pagination {
    padding-top: 20px !important;
    margin-bottom: 0;
}

.pagination .page-item .next,
.pagination .page-item .prev {
    width: 80px !important;
}

.pagination .page-item .page-link {
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: rgba(137, 110, 255, .1);
    color: #1f2471;
    text-align: center;
    border: 0;
    padding: 0;
    transition: all .5s;
}

.pagination .page-item .page-link:focus { 
    outline: none !important;
    border-color: #6A48FF;
    box-shadow: 0 0 0 #6A48FF;
 }

.pagination .page-item .page-link.active,
.pagination .page-item .page-link:hover {
    background-image: linear-gradient(90deg, #896eff 0, #5f3bff 51%, #896eff);
    ;
    background-size: 200%;
    color: #fff;
}

.pagination .page-item {
    margin: 0 5px;
}

.sidebar__right {
    margin-bottom: 30px;
}

.sidebar__right .search-box {
    margin-bottom: 40px;
}

.sidebar__right .search-box .form-control {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    height: 45px;
    border-radius: 1.5rem !important;
    padding: 10px 100px 10px 50px;
    position: relative;
    font-size: 15px !important;
    color: #888 !important;
}

.sidebar__right .search-box .form-control:focus {
    border-color: #896eff;
}

.sidebar__right .input-group-prepend {
    position: absolute;
    left: 10px;
    top: 22.5px;
    z-index: 99;
    transform: translateY(-50%);
    background-color: transparent;
    margin-right: 10px;
}

.sidebar__right .input-group-prepend .input-group-text {
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 20px;
    background-color: transparent;
    border: 0;
}

.sidebar__right .input-group-prepend .input-group-text i {
    transform: rotate(90deg);
    color: #828282;
    font-size: 15px;
}

.sidebar__right .search-box button {
    position: absolute;
    right: 0;
    height: 45px;
    border-radius: 30px;
    top: 0;
    font-size: 24px;
    padding: 3px 33px;
    color: #fff;
    background-color: #896eff;
    border-color: #896eff;
    text-align: center;
    vertical-align: middle;
    z-index: 99;
}

.sidebar__right .search-box button:hover {
    background-color: #6A48FF;
}

.sidebar__right .search-box .btn:focus {
    background-color: #6A48FF;
    border-color: #896eff !important;
    box-shadow: 0px 1px 1px rgba(137, 110, 255, 0) inset, 0px 0px 8px rgba(137, 110, 255, 0) !important;
}

.sidebar__right .category,
.sidebar__right .archives {
    margin-bottom: 40px;
}

.sidebar__right .category h2,
.sidebar__right .archives h2,
.sidebar__right .tags h2 {
    color: #1f2471;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}

.sidebar__right .category h2:before,
.sidebar__right .archives h2:before,
.sidebar__right .tags h2:before {
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 10px;
    background-color: #896eff;
    position: absolute;
    left: 0;
    top: 0;
}

.sidebar__right .category ul li a,
.sidebar__right .archives ul li a {
    display: flex;
    padding: 8px 8px 8px 25px;
    color: #1f2471;
    transition: all .5s;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
}

.sidebar__right .category ul li a span,
.sidebar__right .archives ul li a span {
    font-size: 15px;
    background-color: rgba(137, 110, 255, .1);
    color: #1f2471;
    padding: 4px 15px;
    border-radius: 20px;
    transition: all .5s;
}

.sidebar__right .category ul li a:hover,
.sidebar__right .archives ul li a:hover {
    box-shadow: 0 0 10px rgba(31, 66, 135, .2);
    color: #896eff;
}

.sidebar__right .category ul li a:hover span,
.sidebar__right .archives ul li a:hover span {
    background-image: linear-gradient(90deg, #896eff 0, #5f3bff 51%, #896eff);
    background-size: 200%;
    color: #fff;
}

.sidebar__right .recent-posts-entry {
    margin-bottom: 40px;
}

.sidebar__right .recent-posts-entry h2 {
    color: #1f2471;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 30px;
}

.sidebar__right .recent-posts-entry h2:before {
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 10px;
    background-color: #896eff;
    position: absolute;
    left: 0;
    top: 0;
}

.sidebar__right .recent-posts-entry .recent-post-box {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: .5s;
}

.sidebar__right .recent-posts-entry .recent-post-box:hover {
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
}


.sidebar__right .recent-posts-entry .media img {
    width: 119px;
    border-radius: 8px;
}

.sidebar__right .recent-posts-entry .media h5 {
    font-weight: 600 !important;
    font-size: 18px !important;
}

.sidebar__right .recent-posts-entry .media h5:hover {
    color: #4B22FF !important;
}


.sidebar__right .recent-posts-entry .media span {
    font-size: 14px;
}

.sidebar__right .tagcloud {
    clear: both;
    display: table
}

.sidebar__right .tags .tagcloud a {
    position: relative;
    border: 1px solid #1f2471;
    border-radius: 20px;
    padding: 5px 15px 3px 35px;
    display: inline-block;
    margin: 0 10px 15px 0;
    font-size: 15px;
    color: #1f2471;
}

.sidebar__right .tags .tagcloud a:before {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    height: 24px;
    width: 24px;
    font-size: 12px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 50px;
    background-color: #1f2471;
    position: absolute;
    left: 3px;
    top: 3px;
    color: #1f2471;
    text-align: center;
    transition: all .5s;
}

.sidebar__right .tags .tagcloud a:hover:before {
    background-color: #896eff;
    color: #fff
}


/* =============================
===================> blog details page
=============================================== */
.blog_details {
    background-image: url(../../images/bg1.png);
    background-size: contain;
    padding-top: 100px;
    padding-bottom: 70px;
}

.blog_details .left {
    margin-bottom: 50px;
}

.blog_details .blog__content__item {
    margin-top: 0;
    margin-bottom: 25px;
}

.blog_details .blog__content__item .card {
    box-shadow: none;
    border: 0;
    border-radius: 10px;
}

.blog_details .blog-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.blog_details .post-date {
    padding-top: 15px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.blog_details .blog__content__item .card-body {
    padding: 0;
}

.blog_details .blockquote {
    margin: 30px 0;
}

.blog_details .blockquote i {
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    color: #896eff;
    font-size: 42px;
    padding-right: 20px;
    align-self: center;
}


.blog_details .blockquote .blockquote-content {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 0;
    border-left: 3px solid rgba(137, 110, 255, .1);
    padding-left: 15px;
}

.blog_details .blog__content__item h4.title {
    margin-bottom: 30px;
}

.blog_details .blog__content__item .alignleft {
    float: left;
    margin-right: 25px;
    border-radius: 10px !important;
}


.blog_details .blog__content__item .shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}


.blog_details .blog__content__item .card-footer {
    padding: 15px 0 0 0;
    margin-bottom: 10px;
    border-top: 1px solid #e1e1f0 !important;
}

.blog_details .card-footer .tag {
    float: left;
}

.blog_details .card-footer .post-tags a {
    margin-left: 5px;
    color: #1f2471;
    font-size: 15px;
    font-weight: 500 !important;
}


.blog_details .extra_blog {
    margin-bottom: 30px;
}

.blog_details .extra_blog h2,
.blog_details .comment_list h2.comments-title,
.blog_details .comment_respond h2 {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}

.blog_details .extra_blog h2:before,
.blog_details .comment_list h2.comments-title:before,
.blog_details .comment_respond h2:before {
    content: "";
    height: 100%;
    width: 5px;
    border-radius: 10px;
    background-color: #896eff;
    position: absolute;
    left: 0;
    top: 0;
}

.blog_details .extra_blog .card {
    box-shadow: 0 0 10px rgb(31 66 135 / 30%);
    border-radius: 10px;
}

.blog_details .extra_blog .card img {
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog_details .extra_blog .card h5 a {
    color: #1f2471;
    font-size: 1.25rem !important;
}

.blog_details .extra_blog .card h5 a:hover {
    color: #4B22FF;
}

.blog_details .extra_blog .card-body {
    padding: 30px 30px 0 30px !important;
}

.blog_details .extra_blog .card-footer {
    border-top: 0 !important;
    padding: 20px 30px 20px 30px !important;
}

.blog_details .extra_blog .post-date {
    padding-top: 0;
    margin-bottom: 0;
    margin-top: 0;
}

.blog_details .comment-list {
    margin-bottom: 50px;
}

.blog_details .comment-list img {
    height: 95px;
    width: 95px;
    border-radius: 10px;
}

.blog_details .comment-list .media {
    margin-bottom: 30px;
}

.blog_details .comment-list .media:nth-child(2) {
    padding-left: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e1e1f0;
}

.blog_details .comment-list .media-body h5 {
    font-size: 18px !important;
    line-height: 18px;
    color: #1f2471;
    font-weight: 700 !important;
    margin-bottom: 10px;
}

.blog_details .comment-list .media-body p {
    margin-bottom: 10px;
}

.blog_details .comment-list .media-body a {
    color: #896eff;
    font-size: 14px;
    font-weight: 600 !important;
    text-transform: uppercase;
}

.blog_details .comment-list .media-body a i {
    margin-right: 8px;

}

.blog_details .comment_respond input {
    width: 100%;
    box-shadow: 0 0 10px 4px rgb(31 66 135 / 10%);
    height: 45px;
    border-radius: 30px !important;
    padding: 10px 20px;
    position: relative;
    font-size: 15px;
    border: 1px solid #fff;
    margin-bottom: 20px;
}

.blog_details .comment_respond textarea {
    padding: 10px 20px;
    margin-bottom: 20px;
}

.comment_respond .form-control:focus {
    outline: none !important;
    border-color: rgb(255, 255, 255);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0) inset, 0px 0px 8px rgba(255, 255, 255, 0);
}

.sticky-top {
    top: 35px;
}

/* ==========
===> footer Section
========== */
.footer {
    background-image: url(../../images/bg10.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    background-color: #896eff;
}

.footer_top {
    padding: 70px 0 30px;
}

.footer_info {
    border-bottom: 1px solid #e1e1f0;
    margin-bottom: 30px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.footer-info .footer-logo {
    margin-bottom: 10px;
}

.footer-logo {
    margin-bottom: 19px;
}

footer .footer-logo img {
    max-width: 100%;
}

.icon-lg.first {
    padding-left: 20px;
    padding-right: 10px;
}

.footer_info .icon-bx-wraper {
    float: left;
}


.footer_info .icon-content p {
    color: #fff;
    font-size: 18px;
    padding-left: 10px;
}

.footer_top_item .footer-about p {
    margin-bottom: 20px;
    line-height: 24px;
    color: #fff;
}

.footer_top_item .social_icon i {
    background-color: #fff;
    color: #896eff;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 50px;
    font-size: 14px;
    transition: all .5s;
}

.footer-about {
    margin-bottom: 30px;
}
.footer_top_item {
    margin-bottom: 23px;
}

.footer_top_item .social_icon i:hover {
    color: #fff;
    background-image: linear-gradient(to right, #866AFF, #6441FF);
}


footer .footer-title {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 10px;
    margin: 0 0 30px;
    position: relative;
    color: #fff;
    line-height: 1.2;
}

footer .footer-title:after,
footer .footer-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 20px;
    background-color: #fff;
}

footer .footer-title:before {
    width: 15px;
}

footer .footer-title:after {
    width: 45px;
    left: 20px;
}

.footer_top_item .services {
    padding-left: 100px;
}

footer .services ul li a {
    position: relative;
    color: #fff;
    padding: 5px 0;
    display: block;
    font-size: 15px;
    transition: all .5s;
}

footer .services ul li a:hover {
    padding-left: 10px;
}


footer .footer_bottom {
    background-color: #b3a1ff;
    font-size: 15px;
    padding: 15px 0;
}

footer .footer_bottom .copyright-text,
footer .footer_bottom .copyright-text a {
    color: #fff !important;
    font-weight: 500;
}

/* side-button */
.theme-btn {
    background-color: #fff;
    border-radius: 40px;
    bottom: 10px;
    color: #fff;
    display: table;
    height: 50px;
    left: 10px;
    min-width: 50px;
    position: fixed;
    text-align: center;
    z-index: 9999;
}

.theme-btn i {
    font-size: 22px;
    line-height: 50px;
}

.theme-btn.bt-support-now {
    background: #1ebbf0;
    background: linear-gradient(45deg, #1ebbf0 8%, #39dfaa);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1ebbf0", endColorstr="#39dfaa", GradientType=1);
    bottom: 70px;
}

.theme-btn.bt-buy-now {
    background: #1fdf61;
    background: linear-gradient(180deg, #a3d179 0, #88ba46);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1fdf61", endColorstr="#88BA46", GradientType=0);
}

.theme-btn:hover {
    color: #fff;
    padding: 0 20px;
}

.theme-btn span {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    letter-spacing: -15px;
    opacity: 0;
    line-height: 50px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    text-transform: uppercase;
}

.theme-btn:hover span {
    opacity: 1;
    letter-spacing: 1px;
    padding-left: 10px;
}

.scroltop {
    box-shadow: -4px 4px 24px -10px #896eff !important;
    background: #896eff;
    border-radius: 4px;
    border: 0 solid #896eff;
    bottom: 15px;
    color: #fff;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 50px;
    z-index: 999;
    box-shadow: -4px 4px 24px -10px;
}


/* ==========
===> keyframes style
========== */
.fetures .section-content .icon-bx-wraper:hover .icon-box:before {
    -webkit-animation: rotate360 5s infinite;
    animation: rotate360 5s infinite
}

@-moz-keyframes rotate360 {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }