#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: .3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #34da89;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #34da89;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: .1
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

.side-menu {
    width: 20rem;
    position: fixed;
    right: 0;
    top: 0;
    background: #333;
    z-index: 99999;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -o-transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    overflow: hidden
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0
}

#close_sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transition: opacity .3s cubic-bezier(.895, .03, .685, .22);
    -o-transition: opacity .3s cubic-bezier(.895, .03, .685, .22);
    transition: opacity .3s cubic-bezier(.895, .03, .685, .22);
    display: none;
    z-index: 9999;
    opacity: .4
}

.side-menu .btn-close {
    height: 33px;
    width: 33px;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 30px;
    right: 15px;
    cursor: pointer;
    background: 0 0;
    opacity: 1
}

.side-menu.before-side,
.side-menu.side-menu-active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.side-menu .btn-close:after,
.side-menu .btn-close:before {
    position: absolute;
    left: 16px;
    content: ' ';
    height: 24px;
    width: 2px;
    background: #f60;
    top: 5px
}

.side-menu .btn-close:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.side-menu .btn-close:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.sidemenu_btn {
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 40px;
    padding: 6px;
    margin-right: 1rem;
    position: absolute;
    right: 25px;
    top: 30px;
    z-index: 99
}

.sidemenu_btn>span {
    height: 3px;
    width: 100%;
    background: #333;
    display: block
}

.sidemenu_btn>span:nth-child(2) {
    margin: 4px 0
}

.bg-white .sidemenu_btn>span {
    background: #333
}

.side-menu .inner-wrapper {
    padding: 3.5rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 200px;
    text-align: left;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 10px 0;
    color: #fff;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all .8s ease .5s;
    -o-transition: all .8s ease .5s;
    transition: all .8s ease .5s;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px)
}

.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: .1s;
    -o-transition-delay: .1s;
    transition-delay: .1s
}

.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s
}

.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #fff;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: normal;
    position: relative;
    -webkit-border-radius: 0;
    border-radius: 0
}

.side-nav .navbar-nav .nav-link:hover {
    color: #f60;
    transition: all .8s
}

@media screen and (max-width:1399px) {
    .sidemenu_btn {
        margin-right: 0
    }
}

a:active,
a:hover {
    color: #34da89;
    text-decoration: none
}

.butn-style1 {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 34px;
    -webkit-transition: all .2s linear 0s;
    -khtml-transition: all .2s linear 0s;
    -moz-transition: all .2s linear 0s;
    -ms-transition: all .2s linear 0s;
    -o-transition: all .2s linear 0s;
    transition: all .2s linear 0s;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
    text-align: center;
    border: 2px solid #34da89;
    color: #34da89;
    z-index: 1
}

.butn-style1:after {
    content: '';
    position: absolute;
    top: 0;
    left: -200%;
    width: 200%;
    height: 100%;
    -webkit-transform: skewX(-20deg);
    -khtml-transform: skewX(-20deg);
    -moz-transform: skewX(-20deg);
    -ms-transform: skewX(-20deg);
    -o-transform: skewX(-20deg);
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, .4), transparent);
    z-index: -1
}

.butn-style1.small {
    padding: 6px 25px !important
}

.butn-style1:hover {
    background-color: #34da89;
    color: #fff
}

.butn-style1.white {
    background-color: #fff;
    color: #34da89
}

.butn-style1.white:hover {
    background-color: #232323;
    color: #fff
}

.butn-style1:hover:after {
    -webkit-animation: btn_shine 1.2s ease;
    animation: btn_shine 1.2s ease;
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

@-webkit-keyframes btn_shine {
    100% {
        left: 200%
    }
}

@keyframes btn_shine {
    100% {
        left: 200%
    }
}

.butn-style2 {
    text-align: center;
    padding: 14px 30px;
    background: #34da89;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    border: unset;
    border-radius: 4px;
    text-transform: uppercase
}

.butn-style2 span {
    position: relative;
    z-index: 2
}

.butn-style2:after {
    content: '';
    width: 1px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    background: #333;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    border-radius: 4px
}

.butn-style2:active,
.butn-style2:focus,
.butn-style2:hover {
    color: #fff
}

.butn-style2:active:after,
.butn-style2:focus:after,
.butn-style2:hover:after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%
}

.butn-style2.small {
    padding: 6px 25px
}

.butn-style3 {
    color: #fff;
    padding: 16px 30px;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all .3s linear;
    z-index: 1;
    background: #f60;
    border: none;
    border-radius: 4px;
    line-height: normal;
    font-weight: 700;
    vertical-align: top
}

.butn-style3:before {
    content: "";
    position: absolute;
    top: -71px;
    right: 0;
    bottom: 0;
    width: 115%;
    height: 322%;
    left: -1px;
    transform: translateX(-100%) rotate(180deg);
    z-index: -1;
    transition: all .4s linear;
    background: #333
}

.butn-style3:active,
.butn-style3:focus,
.butn-style3:hover {
    color: #fff
}

.butn-style3.small {
    padding: 12px 20px !important;
    font-size: 14px
}

.butn-style3.small:before {
    top: -58px
}

.butn-style3:active:before,
.butn-style3:focus:before,
.butn-style3:hover:before {
    transform: translateX(0) rotate(195deg)
}

.butn-style3.white {
    border: unset;
    background: #fff;
    color: #34da89
}

.butn-style3.white:hover {
    color: #fff
}

.page-title-section {
    padding: 200px 0;
    text-align: center;
    position: relative
}

.page-title-section h1 {
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 15px;
    color: #333
}

.page-title-section ul {
    margin-bottom: 0;
    text-align: center
}

.page-title-section ul li {
    display: inline-block
}

.page-title-section ul li:last-child a {
    opacity: .65
}

.page-title-section ul li:after {
    text-align: center;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #34da89;
    margin: 0 8px 0 15px;
    display: inline-block
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    font-weight: 600
}

.page-title-section .page-title {
    max-width: 420px;
    background: #fff;
    overflow: hidden;
    padding: 35px 20px 25px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    z-index: 9
}

@media screen and (max-width:1399px) {
    .page-title-section {
        padding: 185px 0 185px
    }
}

@media screen and (max-width:1199px) {
    .page-title-section {
        padding: 160px 0
    }
    .page-title-section h1 {
        margin-bottom: 10px
    }
    .page-title-section .page-title {
        padding: 30px 20px 20px 20px;
        max-width: 375px
    }
}

@media screen and (max-width:991px) {
    .page-title-section {
        padding: 140px 0
    }
    .page-title-section h1 {
        margin-bottom: 8px
    }
    .page-title-section .page-title {
        padding: 30px 20px 15px 20px;
        max-width: 350px
    }
}

@media screen and (max-width:575px) {
    .page-title-section {
        padding: 125px 0
    }
    .page-title-section .page-title {
        padding: 25px 15px 15px 15px;
        max-width: 300px
    }
}

.title-style1 {
    position: relative;
    margin-bottom: 35px
}

.title-style1 h2 {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding: 0 0 20px
}

.title-style1 h2:before {
    content: "";
    position: absolute;
    left: 48%;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #34da89
}

.title-style1 h2:after {
    content: "";
    position: absolute;
    left: 52%;
    bottom: 0;
    width: 10px;
    height: 2px;
    background-color: #333
}

@media screen and (max-width:991px) {
    .title-style1 h2:before {
        left: 46%
    }
    .title-style1 h2:after {
        left: 53%
    }
}

@media screen and (max-width:767px) {
    .title-style1 h2:before {
        left: 44%
    }
}

@media screen and (max-width:320px) {
    .title-style1 h2:after {
        left: 57%
    }
    .title-style1 h2:before {
        left: 42%
    }
}

.title-style2 span {
    color: #4a83fd;
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 12px;
    padding-top: 28px;
    z-index: 1;
    font-weight: 600
}

.title-style2 span:before {
    position: absolute;
    content: '';
    background: rgba(74, 131, 253, .09);
    width: 50px;
    height: 50px;
    left: -25px;
    top: 8px;
    z-index: -1
}

.title-style2 span:after {
    position: absolute;
    content: '';
    background: rgba(74, 131, 253, .09);
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 24px;
    height: 24px;
    left: 9px;
    top: 0;
    z-index: -1
}

.title-style2.white span:after,
.title-style2.white span:before {
    background: #33557d;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333
}

.banner-style1 .banner-text {
    box-shadow: 0 3px 10px 0 rgba(41, 45, 194, .08);
    margin-bottom: -100px;
    position: relative;
    z-index: 9
}

@media screen and (max-width:991px) {
    .banner-style1 .banner-text {
        margin-bottom: -50px
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@media screen and (max-width:991px) {
    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1)
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
        }
    }
}

.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, .09);
    margin-bottom: 35px;
    padding-bottom: 20px
}

@-webkit-keyframes spin2 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px)
    }
}

.client-style1 img {
    opacity: .6;
    transition-duration: .25s
}

.client-style1:hover img {
    opacity: 1
}

.section-bg {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-position: center center;
    background-repeat: no-repeat
}

@keyframes LeftRight {
    0% {
        transform: translate(0, 0)
    }
    65% {
        transform: translate(30px, 0)
    }
    100% {
        transform: translate(0, 0)
    }
}

@keyframes TopBottom {
    0% {
        transform: translate(0, 0)
    }
    65% {
        transform: translate(0, 30px)
    }
    100% {
        transform: translate(0, 0)
    }
}

@keyframes animationFramesTwo {
    0% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
    20% {
        transform: translate(73px, -1px) rotate(36deg) scale(.9)
    }
    40% {
        transform: translate(141px, 72px) rotate(72deg) scale(1)
    }
    60% {
        transform: translate(83px, 122px) rotate(108deg) scale(1.2)
    }
    80% {
        transform: translate(-40px, 72px) rotate(144deg) scale(1.1)
    }
    100% {
        transform: translate(0, 0) rotate(0) scale(1)
    }
}