.container {
    padding-left: 0;
    padding-right: 0;
}
.header-top-area .align-items-center {
    padding: 12px 0;
}
.header-top-area {
    background: #271151;
    overflow: hidden;
    position: relative;
}
.header-top-left-single-item {
    display: inline-block;
    margin-right: 20px;
}
.header-top-left-single-item a {
    color: #fff;
    font-size: 14px;
}
.header-top-left-icon i {
    margin-right: 8px;
}
.header-top-right-items ul {
    text-align: right;
}
.header-top-right-icon-area ul li {
    display: inline-block;
    margin-left: 8px;
}
.header-top-right-icon-area ul li a {
    color: #fff;
    font-size: 14px;
}
.header-search-icons i {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

/*-----Header middle section style------*/
header {
    background: #fff;
    transition: 0.5s;
}

/*Transparent-Header*/
header.transparent-header {
    background: transparent;
    z-index: 99;
    position: relative;
}

header.transparent-header .menu-wrapper .sub-menu li a {
    margin: 0;
}
.transparent-header.sticky-nav .menu-wrapper .sub-menu li a {
    margin: 0;
}
.transparent-header.sticky-nav {
    background: white;
}

header.transparent-header .nav-btn:hover a {
    background: white;
    border-color: transparent;
}
.transparent-header.sticky-nav .nav-btn a {
    background: orange;
    color: black;
    border-color: orange;
}
header.transparent-header .menu-wrapper nav ul li a i {
    color: #232323;
    transition: 0.5s;
}
.transparent-header.sticky-nav .menu-wrapper nav ul li a i {
    color: #f0b9f8;
}
header.transparent-header .menu-wrapper nav ul li:hover a {
    color: #232323;
}
.transparent-header.sticky-nav .menu-wrapper nav ul li:hover a {
    color: orange;
}
header.transparent-header .menu-wrapper .sub-menu {
    top: 150px;
    transition: 0.5s;
}

.transparent-header.sticky-nav .menu-wrapper ul li:hover .sub-menu {
    top: 82px;
}

/*Transparent-Header Style-Two*/
header.transparent-header {
    margin-bottom: -138px;
}
header.transparent-header.style-two .menu-wrapper nav ul li a {
    color: #fff;
}
header.transparent-header.style-two .menu-wrapper nav ul li a i {
    color: #fff;
    opacity: 0.5;
}
/* Sicky Menu */
.sticky-nav {
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: white;
    transition: 0.5s !important;
    position: fixed !important;
    -webkit-animation: 500ms running fadeInDown;
    animation: 500ms running fadeInDown;
    animation-name: slideInDown;
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

/*------------Start Header Style-Two----------*/
.header-style-two {
    background: linear-gradient(
        to right,
        rgba(32, 40, 119, 0.95),
        rgba(55, 46, 149, 0.95),
        rgba(83, 49, 177, 0.9),
        rgba(114, 48, 205, 0.85),
        rgba(150, 41, 230, 0.95)
    );
}
.header-style-two nav ul li a {
    color: #fff;
}
.header-style-two nav ul li a i {
    color: #fff;
}
.header-style-two nav ul li:hover a {
    color: #fff;
}
.header-style-two nav ul li:hover a i {
    color: #fff;
    opacity: 1;
}
.sticky-nav.header-style-two {
    background: #c216db;
}
.sticky-nav.header-style-two .menu-wrapper nav ul li a i {
    color: #f0b9f8;
}
/* style-03 */
.header-section.new-style-03 .header-logo {
    margin-top: -70px;
    margin-left: 6%;
}
.header-section.new-style-03 .header-menu {
    margin-left: 50px;
}
.header-section.new-style-03 .header-src-btn {
    margin-right: 15px !important;
    margin-left: 0;
}
.header-section.new-style-03 .right-side-header {
    margin-right: 5%;
}
/* Style-04 */
.new-style-04.header-section .header-logo {
    margin-top: -34px;
    margin-left: 6%;
}

/*** ====================================================================
	Search Popup
====================================================================
***/
.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(
        0.86,
        0,
        0.07,
        1
    ); /* easeInOutQuint */
}
.search-popup {
    width: 100%;
}
.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}
.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 75%;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: orange;
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    opacity: 0;
    visibility: hidden;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: #fff;
    font-size: 22px;
}
.search-popup .close-search span {
    position: relative;
    height: 70px;
    width: 70px;
    font-size: 30px;
    line-height: 70px;
    color: #ffffff;
}
.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}
.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}
.search-popup .form-group {
    position: relative;
    margin: 0px;
    overflow: hidden;
}
.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #ffffff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}
.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: #000000;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}
.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}
.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}
.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #ffffff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 30px;
}
.header-src-btn {
    margin-left: 15px;
    display: inline-block;
}

.header-src-btn .search-btn i {
    border-radius: 3px;
    height: 30px;
    text-align: center;
    width: 30px;
    line-height: 30px;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid orange;
    color: #fff;
    margin-top: 0px;
    background: orange;
}

/*---Sticky Menu---*/

.mobile-menu-top-logo {
    z-index: 999;
    position: relative;
    background: #fff;
}
.logo {
    position: absolute;
}
.menu-wrapper {
    display: flex;
    justify-content: space-between;
}
.menu-wrapper nav ul {
    display: inline-block;
}
.menu-wrapper nav ul li {
    display: inline-block;
}
.menu-wrapper nav ul li a span i {
    display: none;
}
.mm-social-icon {
    text-align: left;
    margin-top: 15px;
}
.mm-social-icon span {
    padding: 0 22px;
}
.mm-social-icon a {
    color: orange;
    background: transparent;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    border: 1px solid orange;
    border-radius: 5px;
    transition: 0.3s;
}
.mm-social-icon a:hover {
    color: #fff;
    background: orange;
    border: 1px solid orange;
}

/*-----Header Menu style -----
.menu-wrapper nav ul li a {
    display: block;
    margin: 30px 10px;
    transition: 0.5s;
    position: relative;
    color: #232323;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}
.menu-wrapper nav ul li:hover a {
    color: orange;
}
.menu-wrapper nav ul li a i {
    color: #888;
    font-size: 14px;
    margin-left: 5px;
    background: transparent;
}
.menu-wrapper nav ul li:hover a i {
    color: orange;
    opacity: 0.5;
}
.nav-btn a {
    background: orange;
    border: 1px solid orange;
    border-radius: 3px;
    color: #fff;
    padding: 12px 25px;
    font-size: 15px;
    transition: 0.3s;
    display: inline-block;
    margin-left: 11px;
    transition: 0.5s;
}
.nav-btn:hover a {
    background: #c216db;
    border: 1px solid #c216db;
}
.sticky-nav .nav-btn a {
    background: #fff;
    border: 1px solid #fff;
    color: orange;
}

.logo img:nth-child(2) {
    display: none;
}
.sticky-nav .logo img:nth-child(1) {
    display: none;
}
.sticky-nav .logo img:nth-child(2) {
    display: block;
}
.sticky-nav .menu-wrapper nav ul li a {
    color: black;
}
.sticky-nav .menu-wrapper nav ul li a i {
    color: #f0b9f8;
    opacity: 1;
}

/* index eight 
==========================*/

.upper .menu-wrapper nav ul li a {
    color: #fff;
}

span.color-change {
    color: #222;
}

.upper.transparent-header .menu-wrapper nav ul li a i {
    color: #fff;
}

.upper .nav-btn a {
    background: #c216db;
}

.sticky-nav span.color-change {
    color: #fff;
}

/*------Header middle sub-menu  style--------*/
.menu-wrapper ul li {
    position: relative;
}
.menu-wrapper .sub-menu {
    position: absolute;
    top: 120px;
    left: 0px;
    width: 270px;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding: 25px 0px 25px 5px;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    border-radius: 5px;
}
.menu-wrapper ul li:hover .sub-menu {
    top: 87px;
    visibility: visible;
    opacity: 1;
    z-index: 999;
}
.menu-wrapper .sub-menu li {
    position: relative;
    line-height: 2;
    display: block;
    text-align: left;
    transition: 0.3s;
    cursor: pointer;
}
.menu-wrapper .sub-menu li a::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    height: 1px;
    width: 15px;
    background: orange;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.menu-wrapper .sub-menu li:hover a {
    padding-left: 35px;
    color: orange !important;
}
.menu-wrapper .sub-menu li:hover a i {
    color: orange !important;
}
.menu-wrapper .sub-menu li:hover a::after {
    visibility: visible;
    position: absolute;
    left: 8px;
    opacity: 1;
}
.menu-wrapper .sub-menu li a {
    font-size: 16px;
    padding: 8px 15px;
    display: block;
    line-height: 1.3;
    transition: 0.3s;
    letter-spacing: normal;
    text-transform: capitalize;
    margin: 0 !important;
    color: #616161 !important;
}
.menu-wrapper .sub-menu li a i {
    color: #555 !important;
    background: #fff !important;
    transition: 0.3s;
}

/*------Inner sub-menu style--------*/
.menu-wrapper .sub-menu .inner-sub-menu {
    position: absolute;
    left: 265px;
    top: 65px;
    background: #fff;
    width: 235px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.5s;
    opacity: 0;
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.1);
    visibility: hidden;
}
.menu-wrapper .sub-menu li:hover .inner-sub-menu {
    top: 0;
    visibility: visible;
    opacity: 1;
}
.menu-wrapper .sub-menu .inner-sub-menu {
    padding: 15px 0;
}
.menu-wrapper .sub-menu .inner-sub-menu li {
    position: relative;
}
.menu-wrapper .sub-menu .inner-sub-menu li a {
    padding: 8px 15px;
    margin: 0 !important;
    color: #616161 !important;
}
.menu-wrapper .sub-menu .inner-sub-menu li:hover a {
    padding-left: 35px;
    color: orange !important;
}
.menu-wrapper .sub-menu .inner-sub-menu li a::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    height: 1px;
    width: 15px;
    background: orange;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}
.menu-wrapper .sub-menu .inner-sub-menu li:hover a::after {
    visibility: visible;
    position: absolute;
    left: 8px;
    opacity: 1;
}

/*------------Start Hero Style----------*/
.hero-section {
    background: linear-gradient(
            to right,
            rgba(32, 40, 119, 0.95),
            rgba(55, 46, 149, 0.95),
            rgba(83, 49, 177, 0.9),
            rgba(114, 48, 205, 0.85),
            rgba(150, 41, 230, 0.95)
        ),
        url(../images/banar1.jpg) no-repeat center/cover;
    height: 840px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    left: 0;
    right: 0;
    margin: auto;
}
.hero-section.style-one .hero-content h4 {
    text-transform: capitalize;
}
.hero-content h4 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
.hero-content h1 {
    font-size: 50px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 800;
}
.hero-content h2 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0;
}
.btn-common.btn-hero {
    display: inline-block;
    margin-right: 30px;
}
.hero-section.style-one .btn-common.btn-hero a {
    font-size: 12px;
    padding: 16px 17px;
    font-weight: 600;
}
.btn-common.btn-hero a {
    font-size: 14px;
    padding: 14px 17px;
}
.video.hero-video {
    display: inline-block;
}
.section-shape {
    position: absolute;
    bottom: -78px;
    left: 0;
    right: 0;
    width: 100%;
}

/*------------Start Hero Style-Two----------*/
.hero-section.style-two {
    height: 820px;
    background: url(../images/banar2.jpg) no-repeat center/cover;
}
.hero-section.style-two .hero-content-area h5 {
    font-size: 22px;
    font-weight: 600;
}
.hero-section.style-two .hero-content-area h1 {
    font-size: 50px;
    font-weight: 800;
    margin-top: 5px;
}
.hero-section.style-two .hero-content-area h2 {
    font-size: 50px;
    font-weight: 500;
    margin: 0 0 20px;
}
.hero-content-txt {
    padding-right: 70px;
    padding-bottom: 35px;
}
.hero-thumb-section {
    position: relative;
}
.thumb-one {
    width: 100%;
    position: absolute;
    top: -90px;
    right: 0;
    animation: move-one 7s ease-in-out infinite;
}
.thumb-one img {
    width: 500px;
}

@keyframes move-one {
    0% {
        top: -90px;
    }
    25% {
        top: -75px;
    }
    50% {
        top: -90px;
    }
    75% {
        top: -75px;
    }
    100% {
        top: -90px;
    }
}
.thumb-two {
    position: absolute;
    top: 50px;
    animation: move-two 8s ease-in-out infinite;
    width: 120px;
}

@keyframes move-two {
    0% {
        top: 50px;
    }
    25% {
        top: 35px;
    }
    50% {
        top: 50px;
    }
    75% {
        top: 35px;
    }
    100% {
        top: 50px;
    }
}
.thumb-three {
    position: absolute;
    animation: move-three 9s ease-in-out infinite;
    width: 120px;
    bottom: -460px;
}
@keyframes move-three {
    0% {
        bottom: -460px;
    }
    25% {
        bottom: -445px;
    }
    50% {
        bottom: -460px;
    }
    75% {
        bottom: -445px;
    }
    100% {
        bottom: -460px;
    }
}
.thumb-four {
    position: absolute;
    animation: move-four 6s ease-in-out infinite;
    width: 200px;
    bottom: -460px;
    right: -85px;
}
@keyframes move-four {
    0% {
        bottom: -460px;
    }
    25% {
        bottom: -445px;
    }
    50% {
        bottom: -460px;
    }
    75% {
        bottom: -445px;
    }
    100% {
        bottom: -460px;
    }
}

/*------------Animation Hero section----------*/
.circles {
    overflow: hidden;
    width: 100%;
    position: absolute;
    height: 1200px;
}
.point {
    border-radius: 50%;
    z-index: 999;
    position: absolute;
}
.animated-point-1 {
    background-color: red;
    height: 12px;
    width: 12px;
    position: relative;
    animation-name: p1;
    animation-duration: 80s;
    animation-iteration-count: infinite;
}

.animated-point-2 {
    background-color: green;
    height: 15px;
    width: 15px;
    position: relative;
    animation-name: p2;
    animation-duration: 90s;
    animation-iteration-count: infinite;
}

.animated-point-3 {
    background-color: orange;
    height: 8px;
    width: 8px;
    position: relative;
    animation-name: p3;
    animation-duration: 80s;
    animation-iteration-count: infinite;
}

.animated-point-4 {
    background-color: pink;
    height: 10px;
    width: 10px;
    position: relative;
    animation-name: p4;
    animation-duration: 80s;
    animation-iteration-count: infinite;
}

.animated-point-5 {
    background-color: #ffc64c;
    height: 12px;
    width: 12px;
    position: relative;
    animation-name: p5;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}

.animated-point-6 {
    background-color: #ffc64c;
    height: 10px;
    width: 10px;
    position: relative;
    animation-name: p6;
    animation-duration: 70s;
    animation-iteration-count: infinite;
}

.animated-point-7 {
    background-color: orange;
    height: 14px;
    width: 14px;
    position: relative;
    animation-name: p7;
    animation-duration: 70s;
    animation-iteration-count: infinite;
}

.animated-point-8 {
    background-color: purple;
    height: 8px;
    width: 8px;
    position: relative;
    animation-name: p8;
    animation-duration: 50s;
    animation-iteration-count: infinite;
}

.animated-point-9 {
    background-color: purple;
    height: 12px;
    width: 12px;
    position: relative;
    animation-name: p9;
    animation-duration: 100s;
    animation-iteration-count: infinite;
}
/*animation shape*/

@-webkit-keyframes p1 {
    0% {
        left: 0px;
        top: 0px;
    }
    50% {
        left: 0;
        top: 800px;
    }
    100% {
        left: 0px;
        top: 0px;
    }
}

@keyframes p1 {
    0% {
        left: 800px;
        top: 0px;
    }
    50% {
        left: 0px;
        top: 800px;
    }
    100% {
        left: 800px;
        top: 0px;
    }
}

@-webkit-keyframes p2 {
    0% {
        left: 0;
        top: 100px;
    }
    50% {
        left: 0;
        top: 800px;
    }
    100% {
        left: 0;
        top: 100px;
    }
}

@keyframes p2 {
    0% {
        left: 0;
        top: 100px;
    }
    50% {
        left: 0px;
        top: 800px;
    }
    100% {
        left: 0;
        top: 100px;
    }
}

@-webkit-keyframes p3 {
    0% {
        left: 300px;
        top: 900px;
    }
    50% {
        left: 500px;
        top: 0px;
    }
    100% {
        left: 300px;
        top: 900px;
    }
}

@keyframes p3 {
    0% {
        left: 300px;
        top: 900px;
    }
    50% {
        left: 500px;
        top: 0px;
    }
    100% {
        left: 300px;
        top: 900px;
    }
}

@-webkit-keyframes p4 {
    0% {
        left: 1000px;
        top: 500px;
    }
    50% {
        left: 00px;
        top: 500px;
    }
    100% {
        left: 1000px;
        top: 500px;
    }
}

@keyframes p4 {
    0% {
        left: 1000px;
        top: 500px;
    }
    50% {
        left: 0px;
        top: 500px;
    }
    100% {
        left: 1000px;
        top: 500px;
    }
}

@-webkit-keyframes p5 {
    0% {
        left: 500px;
        top: 1000px;
    }
    50% {
        left: 50%;
        top: 0px;
    }
    100% {
        left: 500px;
        top: 1000px;
    }
}

@keyframes p5 {
    0% {
        left: 500px;
        top: 1000px;
    }
    50% {
        left: 50%;
        top: 0px;
    }
    100% {
        left: 500px;
        top: 1000px;
    }
}

@-webkit-keyframes p6 {
    0% {
        left: 500px;
        top: 200px;
    }
    50% {
        left: 50%;
        top: 70%;
    }
    100% {
        left: 500px;
        top: 200px;
    }
}

@keyframes p6 {
    0% {
        left: 500px;
        top: 200px;
    }
    50% {
        left: 50%;
        top: 70%;
    }
    100% {
        left: 500px;
        top: 200px;
    }
}

@-webkit-keyframes p7 {
    0% {
        left: 50px;
        top: 10%;
    }
    50% {
        left: 50%;
        top: 10%;
    }
    100% {
        left: 50px;
        top: 10%;
    }
}

@keyframes p7 {
    0% {
        left: 50px;
        top: 10%;
    }
    50% {
        left: 50%;
        top: 10%;
    }
    100% {
        left: 50px;
        top: 10%;
    }
}

@-webkit-keyframes p8 {
    0% {
        left: 0;
        top: 20%;
    }
    50% {
        left: 50%;
        top: 20%;
    }
    100% {
        left: 0;
        top: 20%;
    }
}

@keyframes p8 {
    0% {
        left: 0;
        top: 20%;
    }
    50% {
        left: 50%;
        top: 20%;
    }
    100% {
        left: 0;
        top: 20%;
    }
}

@-webkit-keyframes p9 {
    0% {
        left: 1000px;
        top: 100px;
    }
    50% {
        left: 500px;
        top: 950px;
    }
    100% {
        left: 1000px;
        top: 100px;
    }
}

@keyframes p9 {
    0% {
        left: 1000px;
        top: 100px;
    }
    50% {
        left: 500px;
        top: 950px;
    }
    100% {
        left: 1000px;
        top: 100px;
    }
}

/*------------Start Hero Style-Three----------*/
.hero-section.style-three {
    height: 820px;
    position: relative;
    background: #fff;
}
.hero-section.style-three .hero-content-area h5 {
    font-size: 22px;
    font-weight: 600;
}
.hero-section.style-three .hero-content-area h1 {
    font-size: 50px;
    font-weight: 800;
    margin-top: 5px;
}
.hero-section.style-three .hero-content-area h2 {
    font-size: 50px;
    font-weight: 500;
    margin: 0 0 20px;
}
.hero-shape {
    position: absolute;
    left: auto;
    top: -70%;
    right: -44%;
    bottom: auto;
    width: 100%;
    height: 115%;
    border-radius: 100px;
    background-color: orange;
    transform: rotate(-35deg);
}

/*------------Start Hero Style-Four----------*/
.hero-section.style-four {
    background: url(../images/banar3.jpg) no-repeat center/cover;
    height: 875px;
}
.hero-section.style-four .hero-content-area {
    margin-top: 30px;
}
.hero-section.style-four h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 24px;
    letter-spacing: 1px;
}
.hero-section.style-four .hero-content-area h1,
.hero-section.style-four .hero-content-area h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
}
.hero-section.style-four .hero-content-area h2 {
    margin: 0 0 30px;
}
.bottom-image {
    position: absolute;
    bottom: -8px;
    width: 100%;
}
.hero-section.style-four .appoinment-form {
    background: #fff;
    padding: 32px 50px 50px;
    border-radius: 7px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    z-index: 99;
    position: relative;
}
.appoinment-form .form-title h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.input-box input {
    height: 54px;
    background-color: #fff;
    border-color: transparent;
    transition: 0.5s;
    border: 1px solid #e6e6e6;
    padding: 6px 20px;
    box-shadow: none;
    border-radius: 5px;
}
.input-box .form-control::placeholder {
    color: #495057 !important;
}
.appoinment-button button {
    padding: 14px 39px;
    border-radius: 4px;
    width: 100%;
    background: orange;
    border: 0;
    display: inline-block;
    text-align: center;
    color: #fff;
}

/*------------Start Hero Style-Five----------*/
.hero-section.style-five {
    background: url(../images/hero-1.png) no-repeat center/cover;
}
.hero-section.style-five .hero-content h1,
.hero-section.style-five .hero-content h2 {
    font-size: 70px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}
.hero-section.style-five .hero-content p {
    width: 70%;
    margin: 20px auto 32px;
    font-size: 18px;
}

/*------------Start Hero Style-Six----------*/
.hero-section.style-six {
    background: url(../images/banar4.jpg) no-repeat center/ cover;
    height: 820px;
}
.hero-section.style-six .hero-content-area h4 {
    font-size: 22px;
    font-weight: 600;
}
.hero-section.style-six .hero-content-area h1 {
    font-size: 50px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 800;
    line-height: 1.2;
}
.hero-section.style-six .hero-content-text p {
    margin: 20px 0 35px;
    width: 65%;
}

/*------------Start Hero Style-Seven----------*/
.hero-section.style-seven {
    background: url(../images/banar5.jpg) no-repeat center/ cover;
    height: 820px;
}
.hero-section.style-seven::before {
    position: absolute;
    content: "";
    left: -310px;
    top: 0;
    height: 100%;
    width: 75%;
    background: #eef3f9;
    transform: skewX(10deg);
    z-index: -1;
}
.hero-section.style-seven .hero-content-area h4 {
    font-size: 20px;
    font-weight: 600;
    color: orange;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.hero-section.style-seven .hero-content-area h1 {
    font-size: 60px;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 800;
    line-height: 1.1;
}
.hero-section.style-seven .hero-content-area h1 span {
    color: orange;
}
.hero-section.style-seven .hero-content-text p {
    margin: 20px 0 35px;
    width: 80%;
    font-size: 18px;
}
.hero-section.style-seven .btn-common.btn-hero {
    margin-top: 15px;
}
.hero-section.style-seven .btn-common.btn-hero a {
    font-size: 17px;
    padding: 19px 32px;
}
.hero-section.style-seven .btn-common.btn-hero.style-two a {
    background: #c216db;
}
.hero-section.style-seven .btn-common.btn-hero.style-two:hover a {
    background: orange;
}

/*------------Start Hero Style-Eight----------*/
.hero-section.style-eight h1,
.hero-section.style-eight h2 {
    color: #fff;
    font-size: 75px;
    text-transform: capitalize;
    font-weight: 800;
    line-height: 1;
}
.ah-headline.clip .ah-words-wrapper::after {
    background-color: #fff !important;
}
.hero-section.style-eight .btn-common.btn-hero {
    margin-top: 100px;
}
.hero-section.style-eight .btn-common.btn-hero a {
    padding: 18px 28px;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
}
.hero-section.style-eight .btn-common.btn-hero:hover a {
    background: #fff;
    color: orange;
}

/*------------Start Hero Style-nine---------*/
.hero-section.style-nine {
    background: url(../images/banar6.jpg) no-repeat center/ cover;
    height: 875px;
    z-index: 1;
}
.hero-section.style-nine h4 {
    color: #232323;
    font-size: 50px;
    font-weight: 700;
}
.hero-section.style-nine h1 {
    color: #232323;
    font-size: 130px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0;
}
.btn-common.hero-btn {
    margin-top: 30px;
}

/*------------Start Hero Style-Ten---------*/
.hero-section.style-ten {
    background: linear-gradient(
            to right,
            rgba(32, 40, 119, 0.95),
            rgba(55, 46, 149, 0.95),
            rgba(83, 49, 177, 0.9),
            rgba(114, 48, 205, 0.85),
            rgba(150, 41, 230, 0.95)
        ),
        url(../images/banar6.jpg) no-repeat center/cover;
    min-height: 840px;
    position: relative;
}
.hero-section.style-ten .hero-content h4 {
    text-transform: capitalize;
    margin-bottom: 5px;
}

/*------------Start Carousel Slider Style----------*/
.carousel-slider-one {
    background: url("../images/slide1.jpg") no-repeat center/cover;
    height: 875px;
    position: relative;
    z-index: 1;
}
.carousel-slider-two {
    background: url("../images/slide2.jpg") no-repeat center/cover;
    height: 875px;
    position: relative;
    z-index: 1;
}
.carousel-slider-section.style-two .carousel-slider-one {
    background: url("../images/slide3.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-two .carousel-slider-two {
    background: url("../images/slide1.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-three .carousel-slider-one {
    background: url("../images/slide4.jpg") no-repeat center/cover;
    height: 670px;
}
.carousel-slider-section.style-three .carousel-slider-two {
    background: url("../images/slide5.jpg") no-repeat center/cover;
    height: 670px;
}
.carousel-slider-section.style-four .carousel-slider-one {
    background: url("../images/slide6.jpg") no-repeat center/cover;
    height: 670px;
}
.carousel-slider-section.style-four .carousel-slider-two {
    background: url("../images/slide7.jpg") no-repeat center/cover;
    height: 670px;
}
.carousel-slider-section.style-five .carousel-slider-one {
    background: url("../images/slide8.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-five .carousel-slider-two {
    background: url("../images/slide9.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-five .carousel-slider-two {
    background: url("../images/slide9.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-five .carousel-slider-two {
    background: url("../images/slide9.jpg") no-repeat center/cover;
}
.carousel-slider-section.style-five .carousel-slider-two {
    background: url("../images/slide9.jpg") no-repeat center/cover;
}

.hero-section2 {
    background: linear-gradient(rgba(19, 19, 35, 0.5), rgba(0, 0, 0, 0.5)),
        url(../images/slider3.jpg) no-repeat center/cover;
    height: 875px;
    position: relative;
    z-index: 1;
    height: 950px;
}

.hero-section-3 {
    background: linear-gradient(rgba(19, 19, 35, 0.65), rgba(0, 0, 0, 0.65)),
        url(../images/slider4.jpg) no-repeat center/cover;
    height: 875px;
    position: relative;
    z-index: 1;
    height: 950px;
}

.hero-section-4 .slider-content p {
    text-align: center;
    margin: 16px auto 30px;
}

.hero-section-4 .video.carousel-video {
    float: inherit !important;
    display: inline-block;
}

.hero-section-4 span.video-text {
    font-size: 18px;
    color: #fff;
    padding-left: 40px;
}

.hero-section-4 {
    background: linear-gradient(rgba(19, 19, 35, 0.5), rgba(0, 0, 0, 0.5)),
        url(../images/slider5.jpg) no-repeat center/cover;
    height: 875px;
    position: relative;
    z-index: 1;
    height: 950px;
}

.upp .owl-prev,
.upp .owl-next {
    border: 2px solid orange;
    font-size: 22px;
}

@keyframes fadeInOne {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }
    40% {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.owl-item.active .slider-content h1,
.owl-item.active .slider-content h2 {
    animation: 4.8s ease-in-out 0s normal none 1 running fadeInLeft;
}

.owl-item.active .slider-content h4 {
    animation: 4.8s ease-in-out 0s normal none 1 running fadeInDown;
}

.owl-item.active .slider-content p {
    animation: 4.8s ease-in-out 0s normal none 1 running fadeInRight;
}

.owl-item.active .btn-common.btn-carousel-slider {
    animation: 4.8s ease-in-out 0.5s normal none 1 running fadeInOne;
}

.owl-item.active .video.carousel-video {
    animation: 3.8s ease-in-out 0.5s normal none 1 running fadeInOne;
}

.owl-item.active p.intro-text {
    animation: 3.8s ease-in-out 0.5s normal none 1 running fadeInOne;
}

.slider-content h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 30px;
    letter-spacing: 1px;
}
.slider-content h1,
.slider-content h2 {
    font-size: 65px;
    text-transform: none;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}
.slider-content p {
    width: 60%;
    text-align: left;
    margin: 16px 0 30px;
    font-size: 18px;
}
.btn-common.btn-carousel-slider {
    display: inline-block;
    margin: 24px 16px 0 0;
}
.btn-common.btn-carousel-slider a {
    background: orange;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    padding: 19px 32px;
    text-align: center;
    transition: 0.3s;
    letter-spacing: 1px;
}
.btn-common:hover a {
    background-color: #c216db;
}
.btn-common a {
    background: orange;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 32px;
    text-align: center;
    transition: 0.3s;
    letter-spacing: 1px;
}
.btn-common.btn-carousel-slider.style-two a {
    background-color: #c216db;
}
.btn-common.btn-carousel-slider.style-two:hover a {
    background-color: orange;
}
/* style-03 */
.carousel-slider-section.new-style-03 .carousel-slider-one {
    background: url("../images/banner-1.png") no-repeat center/cover;
}
.carousel-slider-section.new-style-03 .carousel-slider-two {
    background: url("../images/banner-2.png") no-repeat center/cover;
}
.carousel-slider-one.style-3 .slider-content p {
    width: 60%;
    text-align: center;
    margin: 15px auto 0;
    font-size: 25px;
}
.carousel-slider-one.style-3 .carousel-btn-area {
    text-align: center;
    margin-left: 38%;
    margin-top: 30px;
}
/* New-Style-05 */
.carousel-slider-section.new-style-05 .carousel-slider-one {
    background: url("../images/new3.jpg") no-repeat center/cover;
}
.carousel-slider-section.new-style-05 .carousel-slider-two {
    background: url("../images/new4.jpg") no-repeat center/cover;
}
.carousel-slider-section.new-style-05 .slider-content h5 {
    color: orange;
    margin-bottom: 30px;
}

/*==========================
===========section video
==========================*/
.video.carousel-video {
    margin-left: 25px;
    margin-top: 15px;
    float: left;
    margin-right: 30px;
}
.intro-text {
    margin-top: 40px !important;
    padding-top: 20px;
}
.video.about-video {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9;
    transform: translateY(-50%);
}

.video i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    position: relative;
    color: orange;
    animation: ripple-white 1s linear infinite;
    background: #fff;
    font-size: 28px;
    z-index: 1;
}

@keyframes ripple-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3),
            0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3),
            0 0 0 20px rgba(255, 255, 255, 0.3),
            0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.video.hero-video i {
    animation: ripple-blue 1s linear infinite;
    background: orange;
    color: #fff;
}

@keyframes ripple-blue {
    0% {
        box-shadow: 0 0 0 0 rgb(119, 68, 217, 0.3),
            0 0 0 10px rgb(119, 68, 217, 0.3), 0 0 0 20px rgb(119, 68, 217, 0.3);
    }
    100% {
        box-shadow: 0 0 0 10px rgb(119, 68, 217, 0.3),
            0 0 0 20px rgb(119, 68, 217, 0.3), 0 0 0 30px rgb(119, 68, 217, 0);
    }
}
.owl-prev,
.owl-next {
    position: absolute;
    background-color: transparent;
    border-radius: 100%;
    height: 60px;
    top: 50%;
    transform: translate(0px, -50%);
    width: 60px;
    z-index: 1;
    transition: all 0.3s ease 0s;
    line-height: 60px;
    color: #fff;
    border: 2px solid #fff;
    text-align: center;
    font-size: 25px;
}
.owl-prev {
    left: -60px;
}
.owl-next {
    right: -60px;
}
.carousel-slider-section:hover .owl-prev {
    left: 30px;
    background: rgb(255, 255, 255, 0.2);
}
.carousel-slider-section:hover .owl-next {
    right: 30px;
    background: rgb(255, 255, 255, 0.2);
}
/* New Demo Style */
.new-style-01.carousel-slider-section {
    position: relative;
    z-index: 1;
}
.new-style-01.carousel-slider-section .carousel-slider-one {
    background: url("../images/slider1.jpg") no-repeat center/cover;
    height: 875px;
}
.new-style-01.carousel-slider-section .carousel-slider-two {
    background: url("../images/slider2.jpg") no-repeat center/cover;
    height: 875px;
}
.new-style-01.carousel-slider-section .slider-shape {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
}
.new-style-01.menu-wrapper nav ul li a {
    color: #fff;
}
.new-style-01.menu-wrapper .nav-btn a {
    background: #fff;
    border: none;
    color: #232323;
}
.new-style-01.header-section {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 2;
    margin-bottom: -112px;
    padding: 25px 0 0;
}
.new-style-01.header-section.sticky-nav {
    left: 0;
    margin: auto;
    top: -28px;
    width: 100%;
    z-index: 9999;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    transition: 0.5s !important;
    position: fixed !important;
    background: #c216db !important;
}
.new-style-01.header-section .menu-wrapper nav ul li a i {
    color: #fff;
    font-size: 14px;
    margin-left: 5px;
    background: transparent;
    opacity: 0.7;
}
.new-style-01.carousel-slider-section .video.carousel-video a span {
    color: #fff;
    margin-left: 40px;
}
.new-style-01.carousel-slider-section .video.carousel-video {
    margin-left: 0;
    margin-top: 35px;
    float: left;
    margin-right: 0;
}
/* New Demo Style */
.new-style-02.carousel-slider-section .carousel-slider-one {
    background: url("../images/new1.jpg") no-repeat center/cover;
    height: 900px;
}
.new-style-02.carousel-slider-section .carousel-slider-two {
    background: url("../images/new2.jpg") no-repeat center/cover;
    height: 900px;
}
.new-style-02.carousel-slider-section .slider-content h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 30px;
    letter-spacing: 1px;
    color: orange;
    position: relative;
    margin-left: 35px;
}
.new-style-02.carousel-slider-section .slider-content h4:before {
    position: absolute;
    content: "";
    top: -11px;
    left: -25px;
    background: orange;
    width: 4px;
    height: 48px;
}
/*-----Feature section style ------*/
.feature-translate {
    position: relative;
    margin-top: -40px;
    z-index: 1;
}
.feature-content {
    background: orange;
    padding: 35px 25px;
    margin-bottom: 30px;
}
.feature-content .feature-icon {
    float: left;
    margin-right: 20px;
}
.feature-content .feature-icon i {
    color: #fff;
    font-size: 30px;
    width: 55px;
    height: 55px;
    display: inline-block;
    background: #c216db;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
}
.feature-content-txt h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 5px;
}
.feature-content-txt p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.feature-content.style-2 {
    background: #c216db;
}
.feature-content.style-2 .feature-icon i {
    background-color: orange;
}

/*-----Feature section style-Two------*/
.feature-section.style-two .feature-margin-top {
    margin-top: -80px;
}
.feature-section.style-two .single-feature {
    margin-bottom: 30px;
    transition: 0.5s;
    text-align: left;
    padding: 45px 33px 35px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.11);
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: #fff;
}
.feature-section.style-two .single-feature::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    z-index: -1;
    transition: 0.5s;
    background: orange;
    border-radius: 5px;
}
.feature-section.style-two .single-feature:hover::after {
    height: 100%;
}
.feature-section.style-two .feature-icon i {
    font-size: 23px;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    width: 60px;
    height: 60px;
    background: orange;
    line-height: 60px;
    display: inline-block;
    border-radius: 5px;
}
.feature-section.style-two .single-feature:hover .feature-icon i {
    box-shadow: 0px 0px 42px 0px rgba(0, 0, 0, 0.22);
    background: #fff;
    color: orange;
}
.feature-section.style-two .feature-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 29px 0 11px;
    transition: 0.5s;
}
.feature-section.style-two .feature-title {
    margin: 0px 0 12px;
}
.feature-section.style-two .single-feature:hover .feature-title h4 {
    color: #fff;
}
.feature-section.style-two .feature-content-txt p {
    color: inherit;
    font-size: 16px;
    text-transform: none;
    transition: 0.5s;
}
.feature-section.style-two .single-feature:hover .feature-content-txt p {
    color: #fff;
}
.single-feature.style-twoo .feature-icon i {
    background-color: #eb6b3d;
}
.single-feature.style-three .feature-icon i {
    background-color: #c216db;
}
.single-feature.style-four .feature-icon i {
    background-color: #fd8424;
}

/*-----Feature section style-Three------*/
.feature-section.style-three {
    background: #eff2f7;
}
.feature-section.style-three .services-single-feature {
    margin-bottom: 30px;
    transition: 0.5s;
    z-index: 999;
    text-align: center;
    padding: 50px 33px 10px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
}
.feature-section.style-three .services-single-feature.style-two {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.11);
}
.feature-section.style-three .services-single-feature::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    z-index: -1;
    transition: 0.5s;
    background: orange;
    border-radius: 5px;
}
.feature-section.style-three .services-single-feature:hover::after {
    height: 100%;
}
.feature-section.style-three .service-icon i {
    font-size: 23px;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    width: 65px;
    height: 65px;
    background: transparent;
    line-height: 63px;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid orange;
    position: relative;
    z-index: 1;
}
.feature-section.style-three .services-single-feature:hover .service-icon i {
    color: orange;
    border-color: #fff;
}
.feature-section.style-three .service-icon i::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 3px;
    margin: 5px;
    transition: 0.5s;
    background: orange;
}
.feature-section.style-three
    .services-single-feature:hover
    .service-icon
    i::after {
    background: #fff;
}
.feature-section.style-three .service-title h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 29px 0 11px;
    transition: 0.5s;
}
.feature-section.style-three .services-single-feature:hover .service-title h5 {
    color: #fff;
}
.feature-section.style-three .service-content-txt p {
    margin-bottom: 30px;
    transition: 0.5s;
}
.feature-section.style-three
    .services-single-feature:hover
    .service-content-txt
    p {
    color: #fff;
}

/*-----Feature section style-Four------*/
.feature-section.style-four .single-feature {
    background: #fff;
    text-align: center;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    border-radius: 40px 0 40px 40px;
    padding: 35px 30px;
    transition: 0.4s;
    margin-bottom: 30px;
}
.feature-margin-top {
    margin-top: 30px;
}
.feature-section.style-four .single-feature:hover {
    background: orange;
    transform: translateY(-10px);
}
.feature-section.style-four .feature-icon i {
    background: #edf4fc;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    line-height: 80px;
    font-size: 31px;
    color: orange;
    margin-bottom: 20px;
    transition: 0.4s;
    display: inline-block;
    border-radius: 22px 0 22px 22px;
}
.feature-section.style-four .single-feature:hover .feature-icon i {
    background: #fff;
    color: orange;
}
.feature-section.style-four .feature-title {
    margin-bottom: 0;
}
.feature-section.style-four .feature-title h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0 11px;
    transition: 0.5s;
}
.feature-section.style-four .single-feature:hover .feature-title h4 {
    color: #fff;
}
.feature-section.style-four .feature-content-txt p {
    color: inherit;
    font-size: 16px;
    text-transform: none;
    transition: 0.5s;
}
.feature-section.style-four .single-feature:hover .feature-content-txt p {
    color: #fff;
}

/*-----Feature section style-Five(Flip-Box)------*/
.feature-section.style-five .margin-top {
    margin-top: -80px;
}
.grid-feature-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 30px;
    margin: auto;
}
.single-feature-flipbox {
    position: relative;
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.1);
    height: 215px;
    width: 207px;
    transition: 0.8s;
    z-index: 9;
}
.single-feature-flipbox .front,
.single-feature-flipbox .back {
    background: #ffffff;
    z-index: 1;
    transition: 0.8s;
    position: absolute;
    height: 100%;
    width: 100%;
}
.single-feature-flipbox .front {
    z-index: 1;
    padding: 0 20px;
}
.single-feature-flipbox .back {
    z-index: 0;
    transform: rotateY(180deg);
    transition: 0.8s;
}
.single-feature-flipbox .front-content {
    width: 100%;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
}
.front .front-content .feature-icon i {
    color: orange;
    font-size: 50px;
}
.single-feature-flipbox .front-content h4 {
    margin: 5px 0 20px;
    font-size: 18px;
    float: left;
    color: #232323;
    text-transform: uppercase;
    font-weight: 700;
}
.single-feature-flipbox .back-content {
    padding: 30px 15px;
    text-align: center;
    position: relative;
    transform: translateY(-50%);
    top: 50%;
}
.single-feature-flipbox .back-content .btn-common.feature-btn a {
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 3px;
    padding: 13px 15px;
}
.single-feature-flipbox:hover {
    transform: rotateY(180deg);
}
.single-feature-flipbox:hover .front {
    z-index: 0;
}
.single-feature-flipbox:hover .back {
    z-index: 1;
}

/*-----Feature section style-SIX------*/
.feature-section.style-six .single-feature {
    padding: 35px 25px;
    margin-bottom: 30px;
    background: #ffffff;
    border: 1px solid orange;
}
.feature-section.style-six .feature-content {
    background: #fff;
    padding: 0 !important;
    margin-bottom: 0;
}
.feature-section.style-six .feature-icon {
    margin-right: 20px;
}
.feature-section.style-six .feature-icon i {
    color: #fff;
    font-size: 30px;
    width: 55px;
    height: 55px;
    display: inline-block;
    background: #c216db;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
}
.feature-section.style-six .feature-title {
    margin-bottom: 0;
}
.feature-section.style-six .feature-title h4 {
    color: #232323;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 5px;
}
.single-feature.style-two .feature-icon i {
    background-color: orange;
}

/*-----Flip Box Style-Two------*/
.flip-box-style-two .single-feature-flipbox {
    margin-bottom: 30px;
    height: 230px;
    width: 260px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 92;
}
.flip-box-style-two .single-feature-flipbox .front-content h4 {
    display: inline-block;
    float: none;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    color: #fff;
    font-size: 23px;
    text-transform: capitalize;
}
.btn-common.flipbox-btn a {
    font-size: 16px;
    background: #fff;
    color: #c216db;
    padding: 15px 25px;
}
.btn-common.flipbox-btn:hover a {
    background: #c216db;
    color: #fff;
}
.single-feature-flipbox.style-one .front {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        rgba(255, 255, 255, 0) url(../images/f1.jpg) no-repeat center/ cover;
}
.single-feature-flipbox.style-two .front {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        rgba(255, 255, 255, 0) url(../images/f2.jpg) no-repeat center/ cover;
}
.single-feature-flipbox.style-three .front {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        rgba(255, 255, 255, 0) url(../images/f3.jpg) no-repeat center/ cover;
}
.single-feature-flipbox.style-four .front {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        rgba(255, 255, 255, 0) url(../images/f4.jpg) no-repeat center/ cover;
}
.flip-box-style-two .single-feature-flipbox .back {
    background: linear-gradient(
            rgba(119, 68, 217, 0.92),
            rgba(119, 68, 217, 0.92)
        ),
        #0c5adb url(../images/b1.jpg) no-repeat center/ cover;
}

/*-----Flip Box Style-Three------*/
.flip-box-style-three .single-feature-flipbox {
    margin-bottom: 30px;
    height: 300px;
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
}
.flip-box-style-three .single-feature-flipbox .back-content {
    padding: 0px 15px;
}
.flip-box-style-three .single-feature-flipbox .front-content h4 {
    display: inline-block;
    float: none;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
    color: #fff;
    font-size: 23px;
    text-transform: capitalize;
}
.flip-box-style-three .btn-common.flipbox-btn a {
    font-size: 17px;
    background: #fff;
    color: orange;
}
.flip-box-style-three .btn-common.flipbox-btn:hover a {
    background: #fff;
    color: orange;
}
.single-feature-flipbox.style-five .front,
.single-feature-flipbox.style-five .back {
    background: linear-gradient(
            rgba(119, 68, 217, 0.7),
            rgba(119, 68, 217, 0.7)
        ),
        transparent url(../images/f1.jpg) no-repeat center/ cover;
}
.single-feature-flipbox.style-six .front,
.single-feature-flipbox.style-six .back {
    background: linear-gradient(
            rgba(119, 68, 217, 0.7),
            rgba(119, 68, 217, 0.7)
        ),
        transparent url(../images/f3.jpg) no-repeat center/ cover;
}
.single-feature-flipbox.style-seven .front,
.single-feature-flipbox.style-seven .back {
    background: linear-gradient(
            rgba(119, 68, 217, 0.7),
            rgba(119, 68, 217, 0.7)
        ),
        transparent url(../images/f2.jpg) no-repeat center/ cover;
}

/*-----Flip Box Style-four------*/
.flip-box-style-four .single-feature-flipbox {
    margin-bottom: 30px;
    height: 250px;
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    border: 1px solid #0c5adb;
    box-shadow: none;
    z-index: 91;
}
.flip-box-style-four .single-feature-flipbox.rotate-x:hover {
    transform: rotateX(180deg);
}
.flip-box-style-four .single-feature-flipbox .feature-icon i {
    color: #0c5adb;
    font-size: 40px;
    margin-top: 4px;
}
.flip-box-style-four .single-feature-flipbox .front,
.flip-box-style-four .single-feature-flipbox .back {
    padding: 35px 15px;
}
.flip-box-style-four .single-feature-flipbox.rotate-x .back {
    transform: rotateX(-180deg);
}
.flip-box-style-four .single-feature-flipbox .front-content,
.flip-box-style-four .single-feature-flipbox .back-content {
    padding: 0;
}
.flip-box-style-four .single-feature-flipbox .front-content h4 {
    float: none;
    color: #444;
    font-size: 23px;
    text-transform: capitalize;
    margin: 0 0 11px;
}
.flip-box-style-four .single-feature-flipbox .back-content-txt h4 {
    font-size: 23px;
    text-transform: capitalize;
    margin-bottom: 20px;
    margin-top: 0;
}
.flip-box-style-four .single-feature-flipbox .back-content-txt p {
    margin-bottom: 30px;
}
.flip-box-style-four .btn-common.flipbox-btn a {
    font-size: 15px;
    text-transform: capitalize;
    color: #00247e;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 11px 20px;
    font-family: open-sans;
}
.flip-box-style-four .btn-common.flipbox-btn:hover a {
    background: #00247e;
    color: #fff;
}
.flip-box-style-four .single-feature-flipbox.style-one .front,
.flip-box-style-four .single-feature-flipbox.style-two .front,
.flip-box-style-four .single-feature-flipbox.style-three .front {
    background: #fff;
}
.flip-box-style-four .single-feature-flipbox.style-one .back {
    background: linear-gradient(
            rgba(12, 90, 219, 0.92),
            rgba(12, 90, 219, 0.92)
        ),
        #0c5adb url(../images/b1.jpg) no-repeat center/ cover;
}
.flip-box-style-four .single-feature-flipbox.style-two .back {
    background: linear-gradient(
            rgba(12, 90, 219, 0.92),
            rgba(12, 90, 219, 0.92)
        ),
        #0c5adb url(../images/f3.jpg) no-repeat center/ cover;
}
.flip-box-style-four .single-feature-flipbox.style-three .back {
    background: linear-gradient(
            rgba(12, 90, 219, 0.92),
            rgba(12, 90, 219, 0.92)
        ),
        #0c5adb url(../images/f1.jpg) no-repeat center/ cover;
}

.flip-box-style-four.service-details .single-feature-flipbox {
    height: 295px;
}
.flip-box-style-four.service-details .single-feature-flipbox .front {
    padding: 35px 20px;
}
.flip-box-style-four.service-details .front-content-txt {
    transform: translateY(-50%);
    top: 50%;
    position: relative;
}

/*-----Feature section style-Seven------*/
.feature-section.style-seven {
    background: linear-gradient(
        rgba(119, 68, 217, 0.89),
        rgba(119, 68, 217, 0.89)
    );
}
.feature-section.style-seven .single-feature {
    text-align: center;
    background: #fff;
    border-radius: 6px;
    padding: 30px 25px 40px;
    transition: 0.3s;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    overflow: hidden;
}
.feature-section.style-seven .single-feature::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    content: "";
    background: #c216db;
    transition: 0.3s;
    z-index: -1;
}
.feature-section.style-seven .single-feature:hover::before {
    width: 100%;
}
.feature-section.style-seven .section-head h5 {
    color: #fff;
}
.feature-section.style-seven .feature-content-inner {
    padding-left: 0;
    padding-top: 10px;
}
.feature-section.style-seven .feature-icon {
    padding: 20px 0;
}
.feature-section.style-seven .feature-icon i {
    font-size: 50px;
}
.feature-section.style-seven .single-feature:hover .feature-icon i {
    color: #fff;
}
.feature-section.style-seven .feature-title {
    margin-bottom: 0;
}
.feature-section.style-seven .feature-title h4 {
    font-size: 21px;
    font-weight: 700;
    transition: 0.5s;
}
.feature-section.style-seven .single-feature:hover .feature-title h4 {
    color: #fff;
}
.feature-section.style-seven .content-txt p {
    margin-bottom: 20px;
    transition: 0.5s;
}
.feature-section.style-seven .single-feature:hover .content-txt p {
    color: #fff;
}
.feature-section.style-seven .read-more-btn a {
    font-size: 16px;
    color: #232323;
    font-weight: 700;
    transition: 0.5s;
}
.feature-section.style-seven .single-feature:hover .read-more-btn a {
    color: #fff;
}
.feature-section.style-seven .read-more-btn a i {
    font-size: 14px;
    font-weight: 600;
    margin-left: 25px;
    transition: 0.5s;
}
.feature-section.style-seven .single-feature:hover .read-more-btn a i {
    color: #fff;
}

/*-----Feature section style-Eight------*/
.feature-section.style-eight .feature-content {
    background: #1f1f1f;
    padding: 35px 25px;
}
.feature-section.style-eight .feature-icon i {
    background: orange;
    transition: 0s;
}
.feature-section.style-eight .feature-content:hover {
    background: orange;
}
.feature-section.style-eight .feature-content:hover .feature-icon i {
    background: #fff;
    color: orange;
}

/*-----Feature section style-Nine------*/
.feature-section.style-nine {
    background: #eff2f7;
}
.feature-section.style-nine .services-single-feature {
    margin-bottom: 30px;
    transition: 0.5s;
    z-index: 999;
    text-align: center;
    padding: 50px 33px 10px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 5px;
}
.feature-section.style-nine .services-single-feature::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 0%;
    width: 100%;
    z-index: -1;
    transition: 0.5s;
    background: orange;
    border-radius: 5px;
}
.feature-section.style-nine .services-single-feature:hover::after {
    height: 100%;
}
.feature-section.style-nine .service-icon i {
    font-size: 35px;
    color: #fff;
    text-align: center;
    transition: 0.5s;
    width: 65px;
    height: 65px;
    background: orange;
    line-height: 63px;
    display: inline-block;
    border-radius: 3px;
    position: relative;
    z-index: 1;
}
.feature-section.style-nine .services-single-feature:hover .service-icon i {
    color: orange;
    background: #fff;
}
.feature-section.style-nine .service-title h5 {
    font-size: 20px;
    font-weight: 700;
    margin: 29px 0 11px;
    transition: 0.5s;
}
.feature-section.style-nine .services-single-feature:hover .service-title h5 {
    color: #fff;
}
.feature-section.style-nine .service-content-txt p {
    margin-bottom: 30px;
    transition: 0.5s;
}
.feature-section.style-nine
    .services-single-feature:hover
    .service-content-txt
    p {
    color: #fff;
}

/*-----Feature section style-Ten------*/
.feature-section.style-ten .single-feature {
    text-align: center;
    transition: 0.5s;
    padding: 40px 35px 20px 35px;
    margin-bottom: 30px;
}
.feature-section.style-ten .single-feature:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.feature-section.style-ten .feature-content {
    background: transparent;
    padding: 15px 0 0;
}
.feature-section.style-ten .feature-icon i {
    color: #232323;
}
.feature-section.style-ten .feature-title {
    margin: 0 0 10px;
}
.feature-section.style-ten .feature-title h4 {
    color: #444;
}

/*-----Feature section style-Eleven------*/
.feature-section.style-eleven {
    background: #f7f9fe;
}
.feature-section.style-eleven .single-feature {
    text-align: center;
    border-radius: 5px;
    padding-bottom: 30px;
    overflow: hidden;
}
.feature-section.style-eleven .single-feature img {
    width: 100%;
    transition: 0.5s;
}
.feature-section.style-eleven .single-feature:hover img {
    transform: scale(1.2) rotate(3deg);
}
.feature-section.style-eleven .single-feature .feature-content {
    padding: 10px 10px 0 10px;
    position: relative;
    background: #fff;
}
.feature-section.style-eleven .single-feature h4 {
    font-weight: 800;
    margin-bottom: 10px;
}
.feature-section.style-eleven .single-feature p {
    padding-bottom: 55px;
}
.feature-section.style-eleven .single-feature .feature-btn a {
    position: absolute;
    background: orange;
    color: #fff;
    height: 45px;
    width: 85px;
    line-height: 45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
    border-radius: 30px;
    z-index: 1;
    transition: 0.5s;
}
.feature-section.style-eleven .single-feature:hover .feature-btn a {
    width: 110px;
}
.feature-section.style-eleven .single-feature .feature-btn::after {
    border-radius: 15px;
    position: absolute;
    background: orange;
    height: 2px;
    width: 0;
    left: 0;
    bottom: 0;
    content: "";
    right: 0;
    margin: 0 auto;
    opacity: 0.6;
    transition: 0.5s;
}
.feature-section.style-eleven .single-feature:hover .feature-btn::after {
    width: 85%;
}
.feature-section.style-eleven.background-two {
    z-index: 9;
    position: relative;
}
.feature-section.style-eleven.background-two .single-feature {
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
/* style-new-03 */
.feature-section.new-style-01.new-style-03 {
    margin-top: -357px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.new-style-03.new-style-01 .card-front {
    transform: rotateX(0deg);
    background: #fff;
    border-radius: 5px;
    padding: 15px 0 23px;
}
.new-style-03.new-style-01 .card-flip:hover .card-back {
    transform: rotateX(0deg);
}
.new-style-03.new-style-01 .card-back {
    transform: rotateX(180deg);
    position: absolute;
    top: 0;
    background: linear-gradient(
            rgba(194, 22, 219, 0.92),
            rgba(194, 22, 219, 0.92)
        ),
        #c216db url(../images/b1.jpg) center center/cover no-repeat scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
}
.new-style-03.new-style-01 .card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    height: 91%;
    margin: 0;
    display: flex;
    width: 263px;
}
.new-style-03.new-style-01 .card-front {
    transform: rotateY(0deg);
    background: #fff;
    border-radius: 5px;
    padding: 15px 0 23px;
    box-shadow: 0px 0px 48px 0px rgb(162 162 162 / 50%);
}
.flip-style-02 {
    margin-top: 104px;
}
.new-style-03.new-style-01 .style2.card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    height: 68%;
    margin: 0;
    display: flex;
    width: 263px;
}
/* Feature-Area */
.style4.call-area.feature-area {
    background: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 54px;
    padding-bottom: 54px;
}
.call-area.feature-area {
    background: url(../images/banner.jpg);
    padding-top: 102px;
    padding-bottom: 245px;
}
.feature-area .feature-content-2 h2 {
    font-size: 40px;
    color: #fff;
}
.feature-area .feature-btn a {
    padding: 13px 26px;
    color: #fff;
    background: orange;
    display: inline-block;
    font-weight: 500;
    border-radius: 3px;
    margin-top: 50px;
    transition: 0.5s;
}
.feature-area .feature-btn a:hover {
    background: #c216db;
}
.feature-area .row.feature-bg {
    background: #fff;
    box-shadow: 0 10px 50px 0 rgb(0 0 0 / 15%);
    margin-top: -193px;
    padding: 45px 30px 30px 30px;
    padding-bottom: 35px;
    margin-bottom: 78px;
    border-radius: 7px;
}
.new-style-03.new-style-01.pricing-section {
    padding-top: 85px;
    padding-bottom: 72px;
}
.feature-area .section-head p {
    margin-top: 61px;
}
.feature-area .feature-items-box {
    margin-bottom: 33px;
}
.feature-area .feature-content-text {
    margin-left: 20px;
}
.feature-area .feature-content-text h2 {
    font-size: 20px;
    color: #232323;
    font-weight: 700;
    margin-top: 0;
}
.feature-area .feature-content-text p {
    margin-top: 8px;
}
.feature-area .feature-icon i {
    color: #824aed;
    font-size: 50px;
    transition: 0.5s;
}
.feature-area .form-control::placeholder {
    color: #495057 !important;
}
.feature-area .form-control {
    border: 1px solid #e6e6e6 !important;
}
.feature-area .style-03.section-head h2 {
    font-size: 25px;
    margin-bottom: 9px;
}
.feature-area .style-03.section-head.style-2 p {
    width: 88%;
    margin: auto;
}
.feature-area .buttons .submit-button {
    background: orange !important;
    width: 100%;
    color: #fff !important;
}
.feature-area .buttons .submit-button:hover {
    background: #c216db !important;
}
.feature-area .form-area {
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 12%);
    padding: 45px 50px 46px;
    border-radius: 7px;
}
/* Feature-02 */
.feature-section.new-style-04 {
    margin-top: -307px !important;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.new-style-04.feature-section .card-flip {
    margin-bottom: 18px;
}
.new-style-04.feature-section .card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    height: 94%;
    margin: 0;
    display: flex;
    width: 270px;
}
.new-style-04.sticky-nav .header-src-btn {
    margin-top: 0 !important;
}
/* new style */
.new-style-4.feature-section {
    margin-top: 0 !important;
    padding-top: 85px;
    padding-bottom: 102px;
    position: relative;
    z-index: 1;
}

/*====================================================
--< Nivo Slider Area Css -->
======================================================*/
.nivo_slider_area {
    position: relative;
}
.nivo-caption {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.em_slider_inner {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9999;
}
#mainSlider img {
    width: 100%;
}
.em-slider-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 23px;
    text-transform: uppercase;
}
.em-slider-main-title {
    font-size: 120px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 800;
    display: block;
    margin: 0;
    line-height: 1.2;
}
.em-slider-sub-title {
    font-size: 33px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
    margin: 0;
}
.em-slider-text {
    width: 46%;
}
.em-nav-slider-title-center {
    color: #fff;
    font-size: 55px;
    font-weight: 800;
}
.em-nav-slider-title-centerspan {
    color: #0c5adb;
}
.em-slider-up-title {
    font-size: 38px;
    color: #fff;
    font-weight: 300;
    padding-bottom: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.em-slider-sub-em-title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
}
.em-slider-descript {
    font-size: 17px;
    margin-bottom: 20px;
    width: 59%;
    z-index: 999;
    font-weight: 400;
    color: #ddd;
    margin-top: 10px;
}
.text-left .em-slider-descript {
    margin-left: 0;
    margin-right: auto;
}
.text-center .em-slider-descript {
    margin: 11px auto 28px;
}
.text-right .em-slider-descript {
    margin-right: 0;
    margin-left: auto;
}
.text-center {
    text-align: center;
}
.em-slider-button.wow.bounceInUp.em-button-button-area.animated {
    padding-top: 19px;
}
.em-button-button-area a {
    border: 1px solid #ccc;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    margin-right: 10px;
    margin-top: 12px;
    padding: 15px 41px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: 999;
    letter-spacing: 1px;
    border-radius: 5px;
}
a.em-active-button {
    background: orange;
    border-color: orange;
}
.em-button-button-area a:hover {
    color: orange;
    background: #fff;
    border-color: #fff;
}

a.em-active-button:hover {
    background: #fff;
    border-color: #fff;
}

.em-slider-half-width {
    width: 50%;
}

.em-slider-left {
    padding-right: 30px;
}

.em-slider-right {
    padding-left: 30px;
}

.em-slider-full-width {
    width: 85%;
}

.em-slider-half-width .em-slider-descript {
    width: 100%;
}

/*--directionNav--**/
.em-nivo-slider-wrapper .nivo-directionNav a {
    top: 50%;
    transform: translateY(-50%);
    height: 75px;
    width: 50px;
    line-height: 56px;
    text-align: center;
    display: block;
    border-radius: 50%;
    color: #0c5adb;
    font-size: 40px;
    left: 0;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    border-radius: 0;
    background: #fff;
    margin-right: 30px;
}
.em-nivo-slider-wrapper .nivo-directionNav .nivo-nextNav {
    left: auto;
    right: 0;
}
.em-nivo-slider-wrapper .nivo-directionNav a:hover {
    background: orange;
    border-color: orange;
    color: #fff;
}
.em-nivo-slider-wrapper:hover .nivo-directionNav a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    visibility: visible;
    left: 50px;
}
.em-nivo-slider-wrapper:hover .nivo-directionNav .nivo-nextNav {
    left: auto;
    right: 50px;
}
.em-nivo-slider-wrapper .nivo-controlNav {
    bottom: 50px;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 9;
    display: none;
}
.em-nivo-slider-wrapper .nivo-controlNav a {
    background: #000 none repeat scroll 0 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 25px;
    margin: 0 5px;
    width: 25px;
    color: #fff;
    line-height: 25px;
}
.nivo-directionNav a {
    position: absolute;
    top: 45%;
    z-index: 9;
    cursor: pointer;
    font-size: 30px;
    color: orange;
    background: #fff;
    padding: 15px 15px;
    opacity: 0;
}
.em-nivo-slider-wrapper .nivo-controlNav a:hover,
.em-nivo-slider-wrapper .nivo-controlNav a.active {
    background: orange;
    background-repeat: no-repeat;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.cd-headline.clip span {
    display: inline-block;
    padding: 0 0 0;
}
.cd-headline.clip span b {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
}
/*-----About section style ------*/

.about-section.style-two .about-thumb-section {
    margin: 0 -80px 0 65px;
}
.about-thumb-section {
    position: relative;
}
.about-thumb {
    max-width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 30px 30px;
}
.about-circle-bgs {
    position: absolute;
    bottom: 15px;
    right: 76px;
    z-index: -2;
    animation: alltuchtopdown 5.5s ease-in-out 0s infinite alternate;
}
.about-section.upper .about-feature-icon.icon-two {
    float: left;
    margin-right: 20px;
}
.about-section.upper .about-feature-icon.icon-two i {
    font-size: 25px;
    color: #fff;
    background: orange;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin-top: -12px;
}
.about-section.upper .about-feature-content-title h4 {
    color: #232323;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 26px;
}
.about-circle-bg img {
    width: 100%;
}
.about-circle-bg {
    animation: alltuchtopdown 5.5s ease-in-out 0s infinite alternate;
    width: 416px;
    position: absolute;
    bottom: -76px;
    z-index: 1;
    left: -72px;
}
@keyframes alltuchtopdown {
    0% {
        bottom: -76px;
    }
    25% {
        bottom: -46px;
    }
    50% {
        bottom: -76px;
    }
    75% {
        bottom: -46px;
    }
    100% {
        bottom: -76px;
    }
}
.section-head h5 {
    color: orange;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.section-head h2 {
    font-size: 39px;
    margin-bottom: 0px;
    text-transform: capitalize;
    margin-top: 0;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -1px;
}
.section-head h2 span {
    color: orange;
}
.animated-bar {
    position: relative;
    display: block;
}
.animated-bar span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 80px;
    height: 5px;
    background: #aec6ef;
    border-radius: 5px;
}
.animated-bar span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 10px;
    width: 10px;
    bottom: -22px;
    border-radius: 50%;
    background: orange;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG;
}
@keyframes MOVE-BG {
    0% {
        left: 0px;
    }
    100% {
        left: 80px;
    }
}

.animated-bar-2 {
    position: relative;
    display: block;
}
.animated-bar-2 span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100px;
    height: 4px;
    background: #aec6ef;
    border-radius: 5px;
}
.animated-bar-2 span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 8px;
    width: 8px;
    bottom: -12px;
    border-radius: 50%;
    background: #0c5adb;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: MOVE-BG-2;
}
@keyframes MOVE-BG-2 {
    0% {
        left: 0px;
    }
    100% {
        left: 100px;
    }
}
.about-content-container {
    padding-left: 25px;
}
.about-content-container.no-paddig {
    padding-left: 0;
}
.about-content-txt p {
    margin-bottom: 20px;
}
.about-feature-icon i {
    color: orange;
    font-size: 40px;
}
.about-feature-icon.icon-two i {
    font-size: 50px;
}
.about-feature-content-title h4 {
    color: #232323;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.about-feature-content {
    margin-left: 20px;
}
.btn-common.btn-about {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    text-align: center;
    margin-top: 30px;
    height: auto;
    display: inline-block;
}
.btn-common.btn-about a {
    font-size: 16px;
    padding: 16px 20px;
}
.about-sign {
    display: inline-block;
}
.about-feature {
    margin-left: 15px;
}
.about-section.upper .about-feature {
    margin-left: 0;
}

/*-----About section style Two------*/
.about-content .bold-txt {
    color: #616161;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 33px;
}
.about-section.style-two .btn-common.btn-about {
    margin-top: 8px;
}
.back-shape {
    position: absolute;
    z-index: 1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.back-shape-one {
    top: -90px;
    left: -50px;
}
.back-shape-two {
    top: -140px;
    right: 70px;
}
.back-shape-three {
    bottom: -120px;
    left: -22px;
}
.back-shape-four {
    bottom: -100px;
    right: -100px;
}

.back-shape-one {
    animation-name: ups-down-one;
}
@keyframes ups-down-one {
    0% {
        top: -90px;
    }
    25% {
        top: -105px;
    }
    50% {
        top: -90px;
    }
    75% {
        top: -75px;
    }
    100% {
        top: -90px;
    }
}
.back-shape-two {
    animation-name: ups-down-two;
}
@keyframes ups-down-two {
    0% {
        top: -140px;
    }
    25% {
        top: -155px;
    }
    50% {
        top: -140px;
    }
    75% {
        top: -125px;
    }
    100% {
        top: -140px;
    }
}
.back-shape-three {
    animation-name: ups-down-three;
}
@keyframes ups-down-three {
    0% {
        bottom: -120px;
    }
    25% {
        bottom: -105px;
    }
    50% {
        bottom: -120px;
    }
    75% {
        bottom: -135px;
    }
    100% {
        bottom: -120px;
    }
}
.back-shape-four {
    animation-name: ups-down-four;
}
@keyframes ups-down-four {
    0% {
        bottom: -100px;
    }
    25% {
        bottom: -85px;
    }
    50% {
        bottom: -100px;
    }
    75% {
        bottom: -115px;
    }
    100% {
        bottom: -100px;
    }
}

/*-----About section style Three------*/
.heading-number {
    font-size: 136px;
    display: inline;
    font-weight: 800;
    color: orange;
    float: left;
    line-height: 1;
    margin-right: 15px;
}
.heading-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    color: #232323;
    display: inline;
}
.about-section.style-three .about-content-txt p {
    font-size: 18px;
}
.about-content-txt.style-two p {
    font-size: 18px;
}
.about-section.style-three .about-feature {
    padding-left: 15px;
}
.about-section.style-three .about-feature ul li {
    color: #232323;
    font-weight: 500;
    padding: 5px 0px;
    font-size: 17px;
    list-style: circle;
}
.about-section.style-three .about-feature ul li::marker {
    color: orange;
}

/*-----About section style four------*/
.about-section.style-four .about-content-txt p {
    font-size: 18px;
    margin-bottom: 35px;
}

/*-----About section style five------*/
/*Change in html */
.about-section.style-five .change-position {
    margin-top: -250px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    background: #fff;
}
.about-section.style-five .about-content-container {
    padding-left: 10px;
    padding-right: 15px;
}
.about-section.style-five .about-content-container.container-padding {
    padding-left: 60px;
}
/* New Demo Style 01 */
.new-style-01.about-section {
    background: url(../images/about.jpg);
    background-repeat: no-repeat;
}
.new-style-01.about-section .pb-60 {
    padding-bottom: 54px;
}
.new-style-01.about-section .about-items {
    background: #fff;
    box-shadow: 0px 0px 30px 0px rgb(42 22 139 / 12%);
    padding: 33px 23px 26px;
    margin-bottom: 20px;
}
.new-style-01.about-section .about-icon i {
    font-size: 30px;
    width: 55px;
    line-height: 55px;
    height: 55px;
    background: #c216db;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}
.new-style-01.about-section .about-content-2 h2 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 9px;
}
.new-style-01.about-section .about-content-2 {
    margin-left: 20px;
    margin-top: -10px;
}
.new-style-01.about-section .about-content-2 p {
    width: 88%;
}
.new-style-01.about-section .about-content-txt p {
    margin-bottom: 35px;
}
/* new-style-02 */
.new-style-02.about-section .about-feature-icon i {
    color: orange;
    font-size: 16px;
}
.new-style-02.about-section .about-feature-content {
    margin-left: 10px;
    margin-bottom: 12px;
}
.new-style-02.about-section .sign-title h5 {
    font-size: 18px;
}
.new-style-02.about-section .border-top {
    border-top: 1px solid #dee2e6 !important;
    padding-bottom: 0;
    margin-top: 25px;
    padding-top: 30px;
}
.new-style-02.about-section .btn-common.btn-about {
    font-size: 16px;
}
.new-style-02.about-section .about-content-txt p a {
    color: orange;
}
.new-style-02.about-section .since h1 {
    text-align: right;
    margin-right: 27px;
    margin-top: -15px;
}
.new-style-02.about-section .since h1 span {
    color: orange;
}
.new-style-02.about-section .btn-common.btn-about {
    margin-top: 7px;
}
.new-style2-02.about-section {
    background: url(../images/about.jpg);
    padding-top: 30px;
    padding-bottom: 75px;
    margin-top: 0;
}
.new-style2-02.about-section .about-thumb {
    margin-top: -101px;
}
/* style-04 */
.style-02.counter-title h4 {
    width: 100% !important;
}
.about-content-txt-2 {
    margin-bottom: 36px;
}
/* style-05 */
.new-style-05.about-section .about-feature-icon i {
    color: orange;
    font-size: 40px;
}
.new-style-05.about-section .about-feature-icon {
    margin-right: 10px;
}
.new-style-05.new-style-02.choose-us-section {
    background: linear-gradient(rgba(0, 23, 60, 0.86), rgba(0, 23, 60, 0.86)),
        transparent url(../images/fbg1.jpg) center center/cover no-repeat scroll;
    padding-top: 97px;
    padding-bottom: 200px;
}
.choose-us-section.new-style-05 .choose-content h5 {
    color: orange;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
}
.choose-us-section.new-style-05 .choose-content h5::before {
    position: absolute;
    left: 145px;
    top: 3px;
    height: 3px;
    width: 70px;
    background: orange;
    content: "";
}
.choose-us-section.new-style-05 .choose-text p {
    color: #fff;
    margin-top: 40px;
}
.choose-us-section.new-style-05 .choose-content h1 {
    color: #fff;
    font-size: 40px;
    margin-top: 0;
}
.new-style-05.new-style-02.service-section {
    position: relative;
    z-index: 1;
    background: #fff;
}
.new-style-05.new-style-02.service-section .row.choose-bg {
    margin-top: -225px;
    z-index: 1;
    position: relative;
}
.new-style-05.new-style-02.service-section .service-items {
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
}
.new-style-05.new-style-02.service-section .service-list {
    margin-top: 28px;
}
.new-style-05.new-style-02.service-section .service-list ul li i {
    color: orange;
    margin-right: 6px;
}
.new-style-05.new-style-02.service-section .service-list ul li {
    font-size: 16px;
    margin-bottom: 10px;
}
nav.active-nav {
    margin-right: -100px;
}
/*-----SKILL SECTION STYLE on about section------*/
.skill-item {
    margin-top: 25px;
    position: relative;
}
.skill-title,
.skill-percentage {
    color: #232323;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}
.skill-percentage {
    position: absolute;
    top: 0;
    right: 0;
}
.count-box {
    float: left;
}
.bar-inner {
    width: 100%;
    height: 6px;
    background: #d9d9d9;
    border-radius: 5px;
    position: relative;
}
.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 6px;
    background: rgb(119, 68, 217);
    border-radius: 5px;
    transition: 3s;
}
/*-----SKILL SECTION STYLE TWO------*/
.about-skills.style-two .skill-item {
    margin-top: 45px;
}
.about-skills.style-two .skill-item:nth-child(1) {
    margin-top: -20px;
}

.about-skills.style-two .skill-title {
    font-size: 18px;
}
/*-----About section style Six------*/
.about-feature-section {
    padding: 50px 30px 50px 40px;
    box-shadow: 0px 0px 35.77px 13.23px rgba(11, 91, 224, 0.08);
}
.about-single-feature .feature-icon i {
    font-size: 40px;
}
.feature-content-inner {
    padding-left: 20px;
}
.feature-content-inner h4 {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 15px;
    margin-top: 0;
}
.btn-common.btn-about-left {
    margin-left: 60px;
}
.btn-common.btn-about-left a {
    font-size: 15px;
    padding: 15px 18px;
}
.about-section.style-six .about-content-container {
    padding-left: 25px;
}
.about-block-txt {
    padding: 26px 30px;
    font-size: 19px;
    border-left: 4px solid orange;
    color: #232;
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 30px;
}
.about-intro-title h4 {
    font-size: 18px;
}
/*-----About section style Seven------*/
.about-section.style-seven .video {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 0;
    right: 0;
}
.section-head.style-three h1 {
    font-size: 42px;
    text-transform: capitalize;
    margin-top: 0px;
    margin-bottom: 8px;
}
.section-head.style-three h6 {
    font-weight: bolder;
    color: #616161;
    font-size: 20px;
}
.about-section.style-seven .skill-title,
.skill-percentage {
    font-size: 18px;
}
.about-section.style-seven .progress-line {
    height: 8px;
}
/*-----Choose Us section style------*/
.choose-us-section {
    background: #271151;
    position: relative;
}
.section-head.style-2 {
    text-align: center;
}
.section-head.style-2 .animated-bar span::before {
    bottom: -5px;
}
.section-head.style-2 .animated-bar span::after {
    bottom: -7px;
}
.section-head.style-2 .animated-bar {
    display: inline-block;
    left: -40px;
}
.choose-us-single-feature {
    margin-bottom: 30px;
    position: relative;
}
.choose-us-feature-wrapper {
    background: #3a1e71;
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.choose-us-feature-title h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 14px;
}
.choose-us-feature-txt p {
    transition: 0.4s;
    color: rgba(255, 255, 255, 0.8);
}
.choose-us-icon {
    margin-top: 20px;
}
.choose-us-icon i {
    color: #fff;
    font-size: 50px;
    display: inline-block;
    text-align: center;
}
.choose-us-btn a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1px;
}
.choose-us-number h2 {
    opacity: 0.3;
    font-size: 38px;
    position: absolute;
    right: 13px;
    bottom: 0;
}
.choose-us-number::before {
    position: absolute;
    content: "";
    right: -41px;
    bottom: -41px;
    width: 121px;
    height: 121px;
    background: orange;
    border-radius: 100%;
}
.choose-us-content::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #c216db;
    transition: 0.5s;
    z-index: -1;
}
.choose-us-single-feature:hover .choose-us-content::after {
    height: 100%;
}

/*-----Choose Us section style Two------*/
.choose-us-single-feature.style-two {
    padding: 40px 46px 79px;
    text-align: center;
    position: relative;
    border-radius: 5px;
    z-index: 1;
}
.choose-us-content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(
        360deg,
        rgba(119, 68, 217, 0.83),
        rgba(194, 22, 219, 0.89)
    );
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}
.choose-us-content:hover::after {
    opacity: 1;
    height: 100%;
}
#choose-us-feature-one {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        transparent url(../images/ch-bg-1.jpg) center center/cover no-repeat
            scroll;
    margin-bottom: 30px;
}
#choose-us-feature-two {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        transparent url(../images/ch-bg-2.jpg) center center/cover no-repeat
            scroll;
    margin-bottom: 30px;
}
#choose-us-feature-three {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        transparent url(../images/ch-bg-3.jpg) center center/cover no-repeat
            scroll;
    margin-bottom: 30px;
}
.choose-us-single-feature.style-two .choose-us-feature-title h4 {
    font-size: 25px;
    padding-bottom: 6px;
}
.choose-us-single-feature.style-two .choose-us-feature-txt p {
    color: rgba(255, 255, 255, 0.81);
}
.choose-us-single-feature.style-two .feature-btn {
    position: absolute;
    bottom: -23px;
    text-align: center;
    left: 0;
    right: 0;
}
.choose-us-single-feature.style-two .feature-btn i {
    width: 50px;
    height: 50px;
    background: #c216db;
    border-radius: 1000%;
    text-align: center;
    font-size: 23px;
    display: inline-block;
    color: #fff;
    line-height: 50px;
}

.choose-us-single-feature.style-two:hover {
    background-color: #b442ff;
}

/* style two upp */

.upp.style-two.choose-us-section {
    background: linear-gradient(rgba(39, 17, 81, 0.84), rgba(39, 17, 81, 0.84)),
        transparent url(../images/cd-bg-2.jpg) center center/cover no-repeat
            fixed;
    position: relative;
}

.upp .owl-item.active.center .choose-us-single-feature.style-two {
    background: #b442ff !important;
}

.upp .owl-item.active.center .choose-us-content:after {
    height: 100%;
    opacity: 1;
}

/*-----Choose Us section style Three------*/
.choose-us-section.style-three {
    background: orange;
}
.choose-us-section.style-three .section-head h5 {
    color: #fff;
}
.choose-us-section.style-three .section-head h2 {
    font-size: 38px;
}
.single-feature-inner .content-icon-inner i {
    color: #ffffff;
    background-color: #c216db;
    font-size: 35px;
    height: 75px;
    width: 75px;
    line-height: 75px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    margin-right: 25px;
    margin-top: 5px;
}
.single-feature-inner .content-title h4 {
    margin: 0 0 10px 0;
    font-size: 22px;
}
.choose-us-content {
    width: 95%;
}
.choose-us-content-txt {
    padding-bottom: 45px;
}
/*-----Choose Us section style-Four------*/
.choose-us-section.style-four {
    background: #f7f9fe;
}
.choose-us-section.style-four .choose-us-single-service {
    margin-bottom: 40px;
}
.choose-us-section.style-four .service-number {
    margin-right: 15px;
    float: left;
}
.choose-us-section.style-four .service-content {
    overflow: hidden;
}
.choose-us-section.style-four .service-title h4 {
    margin: 0 0 20px 0;
    font-size: 22px;
    padding: 0;
    transition: all 0.5s ease 0s;
}
.choose-us-section.style-four .service-title h4:hover {
    color: orange;
}
/*-----Choose Us section style-Five------*/
.choose-us-section.style-five {
    background: #f7f9fe;
}
.choose-us-section.style-five .choose-us-single-service {
    margin-bottom: 40px;
}
.choose-us-section.style-five .service-icon {
    margin-right: 25px;
    float: left;
    margin-top: -8px;
}
.choose-us-section.style-five .service-icon i {
    width: inherit;
    height: inherit;
    line-height: inherit;
    background: transparent;
    color: orange;
    transition: 0.5s;
    font-size: 50px;
}
.choose-us-section.style-five .service-content {
    overflow: hidden;
}
.choose-us-section.style-five .service-title h4 {
    margin: 0 0 30px 0;
    font-size: 22px;
    padding: 0;
    transition: all 0.5s ease 0s;
    position: relative;
}
.choose-us-section.style-five .service-title h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    background: #d1d1d1;
    width: 100px;
    height: 1px;
    transition: 0.6s;
    right: inherit;
    margin: auto;
}
.choose-us-section.style-five .service-title h4:hover {
    color: orange;
}
/*-----Choose Us section style Six------*/
.choose-us-section.style-six .section-head h5 {
    color: #fff;
}
.choose-us-section.style-six .chose-us-content p {
    color: rgba(255, 255, 255, 0.81);
    margin-bottom: 40px;
}
.choose-us-section.style-six .single-counter {
    text-align: left;
}
.choose-us-section.style-six .single-counter h4 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    color: #c216db;
}
.choose-us-section.style-six .single-counter p {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0;
}
/* New Demo style  02 */
.new-style-02.choose-us-section {
    background: linear-gradient(rgba(0, 23, 60, 0.86), rgba(0, 23, 60, 0.86)),
        transparent url(../images/fbg1.jpg) center center/cover no-repeat scroll;
    padding-top: 110px;
    padding-bottom: 180px;
}
.new-style-02.choose-us-section .section-head h5 {
    color: orange !important;
}
.new-style-02.choose-us-section .section-head p {
    margin-top: 50px;
}
.new-style-02.choose-us-section .choose-items {
    background: linear-gradient(
        rgba(119, 68, 217, 0.45),
        rgba(119, 68, 217, 0.45)
    );
    padding: 20px 30px;
    border-radius: 5px;
    transition: 0.5s;
    overflow: hidden;
    margin-bottom: 20px;
}
.new-style-02.choose-us-section .choose-items:hover {
    background: orange;
}
.new-style-02.choose-us-section .choose-icon i {
    color: #fff;
    font-size: 50px;
}
.new-style-02.choose-us-section .choose-content h2 {
    font-size: 20px;
    color: #fff;
    margin-top: 0;
    margin-bottom: 8px;
}
.new-style-02.choose-us-section .choose-content p {
    color: #fff;
    width: 78%;
}
.new-style-02.choose-us-section .choose-content {
    margin-left: 23px;
}
/* New Demo style */
.new-style-01.service-section {
    background: #f7f9fe;
    position: relative;
    z-index: 1;
    padding-bottom: 178px;
}
.service-shape {
    position: absolute;
    bottom: 10%;
    z-index: -1;
}
.new-style-01.service-section .section-head.style-2 p {
    width: 50%;
    margin: 30px auto 0;
}
/* New Demo style 02 */
.new-style-02.service-section {
    position: relative;
    z-index: 1;
    background: linear-gradient(
            rgba(247, 249, 254, 0.94),
            rgba(247, 249, 254, 0.94)
        ),
        #f7f9fe url(../images/shape2.png) center center/cover no-repeat fixed;
}
.service-items {
    box-shadow: 0px 1px 8px rgb(0 0 0 / 8%);
    background: #fff;
    padding: 40px 30px;
    position: relative;
    margin: 15px;
}
.service-items:before {
    position: absolute;
    content: "";
    background: orange;
    height: 0%;
    width: 0%;
    bottom: -10px;
    left: -10px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.service-items:hover:before {
    opacity: 1;
    visibility: visible;
    width: 50%;
    height: 50%;
}
.service-items:after {
    position: absolute;
    content: "";
    background: orange;
    height: 0%;
    width: 0%;
    top: -10px;
    right: -10px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.service-items:hover:after {
    opacity: 1;
    visibility: visible;
    width: 50%;
    height: 50%;
}
.service-icon i {
    font-size: 70px;
    color: orange;
}
.service-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: #232323;
}
.service-content p {
    width: 95%;
    margin: 26px 0 24px;
}
.service-btn {
    border-top: 1px solid #ddd;
    padding-top: 28px;
}
.service-btn a {
    display: inline-block;
    font-size: 17px;
    font-weight: 800;
    color: #232323;
}
.service-btn a i {
    display: inline-block;
    font-size: 13px;
    color: #232323;
    transition: 0.5s;
}
.service-number span {
    font-size: 80px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 38px;
    right: 39px;
}
/* flip Box */
.new-style-01 .card-flip {
    margin-bottom: 25px;
}
.new-style-01 .card-flip > div {
    backface-visibility: hidden;
    transition: transform 300ms;
    transition-timing-function: linear;
    height: 92%;
    margin: 0;
    display: flex;
    width: 370px;
}
.new-style-01 .card-front {
    transform: rotateY(0deg);
    background: #fff;
    border-radius: 5px;
    padding: 15px 0 23px;
}
.new-style-01 .card-back {
    transform: rotateY(180deg);
    position: absolute;
    top: 0;
    background: linear-gradient(
            rgba(194, 22, 219, 0.92),
            rgba(194, 22, 219, 0.92)
        ),
        #c216db url(../images/svd-1.jpg) center center/cover no-repeat scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 5px;
}
.new-style-01 .card-body-back h2 {
    font-size: 23px;
    color: #fff;
    font-weight: 700;
    padding-top: 33px;
    margin-bottom: 20px;
}
.new-style-01 .card-flip:hover .card-front {
    transform: rotateX(-180deg);
}
.new-style-01 .card-flip:hover .card-back {
    transform: rotateX(0deg);
}
.new-style-01 .card-body i {
    font-size: 50px;
    color: orange;
    display: inline-block;
}
.new-style-01 .card-body h2 {
    font-size: 23px;
    margin-bottom: 10px;
}
.new-style-01 .card-body-back p {
    color: #fff;
    width: 89%;
    margin: auto;
}
.new-style-01 .card-body-back a {
    display: inline-block;
    background: orange;
    color: #fff;
    padding: 8px 25px 8px 25px;
    margin-top: 27px;
    transition: 0.5s;
    border-radius: 5px;
}
.new-style-01 .card-body-back a:hover {
    color: orange;
    background: #fff;
}
/*-----Counter Section style------*/
.counter-section {
    position: relative;
}
.counter-content-container {
    background: linear-gradient(
            rgba(119, 68, 217, 0.74),
            rgba(119, 68, 217, 0.74)
        ),
        #ffffff url(../images/counter-bg.jpg) center center/cover no-repeat
            scroll;
    padding-top: 60px;
    padding-bottom: 40px;
    box-shadow: 11px 11px 38px rgba(0, 0, 0, 0.2);
    z-index: 1;
    position: relative;
    margin-top: -80px;
}
.single-counter {
    margin-bottom: 30px;
    text-align: center;
}
.br {
    border-right: 1px solid #a4c2f3;
}
.counter-content-inner {
    position: relative;
}
.count-up-txt {
    display: inline-block;
}
.count-up-txt h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
}
.counter-txt {
    display: inline-block;
}
.counter-txt h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    margin-top: -20px;
    position: absolute;
    margin-left: 10px;
    top: 0;
}
.counter-title h4 {
    text-transform: capitalize;
    font-size: 20px;
    margin-top: 5px;
    font-weight: 500;
    letter-spacing: 0;
}
/* new-style-01 */
.new-style-01.counter-section {
    position: relative;
    margin-bottom: 0;
    margin-top: -110px;
    z-index: 1;
}
.new-style-01 .single-counter {
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 50px 0 rgb(0 0 0 / 15%);
    background: #fff;
    padding: 59px 0 43px;
    border-top: 3px solid orange;
}
.new-style-01 .count-up-txt h1 {
    color: orange;
}
.new-style-01 .counter-txt h3 {
    color: orange;
}
.new-style-01 .counter-title h4 {
    font-weight: 700;
    width: 73%;
    margin: 5px auto 0;
}
/* new-style-02 */
.new-style-02 .single-counter {
    border-bottom: 3px solid orange;
    border-top: none;
}
.new-style-02.counter-section {
    margin-top: -102px;
}
/*-----Counter Section style Two------*/
.counter-section.style-two .counter-content-container {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.82),
            rgba(194, 22, 219, 0.76)
        ),
        #ffffff url(../images/counter-bg.jpg) center center/cover no-repeat
            scroll;
    margin-bottom: -80px;
    padding-top: 60px;
    padding-bottom: 40px;
}
/*-----Counter Section style-Three------*/
.counter-section.style-three .counter-content-container {
    background: #fff;
    margin-bottom: -80px;
    padding-top: 60px;
    padding-bottom: 40px;
}
.counter-section.style-three .count-up-txt h1 {
    color: orange;
}
.counter-section.style-three .counter-txt h3 {
    color: orange;
}

/*-----Counter Section style-Four------*/
.counter-section.style-four .counter-content-container {
    box-shadow: none;
    padding-top: 115px;
    padding-bottom: 47px;
}
.counter-section.style-four .single-counter {
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 70px 0 30px;
    transition: 0.5s;
}
.counter-section.style-four .single-counter:hover {
    border-color: orange;
}
.counter-section.style-four .counter-icon {
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
}
.counter-section.style-four .counter-icon i {
    font-size: 35px;
    color: orange;
    transition: 0.5s;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 100%;
    line-height: 80px;
    border: 1px solid orange;
}
.counter-section.style-four .counter-content-container {
    background: #fff;
    margin-top: 0;
}
.counter-content-container.no-margin.no-padding {
    padding-top: 40px;
}
.counter-section.style-four .count-up-txt h1 {
    color: orange;
}
.counter-section.style-four .counter-txt h3 {
    color: orange;
}
.counter-section.style-four .counter-title h4 {
    color: #232323;
}

/*-----Counter Section style-Five------*/
.counter-section.style-five .counter-content-container {
    margin-bottom: 0px;
    background: #fff;
    box-shadow: none;
}
.counter-section.style-five .count-up-txt h1 {
    color: orange;
}
.counter-section.style-five .counter-txt h3 {
    color: orange;
}

/*-----Counter Section style-Six------*/
.counter-section.style-six {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.83),
            rgba(194, 22, 219, 0.71)
        ),
        transparent url(../images/counter-bg2.jpg) center center/cover no-repeat
            fixed;
}
.counter-section.style-six .counter-content-container {
    margin-bottom: 0px;
    margin-top: 0 !important;
    background: none;
    box-shadow: none;
    padding-top: 77px;
    padding-bottom: 50px;
}

/*-----Counter Section style-Seven------*/
/*----change in responsive---*/

/*-----Counter Section style-eight------*/
.counter-section.style-eight {
    background: #271151;
}
.counter-section.style-eight .counter-content-container {
    background: #271151;
    padding-bottom: 300px;
    padding-top: 118px;
    box-shadow: none;
    margin: 0;
}
.counter-section.style-eight .single-counter {
    position: relative;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 70px 0 30px;
    transition: 0.5s;
}
.counter-section.style-eight .single-counter:hover {
    border-color: orange;
}
.counter-section.style-eight .counter-icon {
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
}
.counter-section.style-eight .counter-icon i {
    font-size: 35px;
    color: orange;
    transition: 0.5s;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 100%;
    line-height: 80px;
    border: 1px solid orange;
}
.counter-section.style-eight .count-up-txt h1,
.counter-section.style-eight .counter-txt h3,
.counter-section.style-eight .counter-title h4 {
    color: #fff;
}

.counter-content-container.no-margin {
    margin-top: 0;
}

/*-----Service Section style------*/
.service-section {
    background: #fff;
}
.servise-single-feature {
    padding: 30px 30px 28px;
    text-align: left;
    position: relative;
    background: #fff;
    transition: 0.5s;
    margin-bottom: 30px;
    border: 2px dotted #c2a9f0;
}
.servise-single-feature:hover {
    transform: translateY(-8px);
    box-shadow: 2px 10px 50px rgba(158, 158, 158, 0.25);
    border-color: transparent;
}
.service-content-title h3 {
    margin: 0 0 12px 0;
    transition: 0.5s;
    font-size: 22px;
}
.service-content-title h3:hover {
    color: orange;
}
.service-feature-icon {
    color: #333;
    font-size: 35px;
    transition: all 0.5s ease 0s;
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 35px;
}
.service-feature-icon span {
    width: 90px;
    height: 90px;
    line-height: 88px;
    text-align: center;
    position: relative;
    border: 2px dotted #ffffff;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 600;
    color: #c216db;
    animation: border-transform 7s linear infinite alternate forwards;
    transition: all 0.5s;
    background-color: #c2a9f0;
    display: inline-block;
}
@keyframes border-transform {
    0% {
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    25% {
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
    }
    50% {
        border-bottom-right-radius: 45px;
        border-top-left-radius: 45px;
    }
    75% {
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    100% {
        border-top-left-radius: 35px;
        border-bottom-right-radius: 35px;
    }
}
.service-feature-icon i {
    margin-bottom: 20px;
    display: inline-block;
    color: orange;
    width: 50px;
    height: 50px;
    background: #fff;
    line-height: 50px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    font-size: 24px;
    position: relative;
    border-radius: 100%;
    position: absolute;
    top: 62px;
    left: 56px;
    text-align: center;
}
.service-content-txt p {
    margin-bottom: 12px;
}
.service-btm-btn a {
    color: orange;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

/*-----Service Section style Two------*/
.service-section.style-two {
    background: #f7f9fe;
}
.service-single-feature {
    padding: 35px 40px 30px;
    box-shadow: 0 0px 18px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    transition: 0.5s;
    position: relative;
    background: #fff;
    text-align: left;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
}
.service-single-feature:hover {
    border-bottom-left-radius: 23% 56px;
    box-shadow: -5px 10px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}
.service-section.style-two .service-feature-icon {
    color: #333;
    font-size: 35px;
    transition: all 0.5s ease 0s;
}
.service-single-icon i {
    margin-bottom: 15px;
    display: inline-block;
    color: #fff;
    font-size: 36px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: orange;
    text-align: center;
    margin-bottom: 29px;
    border-radius: 3px;
}
.em-service.service-style-five .em-service-title h2 {
    margin: 0 0 15px 0;
    font-size: 22px;
}
.service-feature-title h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
}
.service-list li {
    list-style: none;
}
.service-list li a {
    display: block;
    color: rgb(35, 35, 35, 0.9);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 0px;
    transition: 0.3s;
}
.service-list li a:hover {
    margin-left: 15px;
    color: orange;
}
.service-feature-number {
    position: absolute;
    right: 12px;
    bottom: 1px;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    z-index: 999;
    z-index: 999;
}
.service-feature-number::after {
    position: absolute;
    content: "";
    right: -59px;
    bottom: -59px;
    width: 152px;
    height: 152px;
    background: orange;
    border-radius: 100%;
    z-index: -1;
}

/*-----Service Section style Three------*/
.tabs-content-container {
    padding: 40px;
    box-shadow: 0 0 20px rgb(194, 240, 240, 0.5);
}
.service-tabs #tabs {
    border: none;
    background: transparent;
    margin-top: 15px;
}
.service-tabs #tabs ul {
    margin-left: 30px;
}
.service-tabs .ui-tabs .ui-tabs-nav {
    margin-bottom: 35px;
}
.service-tabs .ui-widget-header {
    border: none;
    background: transparent;
}
.service-tabs #tabs ul li {
    text-align: center;
    background: transparent;
    margin-right: 10px;
    border: 1px dashed orange;
    transition: 0.3s;
}
.service-tabs #tabs .ui-tabs-anchor {
    padding: 10px 45px 15px;
}
.service-tabs #tabs ul li a {
    font-family: "Muli", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: orange;
    transition: 0.3s;
}
.service-tabs #tabs ul li a i {
    font-size: 40px;
    display: block;
    padding-bottom: 3px;
}
.service-tabs #tabs ul .ui-tabs-active {
    background: orange;
}
.service-tabs #tabs ul .ui-tabs-active a {
    color: #fff;
}
.service-tabs .tab-content-inner h2 {
    padding-bottom: 10px;
    font-size: 24px;
    margin-top: 0;
}
.service-tabs .ui-widget-content {
    color: #616161;
}
.service-tabs .btn-common.service-tab-btn {
    display: inline-block;
}
/* style2-05 */
.new-style2-02.style-four.service-section {
    background: linear-gradient(
            rgba(247, 249, 254, 0.94),
            rgba(247, 249, 254, 0.94)
        ),
        #f7f9fe url(../images/shape2.png) center center/cover no-repeat fixed;
    padding-bottom: 202px;
}
.new-style2-02.style-four.service-section
    .service-single-carousel
    .service-single-icon
    i {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: #fff;
    border-radius: 100%;
    color: orange;
    display: inline-block;
    margin-bottom: 33px;
    transition: 0.5s;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 0 5px rgba(119, 68, 217, 0.24);
    border: none;
}
.new-style2-02.style-four.service-section
    .service-single-carousel:hover
    .service-single-icon
    i {
    background: orange;
    color: #fff;
}
.new-style2-02.style-four.service-section .service-single-carousel {
    margin: 60px 15px 41px;
    text-align: center;
    background: #fff;
    padding: 90px 30px 50px;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(158, 158, 158, 0.25);
    border: none;
    transition: 0.5s;
    position: relative;
}
.new-style2-02.style-four.service-section .service-single-carousel:hover {
    box-shadow: none;
    border-color: transparent;
    border: none;
}
.new-style2-02.style-four.service-section
    .service-single-carousel:hover
    .service-btn
    a
    i {
    color: #fff !important;
}
.new-style2-02.style-four.service-section .service-btn {
    border-top: none;
    padding-top: 0;
}
.new-style2-02.style-four.service-section
    .service-single-carousel
    .service-btn
    a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: none;
    text-align: center;
    line-height: 60px;
    color: orange;
    background: #f1f1f5;
    transition: 0.5s;
    font-size: 21px;
    display: inline-block;
}
.call-do-bg {
    background: linear-gradient(
            rgba(119, 68, 217, 0.95),
            rgba(119, 68, 217, 0.95)
        ),
        transparent url(../images/shape2.png) center center/cover no-repeat
            fixed;
    padding-top: 80px;
    padding-bottom: 101px;
    margin-top: -140px;
}
.call-do-content h2 {
    color: #fff;
}
.call-do-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 500;
    margin-top: 9px;
}
.call-do-content {
    margin-left: 40px;
}
.call-do-section .call-do-btn {
    float: inherit;
    margin-top: 48px;
}
.new-demo-05 .section-head.style-2 p {
    width: 29%;
    margin: 29px auto 4px;
}
.new-demo-05.choose-us-section .service-icon i {
    font-size: 50px;
    color: orange;
    margin-top: -5px;
    display: inline-block;
    margin-right: 25px;
}
.new-demo-05.style-four.choose-us-section {
    background: #fff;
}
.new-style-05.new-style-01.pricing-section {
    background: linear-gradient(
            rgba(247, 249, 254, 0.94),
            rgba(247, 249, 254, 0.94)
        ),
        #f7f9fe url(../images/shape2.png) center center/cover no-repeat fixed;
    padding-top: 100px;
    padding-bottom: 72px;
}
/*-----Start Service Carusel Section (Service Style Four)------*/
.service-section.style-four {
    background: #f7f9fe;
}
.service-section.style-four .service-single-carousel {
    margin: 60px 15px 5px;
    text-align: center;
    background: #fff;
    padding: 90px 30px 50px;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(158, 158, 158, 0.25);
    border: 1px solid transparent;
    transition: 0.5s;
    position: relative;
}
.service-section.style-four .service-single-carousel:hover {
    box-shadow: none;
    border-color: orange;
}

.service-section.style-four .service-single-carousel .service-single-icon {
    transition: all 0.5s ease 0s;
    position: absolute;
    top: -56px;
    text-align: center;
    left: 0;
    right: 0;
    color: #333;
}
.service-section.style-four .service-single-carousel .service-single-icon i {
    width: 100px;
    height: 100px;
    line-height: 98px;
    background: #fff;
    border-radius: 100%;
    color: orange;
    display: inline-block;
    margin-bottom: 33px;
    transition: 0.5s;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 0 5px rgba(119, 68, 217, 0.24);
    border: 1px solid transparent;
}
.service-section.style-four
    .service-single-carousel:hover
    .service-single-icon
    i {
    box-shadow: none;
    border-color: orange;
}
.service-section.style-four .service-single-carousel .service-btn {
    margin-top: 35px;
}
.service-section.style-four .service-single-carousel .service-btn a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2px solid orange;
    text-align: center;
    line-height: 60px;
    color: orange;
    background: #fff;
    transition: 0.5s;
    font-size: 21px;
    display: inline-block;
}
.service-section.style-four .service-single-carousel:hover .service-btn a {
    background: orange;
    color: #fff;
}
.service-bottom-txt {
    margin: auto;
    padding-top: 20px;
}
.service-bottom-txt a {
    color: orange;
}

/* style four upper */

.upp.service-section.style-four
    .service-single-carousel
    .service-single-icon
    i {
    border: 2px dashed transparent;
}

.upp.service-section.style-four
    .service-single-carousel:hover
    .service-single-icon
    i {
    box-shadow: none;
    border-color: orange;
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.upp.service-section.style-four .service-single-carousel:hover .service-btn a {
    background: transparent;
    border: 2px dashed orange;
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

/*-----Start Service Carusel Section (Service Style Five)------*/
.service-section.style-five {
    background: #fff;
}
.service-section.style-five .service-single-carousel {
    margin: 60px 15px 5px;
    text-align: center;
    background: #fff;
    padding: 90px 30px 50px;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(158, 158, 158, 0.25);
    border: 1px solid transparent;
    transition: 0.5s;
    position: relative;
}
.service-section.style-five .service-single-carousel:hover {
    box-shadow: none;
    border-color: orange;
}
.service-section.style-five .service-single-carousel .service-single-icon {
    transition: all 0.5s ease 0s;
    position: absolute;
    top: -56px;
    text-align: center;
    left: 0;
    right: 0;
    color: #333;
}
.service-section.style-five .service-single-carousel .service-single-icon i {
    width: 100px;
    height: 100px;
    line-height: 98px;
    background: #fff;
    border-radius: 100%;
    color: orange;
    display: inline-block;
    margin-bottom: 33px;
    transition: 0.5s;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 0 5px rgba(119, 68, 217, 0.24);
    border: 1px solid transparent;
}
.service-section.style-five
    .service-single-carousel:hover
    .service-single-icon
    i {
    box-shadow: none;
    border-color: orange;
}
.service-section.style-five .service-single-carousel .service-btn {
    margin-top: 35px;
}
.service-section.style-five .service-single-carousel .service-btn a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2px solid orange;
    text-align: center;
    line-height: 60px;
    color: orange;
    background: #fff;
    transition: 0.5s;
    font-size: 21px;
    display: inline-block;
}
.service-section.style-five .service-single-carousel:hover .service-btn a {
    background: orange;
    color: #fff;
}
.service-section.style-five .service-bottom-txt {
    margin: auto;
    padding-top: 20px;
}
.service-section.style-five .service-bottom-txt a {
    color: orange;
}

/*-----Start Service Section style Six------*/
.service-section.style-six .single-service {
    text-align: center;
    background: #fff;
    padding: 40px 25px 40px;
    border: 1px solid rgba(238, 238, 238, 1);
    border-radius: 22px 0 22px 22px;
    margin-bottom: 30px;
}
.service-section.style-six.background-one .single-service {
    border: none;
}
.service-section.style-six .service-icon i {
    width: 75px;
    height: 75px;
    line-height: 75px;
    background: #e8ecfc;
    border-radius: 100%;
    color: orange;
    display: inline-block;
    margin-bottom: 33px;
    border-radius: 22px 0 22px 22px;
    transition: 0.5s;
    text-align: center;
    font-size: 30px;
}
.service-section.style-six .single-service:hover .service-icon i {
    background-color: orange;
    color: #fff;
}
.service-section.style-six .service-title h5 {
    position: relative;
    margin: 0 0 30px 0;
    font-size: 20px;
}
.service-section.style-six .service-title h5::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    background: #d1d1d1;
    width: 100px;
    height: 1px;
    transition: 0.6s;
    right: 0;
    margin: auto;
}
.service-section.style-six .service-btn {
    margin-top: 30px;
}
.service-section.style-six .service-btn a {
    color: orange;
    border: 1px solid orange;
    padding: 8px 23px;
    margin-top: 14px;
    border-radius: 22px 0 22px 22px;
}
.service-section.style-six .single-service:hover .service-btn a {
    background-color: orange;
    color: #fff;
    border-color: orange;
}

/*-----Service Section style-Seven------*/
.service-section.style-seven .btn-common.btn-service {
    margin: 20px 0;
    text-align: center;
}
.service-section.style-seven .btn-common.btn-service a {
    font-size: 15px;
    padding: 17px 22px;
}

/*-----Service Section style-Eight------*/
.service-section.style-eight {
    background: #eff2f7;
}
.service-section.style-eight .services-single-feature {
    display: flex;
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding: 15px 15px 17px 73px;
    transition: 0.5s;
    z-index: 1;
    margin-bottom: 15px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.service-section.style-eight .services-single-feature::before {
    background: orange;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}
.service-section.style-eight .services-single-feature:hover::before {
    width: 100%;
}
.service-section.style-eight .services-single-feature .feature-icon i {
    position: absolute;
    left: 0;
    width: 55px;
    height: 100%;
    line-height: 55px;
    background: orange;
    text-align: center;
    align-items: center !important;
    top: 0;
    border-radius: 5px 0 0 5px;
    transition: 0.5s;
    font-size: 23px;
    color: #fff;
}
.service-section.style-eight .services-single-feature .service-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}
.service-section.style-eight .services-single-feature:hover .service-title h5 {
    color: #fff;
}
.service-thumb-section {
    position: relative;
}
.rotate-thumb {
    position: absolute;
    top: 0;
}
.rotateme {
    animation-name: rotateme;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*-----Service Section style-Nine------*/
.service-section.style-nine {
    background: #fff;
}
.service-section.style-nine .services-single-feature {
    display: flex;
    background: #fff;
    border-radius: 5px;
    position: relative;
    padding: 15px 15px 17px 73px;
    transition: 0.5s;
    z-index: 1;
    margin-bottom: 15px;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.service-section.style-nine .services-single-feature::before {
    background: orange;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}
.service-section.style-nine .services-single-feature:hover::before {
    width: 100%;
}
.service-section.style-nine .services-single-feature .feature-icon i {
    position: absolute;
    left: 0;
    width: 55px;
    height: 100%;
    line-height: 55px;
    background: orange;
    text-align: center;
    align-items: center !important;
    top: 0;
    border-radius: 5px 0 0 5px;
    transition: 0.5s;
    font-size: 23px;
    color: #fff;
}
.service-section.style-nine .services-single-feature .service-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}
.service-section.style-nine .services-single-feature:hover .service-title h5 {
    color: #fff;
}

/*-----Start Service Section Style-Ten------*/
.service-section.style-ten .service-single-items {
    margin-top: 90px;
    text-align: center;
    background: #fff;
    padding: 90px 30px 50px;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(158, 158, 158, 0.25);
    border: 1px solid transparent;
    transition: 0.5s;
    position: relative;
}
.service-section.style-ten .service-single-items:hover {
    box-shadow: none;
    border-color: orange;
}
.service-section.style-ten .service-single-items .service-single-icon {
    transition: all 0.5s ease 0s;
    position: absolute;
    top: -56px;
    text-align: center;
    left: 0;
    right: 0;
    color: #333;
}
.service-section.style-ten .service-single-items .service-single-icon i {
    width: 100px;
    height: 100px;
    line-height: 98px;
    background: #fff;
    border-radius: 100%;
    color: orange;
    display: inline-block;
    margin-bottom: 33px;
    transition: 0.5s;
    text-align: center;
    font-size: 36px;
    box-shadow: 0 0 5px rgba(119, 68, 217, 0.24);
    border: 1px solid transparent;
}
.service-section.style-ten .service-single-items:hover .service-single-icon i {
    box-shadow: none;
    border-color: orange;
}
.service-section.style-ten .service-single-items .service-btn {
    margin-top: 35px;
}
.service-section.style-ten .service-single-items .service-btn a {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    border: 2px solid orange;
    text-align: center;
    line-height: 60px;
    color: orange;
    background: #fff;
    transition: 0.5s;
    font-size: 21px;
    display: inline-block;
}
.service-section.style-ten .service-single-items:hover .service-btn a {
    background: orange;
    color: #fff;
}

/*-----Start Portfolio Section style------*/

.portfolio_area {
    background: #eff2f7;
}
/* Portfolio Nav */
.portfolio_nav {
    margin-bottom: 50px;
}
.portfolio_menu ul {
    text-align: center;
    list-style: none;
}
.portfolio_menu ul li {
    display: inline-block;
    margin: 0 14px;
    cursor: pointer;
}
.portfolio_menu ul li a {
    display: block;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    transition: 0.5s;
}
.portfolio_menu ul li a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 24px;
    height: 2px;
    width: 0%;
    background: #fff;
    transition: 0.5s;
}
.portfolio_nav ul li {
    background: #f2f4ff;
    border: medium none;
    font-size: 16px;
    line-height: 1;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    cursor: pointer;
    text-transform: capitalize;
    padding: 12px 15px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    margin: 0 3px;
    margin-bottom: 7px;
    display: inline-block;
    border-radius: 5px;
}
.portfolio_nav ul li:hover,
.portfolio_nav ul li.current_menu_item {
    color: #fff;
    background: orange;
}
.portfolio-thumb {
    position: relative;
    overflow: hidden;
}
.portfolio-thumb img {
    display: block;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
    border-radius: 4px;
}
.portfolio-thumb:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.portfolio-content {
    position: absolute;
    text-align: center;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    right: 20px;
    bottom: -100%;
    left: 20px;
    opacity: 0;
    background: orange;
    margin: auto;
    text-align: left;
    padding: 25px 20px 25px;
    border-radius: 5px;
}
.portfolio-thumb:hover .portfolio-content {
    opacity: 1;
    bottom: 0px;
}
.portfolio-icon a i {
    background: #fff;
    border-radius: 50%;
    color: orange;
    display: inline-block;
    font-size: 15px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
    margin-bottom: 5px;
    width: 35px;
    text-align: center;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.portfolio-icon a:hover i {
    background: #c216db;
    color: #fff;
}
.portfolio-content h5 a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}
.portfolio-content p {
    color: #fff;
}
.portfolio_area .portfolio-thumb {
    margin-bottom: 30px;
}
.btn-common.btn-portfolio {
    margin-top: 10px;
    text-align: center;
}
.btn-common.btn-portfolio a {
    letter-spacing: 0;
    font-size: 16px;
}

/*-----Start Portfolio Details Section style------*/
.portfolio-details-section {
    background: #f6f6f6;
}
.portfolio-details {
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 65px 50px 50px;
}
.portfolio-thumb {
    margin-bottom: 10px;
}
.portfolio-thumb img {
    width: 100%;
}
.portfolio-info-inner {
    padding-left: 40px;
}
.portfolio-info-inner .info-title {
    margin-bottom: 30px;
}
.portfolio-info-inner .info-list li {
    border-bottom: 1px solid #ddd;
    font-size: 18px;
    font-weight: 300;
    padding: 13px 0;
    text-transform: capitalize;
    list-style: none;
}
.portfolio-info-inner .info-list li b {
    font-size: 20px;
    margin-right: 5px;
}
.portfolio-social-link li {
    display: inline-block;
}
.portfolio-social-link li span {
    font-size: 20px;
    font-weight: 700;
    margin-right: 15px;
}
.portfolio-social-link a i {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: orange;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;
    text-align: center;
    margin-right: 10px;
    line-height: 35px;
}
.portfolio-analysis {
    margin-top: 35px;
}
.portfolio-analysis h4 {
    margin-bottom: 25px;
}
/*-----Start Call Do action Section style------*/
.call-do-action-content {
    background: transparent url(../images/cd-bg-1.jpg) center center/cover
        no-repeat scroll;
    padding: 85px 40px !important;
    margin-bottom: -135px;
    position: relative;
    z-index: 1;
}
.call-do-action.upper {
    padding: 0px 40px 80px !important;
    position: relative;
    z-index: 1;
}
.call-do-action.upper .call-do-action-content {
    background: #a273fd;
    padding: 80px 40px !important;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}
.call-do-action-content.style-two {
    margin-bottom: 0;
    margin-top: -130px;
}
.call-do-action-title h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}
.call-do-action-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
}
.call-do-btn {
    float: right;
}
.call-do-btn a {
    color: #ffffff;
    background-color: rgba(112, 193, 179, 0);
    font-weight: 600;
    border: 2px solid #ffffff;
    border-radius: 3px;
    padding: 15px 35px;
    text-transform: uppercase;
}
.call-do-btn a:hover {
    color: #ffffff;
    background-color: orange;
    border: 2px solid orange;
}
/* new-style-01 */
.new-style-01.call-do-action {
    background: orange url(../images/c1.png) center center/cover no-repeat fixed;
    padding-top: 194px;
    padding-bottom: 0;
    margin-top: -129px;
}
.new-style-01.call-do-action .call-content h2 {
    font-size: 40px;
    color: #fff;
    margin-top: 42px;
}
.new-style-01.call-do-action .call-content p {
    color: rgba(255, 255, 255, 0.9);
    width: 84%;
    font-size: 18px;
    margin: 20px auto 30px;
}
.new-style-01.call-do-action .call-btn {
    display: inline-block;
    background: #c216db;
    color: #fff;
    text-transform: uppercase;
    padding: 13px 22px;
    border-radius: 5px;
    transition: 0.5s;
    font-weight: 500;
}
.new-style-01.call-do-action .call-btn:hover {
    color: #c216db;
    background: #fff;
}

/*-----Start Call Do action Section style Two------*/
.call-do-action.style-two {
    background: linear-gradient(rgba(39, 17, 81, 0.84), rgba(39, 17, 81, 0.84)),
        transparent url(../images/cd-bg-2.jpg) center center/cover no-repeat
            fixed;
}
.call-do-action.style-two .section-content {
    text-align: center;
    margin: auto;
}
.call-do-action.style-two .section-title h2 {
    font-size: 40px;
    margin: 38px 0 15px;
    text-transform: capitalize;
}
.call-do-action.style-two .section-title span {
    display: block;
}
.call-do-action.style-two .section-content p {
    color: rgba(255, 255, 255, 0.9);
    width: 55%;
    margin: 0 auto 30px;
    font-size: 14px;
}
.call-do-action.style-two .btn-call-do a {
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    background-color: #c216db;
    border-radius: 4px;
    color: #fff;
    padding: 15px 31px;
    transition: 0.5s;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0;
}
.call-do-action.style-two .btn-call-do:hover a {
    background: #fff;
    color: #c216db;
}

/*-----Start Call Do action Section style Three------*/
.call-do-action.style-three {
    background: linear-gradient(to bottom, #4dc7d9 0%, orange 100%);
}

.call-do-action.style-three .call-do-content {
    text-align: center;
}
.call-do-action.style-three .call-do-video {
    margin-bottom: 35px;
}
.call-do-action.style-three .section-title h2 {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.call-do-action.style-three .section-title h2 span {
    font-size: 40px;
    display: block;
    letter-spacing: 0;
    line-height: 1.2;
    margin-top: 20px auto 0;
    font-weight: 700;
    text-transform: capitalize;
}
.call-do-action.style-three .section-txt {
    color: rgba(255, 255, 255, 0.9);
    width: 35%;
    margin: auto;
    font-size: 14px;
}
.call-do-action.style-three .btn-call-do a {
    border: none;
    display: inline-block;
    font-size: 14px;
    text-transform: uppercase;
    background-color: white;
    border-radius: 4px;
    color: orange;
    padding: 15px 31px;
    margin-top: 30px;
    transition: 0.5s;
    font-weight: 500;
    border-radius: 10px;
}
.call-do-action.style-three .btn-call-do a:hover {
    background: orange;
    color: white;
}

/*-----Start Call Do action Section style Four------*/
.call-do-action.style-four h1 {
    font-size: 50px;
    margin-bottom: 10px;
}
.call-do-action.style-four .btn-common.btn-call-do {
    display: inline-block;
}
.call-do-action.style-four .btn-common.btn-call-do a {
    background: #c216db;
    color: #fff;
    font-size: 16px;
    padding: 17px 26px;
    transition: 0.5s;
}
.call-do-action.style-four .btn-common.btn-call-do:hover a {
    background: orange;
}

/*-----Start Call Do action Section style Five------*/
.call-do-action.style-three.blue-back {
    background: #271151;
}

/*-----Start Header Section------*/
.header-section {
    background: url(../images/fbg2.jpg) no-repeat center/cover scroll;
    padding-top: 90px;
    padding-bottom: 225px;
}
.header-section h5 {
    color: #fff;
}

/*-----Start Pricing Section Style-----*/
.pricing-single-item {
    transition: all 0.3s ease 0s;
    padding: 55px 40px 55px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}
.pricing-content .section-title {
    padding: 16px 0 19px;
    transition: all 0.3s ease 0s;
    background: orange;
    margin-bottom: 30px;
    border-radius: 4px;
}
.pricing-content .section-title h4 {
    font-size: 25px;
    color: #fff;
    text-transform: capitalize;
    margin: 0;
}
.pricing-feature {
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease 0s;
    border-radius: 7px;
}
.pricing-single-item:hover .pricing-feature {
    border-color: #c216db;
}
.pricing-feature ul {
    padding: 31px 0 35px;
}
.pricing-feature ul li {
    display: block;
    padding: 8px 0;
    text-transform: none;
    transition: all 0.3s ease 0s;
    text-transform: capitalize;
}
.pricing-feature ul li:last-child {
    padding-bottom: 0;
}
.item-price {
    transition: all 0.3s ease 0s;
    margin-bottom: 17px;
    margin-top: 15px;
}
.item-price span {
    display: inline-block;
    transition: all 0.3s ease 0s;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: orange;
}
.item-price .courency {
    font-size: 23px !important;
    font-weight: 500;
    position: relative;
    top: -18px;
    font-weight: 400 !important;
}
.item-price .month {
    font-size: 18px !important;
    font-weight: 400 !important;
    text-transform: capitalize;
}
.pricing-btn a {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 35px;
    position: relative;
    text-transform: capitalize;
    transition: all 0.3s ease 0s;
    color: #fff;
    border-radius: 3px;
    background: orange;
}
.pricing-single-item:hover .pricing-content .section-title,
.pricing-single-item:hover .pricing-btn a {
    background: #c216db;
    color: #fff;
}
.pricing-single-item:hover .item-price span {
    color: #c216db;
}
.pricing-single-item.style-two .pricing-feature {
    border-color: #c216db;
}
.pricing-single-item.style-two .section-title {
    background: #c216db;
}
.pricing-single-item.style-two .item-price span {
    color: #c216db;
}
.pricing-single-item.style-two .pricing-btn a {
    background: #c216db;
    color: #fff;
}
/* new-style-01 */
.new-style-01.pricing-section {
    padding-top: 100px;
    padding-bottom: 72px;
}
.new-style-01.testimonial-section {
    background: #f7f9fe;
}
/*-----Start Case Study Section style------*/
.case-stydy-section {
    background: #f7f9fe;
    padding-top: 260px;
    padding-bottom: 160px;
}
.section-head.style-3 {
    max-width: 1140px;
    margin: auto;
}
.section-head.style-3 h5 {
    position: relative;
    display: inline-block;
}
.section-head.style-3 h5::before {
    content: "";
    position: absolute;
    right: -84px;
    top: 7px;
    height: 3px;
    width: 70px;
    background: orange;
}
.case-study-single-items {
    position: relative;
    z-index: 999;
    margin: 0 15px;
}
.case-study-thumb {
    position: relative;
    z-index: 1;
}
.case-study-thumb img {
    width: 100%;
}
.case-study-thumb::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(119, 68, 217, 0.74);
    opacity: 0;
    transition: 0.3s;
}
.case-study-single-items:hover .case-study-thumb::before {
    opacity: 1;
}
.case-study-overlay-content {
    position: absolute;
    left: 0;
    top: 60%;
    right: 0;
    text-align: center;
    background: #fff;
    width: 70%;
    margin: auto;
    border-radius: 5px;
    padding: 40px 10px;
    opacity: 0;
    transition: 0.5s;
    transform: translateY(-50%);
    z-index: 999;
}
.case-study-single-items:hover .case-study-overlay-content {
    opacity: 1;
    top: 50%;
}
.case-study-title h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}
.case-study-title h4 a {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    transition: 0.3s;
}
.case-study-title h4 a:hover {
    color: orange;
}
/* new-style-01 */
.new-style-01.case-stydy-section {
    padding-top: 0;
    padding-bottom: 0;
}
.new-style-01.case-stydy-section .case-study-container {
    background: orange;
    padding-bottom: 0px;
    padding-top: 86px;
    margin-bottom: 290px;
}
.row.case-bg {
    margin-top: -178px;
}
.new-style-02.case-stydy-section {
    background: linear-gradient(
            rgba(119, 68, 217, 0.92),
            rgba(119, 68, 217, 0.92)
        ),
        orange url(../images/s-bg.png) center center/cover no-repeat fixed;
    padding-top: 0px;
    padding-bottom: 60px;
}
.new-style-01.case-stydy-section .section-head.style-3 h5::before {
    display: none;
}
.new-style-01.case-stydy-section
    .case-study-carousel.owl-carousel.owl-loaded.owl-drag {
    margin-bottom: -222px;
    z-index: 1;
}
.new-style-01.case-stydy-section .section-head h5 {
    color: #fff;
}
.new-style-01.case-stydy-section .section-head h2 {
    color: #fff;
}
/*-----Start Case Study Section style Two -----*/
.case-stydy-section.style-two {
    padding-top: 200px;
    padding-bottom: 75px;
}
/* new-04 */
.new-style-04.case-stydy-section .section-head h5 {
    color: orange;
}
.new-style-04.case-stydy-section .section-head h2 {
    color: #232323;
}
.new-style-04.case-stydy-section {
    padding-top: 22px;
    background: #fff;
    padding-bottom: 50px !important;
}
.case-study-carousel-two .owl-dots {
    position: absolute;
    left: 50%;
    bottom: -43px;
    border-radius: 100%;
    transform: translateX(-50%);
    display: inline-block !important;
}
.case-study-carousel-two .owl-dot {
    background: #bfcadc;
    height: 5px;
    width: 25px;
    display: inline-block;
    margin: 0 3px 0px;
    border-radius: 50px;
    transition: 0.5s;
}
.style-04.feature-area .feature-content-2 h2 {
    font-size: 40px;
    color: #fff;
    margin-top: 0;
}
.style-04.feature-area .video i {
    font-size: 20px;
}
.style-04.feature-area .feature-content-2 p {
    color: #fff;
    width: 35%;
    margin: 9px auto 26px;
}
.style-04.feature-area .call-btn {
    background: #c216db;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 15px 31px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: 0.5s;
}
.style-04.feature-area .call-btn:hover {
    background: #fff;
    color: #c216db;
}
.feature-area .text-left.section-head h2 {
    font-size: 40px;
    margin-bottom: 9px;
}
.style4.feature-area .row.feature-bg {
    background: #f3f6ff;
    box-shadow: none;
    margin-top: -193px;
    padding: 50px 30px 20px 30px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-radius: 7px;
}
.style4.feature-area .form-area {
    box-shadow: none;
    padding: 0px 0 46px;
    border-radius: 7px;
}
.style4.feature-area .section-head.style-2 .animated-bar {
    display: inline-block;
    left: 0;
    top: -10px;
}
/*-----Start Case Study Section style Three------*/
.case-stydy-section.style-three {
    padding-top: 60px;
    padding-bottom: 130px;
}
/*-----Start Owl Dots Style -----*/
.owl-dots {
    position: absolute;
    left: 50%;
    bottom: -60px;
    border-radius: 100%;
    transform: translateX(-50%);
}
.testimonial-section .owl-dots {
    bottom: -40px;
}
.owl-dot {
    background: #bfcadc;
    height: 5px;
    width: 25px;
    display: inline-block;
    margin: 0 3px;
    border-radius: 50px;
    transition: 0.5s;
}
.owl-dot.active {
    background: orange;
    width: 35px;
}

/*====================================================
--< cyber why-join-us Css -->
======================================================*/
.why-join-us {
    padding: 110px 0 70px;
}
.section-head p {
    margin: 20px 0 0;
    font-size: 16px;
}
.join-content h4 {
    font-size: 20px;
    color: #133344;
    position: relative;
    margin: 0;
}
.join-content h4::before {
    position: absolute;
    content: "";
    top: 21px;
    left: 172px;
    height: 1px;
    width: 37px;
    background: #d00a2b;
}
.join-content h2 {
    font-size: 55px;
    color: #0a2c3d;
    line-height: 1.2;
    margin: 6px 0 10px;
}
.join-content h2 span {
    color: #d00a2b;
}
.join-content p {
    font-size: 16px;
    color: #5c727d;
    margin: 0;
    line-height: 1.5;
}
.join-button {
    margin-top: 33px;
}
.join-button a {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    background: orange;
    color: #fff;
    text-transform: uppercase;
    padding: 11px 26px;
    transition: 0.5s;
    border-radius: 5px;
}
.join-button a:hover {
    background: #c216db;
}
.singles-joins-box {
    background: #fff;
    text-align: center;
    padding: 35px 74px;
    box-shadow: 1px 4px 15px 8px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    border-radius: 5px;
}
.joins-titles h3 {
    font-size: 20px;
    color: #333;
    margin: 0;
    line-height: 1.3;
}
.singles-joinss-box {
    background: #fff;
    text-align: center;
    padding: 35px 74px;
    box-shadow: 1px 4px 15px 8px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    border-radius: 5px;
    position: relative;
    top: -40px;
}
/*====================================================
--< cyber .circular-area Css -->
======================================================*/
.circular-area {
    padding: 100px 0 0;
    background: #f6f7f9;
}
.circular-area .section-title {
    text-align: center;
    margin-bottom: 50px;
}
.circular-area .section-title h5 {
    font-size: 20px;
    color: #d00a2b;
    font-family: Nunito;
    font-weight: 800;
    text-transform: uppercase;
}
.circular-area .section-title h1 {
    font-size: 50px;
    color: #0a2c3d;
}
.circular-area .section-title h1 span {
    color: #d00a2b;
}
.single-circular-box {
    background: #ffffff;
    padding: 20px 32px 0;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: 0.5s;
    overflow: hidden;
}
.circular-thumb {
    float: left;
    margin: 2px 25px 20px 0;
}
.circular-thumb img {
    background: #f6f7f9;
    padding: 22px 24px;
    border-radius: 5px;
}
.circular-title {
    position: relative;
    top: 15px;
}
.circular-title h3 {
    font-size: 26px;
    color: #333;
    margin: 0;
    transition: 0.5s;
}
.circular-title p {
    font-size: 16px;
    color: #5c727d;
    margin: 0;
    transition: 0.5s;
}
.circular-btn {
    text-align: right;
    position: relative;
    top: -42px;
}
.circular-btn a {
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid orange;
    padding: 12px 22px;
    border-radius: 5px;
    color: #333;
    font-weight: 600;
}
.single-circular-box:hover {
    background: orange;
}
.single-circular-box:hover .circular-title h3 {
    color: #fff;
}
.single-circular-box:hover .circular-title p {
    color: #fff;
}
.single-circular-box:hover .circular-btn a {
    color: #0a2c3d;
    background: #fff;
}
/*====================================================
--< cyber calls-do-actions Css -->
======================================================*/
.calls-do-actions {
    padding: 65px 0 165px;
    background: #f6f7f9;
    margin: 0 0 -67px;
}
.calls-do-actions .section-title {
    text-align: center;
}
.calls-do-actions .section-title h1 {
    font-size: 55px;
    font-weight: bold;
    font-family: Rajdhani;
    margin-bottom: 15px;
    margin-top: 16px;
    color: #0a2c3d;
}
.calls-do-actions .section-title h5 {
    font-size: 32px;
    color: #5c727d;
    font-family: Nunito;
    font-weight: 600;
}
.calls-do-button {
    text-align: center;
    position: relative;
    top: 27px;
}
.calls-do-button a {
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    background: orange;
    color: #fff;
    text-transform: uppercase;
    padding: 11px 26px;
    transition: 0.5s;
    border-radius: 5px;
}
.calls-do-button a:hover {
    background: #c216db;
}
/*====================================================
--< Cyber .career-details  Css -->
======================================================*/
.career-details {
    padding: 100px 0 90px;
}
.details-title h2 {
    font-size: 46px;
    color: #000000;
    margin: 0;
}
.details-title h3 {
    font-size: 26px;
    color: #000000;
    font-weight: 600;
    margin: 15px 0;
}
.details-title p {
    font-size: 16px;
    margin: 0;
    color: #5c727d;
    line-height: 1.4;
}
.details-text {
    margin-top: 30px;
}
.details-text h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
}
.details-text p {
    margin: 0 0 5px 30px;
    position: relative;
}
.details-text p::before {
    position: absolute;
    content: "";
    top: 14px;
    left: -33px;
    height: 1px;
    width: 15px;
    background: orange;
}
.details-text p::after {
    position: absolute;
    content: "";
    top: 12px;
    left: -18px;
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background: orange;
}
.details-text h3 {
    font-size: 26px;
    color: #000000;
    font-weight: 600;
    margin: 16px 0 0;
}
.singles-details-box {
    box-shadow: 1px 4px 15px 8px rgb(0 0 0 / 10%);
    padding: 25px 30px 20px;
    position: relative;
    border-radius: 5px;
}
.singles-details-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: orange;
}
.singles-details-box h4 {
    font-weight: 600;
    font-size: 25px;
    color: #000000;
    font-family: "Rajdhani", sans-serif;
}
.details-thumb {
    margin: 20px 0 0;
}
.details-thumb img {
    float: left;
    margin: 6px 20px 25px 0;
}
.deta-title span {
    font-size: 16px;
    color: #5c727d;
}
.deta-title h5 {
    margin: 0;
    font-size: 17px;
    color: #333;
}
.deta-title {
    margin-left: 37px;
}
.details-button {
    margin-top: 40px;
}
.details-button a {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    background: orange;
    padding: 12px 20px;
    color: #fff;
    border-radius: 5px;
    transition: 0.5s;
}
.details-button a:hover {
    background: #c216db;
}

/*
<!-- ============================================================== -->
<!-- Start video-area Css -->
<!-- ============================================================== -->*/
.bd-video.upper {
    position: absolute;
    top: 15%;
    left: 61%;
}
.video-area .video-bg {
    background: url(../images/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0;
    border-radius: 10px;
    position: relative;
    margin-bottom: -101px;
}
.video.carousels-videos {
    margin-top: 15px;
    position: relative;
    top: -85px;
    left: -15px;
}
.video-title h4 {
    font-size: 30px;
    color: #fff;
    text-align: right;
    margin-right: 35px;
}
.video-button a {
    display: inline-block;
    padding: 16px 35px;
    background: #fff;
    color: #333;
    font-size: 18px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Rajdhani";
    margin: 18px 0 0 110px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    text-decoration: none;
}
.video-button a::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    transform: scale(0, 1);
    opacity: 0;
    border-radius: 3px;
}
.video-button span {
    margin-left: 6px;
}
.video-button i {
    display: inline-block;
    color: orange;
    font-size: 23px;
    transition: 0.5s;
}
.video-button a:hover::before {
    transform: scale(1, 1);
    opacity: 1;
    background: #c216db;
    color: #fff;
}
.video-button a:hover {
    color: #fff;
}
.video-button:hover i {
    color: #fff;
}
/*
<!-- ============================================================== -->
<!-- Start planing area Css -->
<!-- ============================================================== -->*/
.planing-area {
    background: #f4f7f8;
}
.planing-area .dreamit-section-title {
    margin-bottom: 50px;
}
.dreamit-single-planing-box {
    margin: 30px 0;
}
.single-planing-thumb img {
    width: 100%;
}
.planing-content {
    background: #fff;
    padding: 25px 40px 15px;
}
.planing-title h3 {
    font-size: 20px;
    padding: 0 0 10px;
}
/*
<!-- ============================================================== -->
<!-- Start vission area Css -->
<!-- ============================================================== -->*/
.vission-area {
    background: url(../images/ssion.jpg);
    background-position: center;
    background-repeat: no-repeat;
    padding: 58px 0 105px;
}
.vission-area .elementor-about-icon-box {
    margin: 30px 0 0;
}
.vission-area .about-icon i {
    float: left;
    display: inline-block;
    margin-right: 15px;
    color: orange;
    margin-top: 3px;
}
.vission-area .elementor-about-title {
    margin: 5px 0 5px;
}
/*
<!-- ============================================================== -->
<!-- Start mission area Css -->
<!-- ============================================================== -->*/
.mission-area {
    background: url(../images/vission.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 105px 0 108px;
}
.col-lg-6.col-md-6.mission {
    padding: 0 0 0 46px;
}
.mission-area .dreamit-section-title p {
    margin: 15px 0 0;
    color: #bec6cc;
}
.mission-area .dreamit-section-title {
    margin-bottom: 25px;
}
.mission-area .dreamit-section-title::after {
    left: 25px;
}
.mission-area .elementor-about-title p {
    padding-bottom: 5px;
}
.mission-area .section-head h2 {
    color: #fff;
}
.mission-area .section-head p {
    margin: 20px 0 0;
    font-size: 16px;
    color: #fff;
}
.about-icon i {
    float: left;
    display: inline-block;
    margin-right: 15px;
    color: #fff;
    margin-top: 3px;
}
.elementor-about-icon-box.white {
    margin: 25px 0 0;
}

/*mission single box*/
.col-lg-6.mission-box {
    position: relative;
    z-index: 1;
}
.mission-area .section-title h1 {
    color: #fff;
}
.mission-area .section-title p {
    width: 100%;
}
.mission-single-box {
    position: absolute;
    z-index: 1;
    bottom: -108px;
    right: -1px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 50px 25px;
}
.mission-title h2 {
    font-size: 18px;
    line-height: 34px;
    color: #fff;
}
.mission-area .dreamit-section-main-title h2 {
    font-size: 35px;
    margin: 3px 0 0;
    color: #fff;
}

/*-----Start Case Study Section style Four------*/
.case-stydy-section.style-four {
    padding-top: 0px;
    background: #fff;
    padding-bottom: 0;
}

.case-stydy-section.style-four .case-study-overlay-content {
    top: 90%;
    left: 0;
    right: 0;
    text-align: left;
    background: orange;
    width: 90%;
    border-radius: 0px;
    padding: 26px;
    opacity: 1;
    transform: none;
}
.case-stydy-section.style-four .case-study-thumb {
    margin-bottom: 50px;
}
.case-stydy-section.style-four .case-study-title h4 a {
    color: #fff;
}
.case-stydy-section.style-four .case-study-catagory {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    padding-top: 5px;
}

/*-----Start Case Study Section style Five------*/
.case-stydy-section.style-five {
    padding-top: 175px;
}
.case-stydy-section.style-five.padding-two {
    padding-bottom: 120px;
}
/*-----Start Case Study Section style six------*/
.case-stydy-section.style-six {
    background: #fff;
    padding-top: 90px;
    padding-bottom: 130px;
}

/*-----Start Pie Counter style------*/
.single-pie-counter {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    padding: 33px 0 22px;
    margin-bottom: 30px;
}
.pie-counter-inner {
    position: relative;
}
.pie-counter-number {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}
.pie-counter-number span {
    font-size: 18px;
    font-weight: 500;
    color: #5552c1;
}
.pie-counter-number .counter {
    font-size: 22px;
    font-weight: 600;
}
.pie-skill-title h5 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 18px;
}
/*-----Start Pie Counter style-Two------*/
.skill-section {
    background: #9269e1;
}
.skill-section .section-head h5 {
    color: #fff;
}
.pie-counter.style-two .single-pie-counter {
    background: transparent;
    box-shadow: none;
    padding: 0;
}
.pie-counter.style-two .pie-counter-number span {
    font-weight: 400;
    color: #fff;
}
/*-----Start Brand Section style------*/
.brand-section {
    background: #f7f9fe;
}
.single-brand {
    max-width: 100%;
}
.single-brand img {
    max-width: 100%;
    width: 90%;
    height: auto;
    -webkit-filter: grayscale(1);
    transition: 0.3s;
}
.single-brand:hover img {
    -webkit-filter: grayscale(0);
}
.brand-section.background-two {
    background: #fff;
}
.background-one {
    background: #f9f9f9 !important;
}
.background-two {
    background: #fff !important;
}
.background-three {
    background: #eff2f7 !important;
}
/*-----Start Brand Section style-Two------*/
.brand-section.style-two {
    background: #fff;
}
.brand-section.style-two .brand-margin-top {
    margin-top: -100px;
}

/*-----Start Brand Section style-Three------*/
.brand-section.style-three {
    background: transparent;
}
.brand-section.style-three .brand-margin-top {
    margin-top: -100px;
    background: #fff;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
    position: relative;
}
.brand-section.style-three .brand-carousel {
    padding: 20px 0;
}

/*-----Start Team Section style------*/
.single-team-member {
    position: relative;
    margin-bottom: 30px;
    transition: 0.3s;
    overflow: hidden;
    border-radius: 4px;
    text-align: center;
}
.team-thumb {
    position: relative;
}
.team-thumb-inner {
    position: relative;
    overflow: hidden;
}
.team-thumb-inner img {
    width: 100%;
}
.team-thumb-inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(119, 68, 217, 0.74);
    transition: 0.5s;
    opacity: 0;
    transition: 0.3s;
}
.team-social-icon-inner {
    position: absolute;
    top: 50%;
    right: -100px;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    transition: 0.3s;
    background: #fff;
    width: 45px;
    padding: 13px 0;
}
.team-social-icon-inner a {
    display: block;
    font-size: 16px;
    color: orange;
    text-align: center;
    margin: 4px 0px;
    transition: 0.3s;
}
.team-content {
    transition: 0.5s;
    background: #fff;
    padding: 16px 20px 23px;
    position: relative;
    margin: 0 40px;
    box-shadow: 0 0 12px 0 rgba(32, 46, 60, 0.06);
    margin-top: -31px;
    margin-bottom: 10px;
    z-index: 1;
}
.team-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #c216db;
    transition: 0.3s;
    z-index: -1;
}
.team-content-title h4 {
    transition: all 0.3s ease-in-out 0s;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}
.team-member-designation {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.single-team-member:hover {
    box-shadow: none;
    transform: translateY(-10px);
}
.single-team-member:hover .team-social-icon-inner {
    opacity: 1;
    top: 50%;
    right: 0;
}
.single-team-member:hover .team-thumb-inner::before {
    opacity: 1;
}
.single-team-member:hover .team-content::before {
    height: 100%;
}
.single-team-member:hover .team-content-title h4 {
    color: #fff;
}
.single-team-member:hover .team-member-designation {
    color: #fff;
}

.team-section .change-position {
    margin-top: -130px;
}

/*-----Start Team Section style-Two------*/
.team-section.style-two .team-content {
    margin: 0 !important;
    border-bottom: 3px solid orange;
}
.team-section.style-two .single-team-member {
    box-shadow: 0 0 5px rgb(0, 0, 0, 0.1);
}
.team-section.style-two .team-content::before {
    display: none;
}
.team-section.style-two .single-team-member:hover .team-content-title h4 {
    color: inherit;
}
.team-section.style-two .single-team-member:hover .team-member-designation {
    color: inherit;
}
.team-section.style-two .single-team-member:hover {
    box-shadow: 0 16px 32px rgba(207, 228, 255, 0.8);
}

/*-----Start Team Section style-Three------*/
.team-section.style-three .team-single-member {
    text-align: center;
    transition: 0.3s;
    border-bottom: 0;
    border-radius: 0;
    box-shadow: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
    padding: 40px 25px 35px;
    margin-bottom: 30px;
    background: #fff;
}
.team-section.style-three .member-thumb img {
    width: 150px;
    border-radius: 100%;
    border: 2px solid orange;
    padding: 7px;
    transition: 0.3s;
}
.team-section.style-three .team-single-member:hover .member-thumb img {
    border-color: #c216db;
}
.team-section.style-three .about-team-member {
    background: orange;
    border-radius: 4px;
    padding: 10px 15px 10px;
    margin: 25px 0 15px;
    color: #fff;
    transition: 0.3s;
}
.team-section.style-three .team-single-member:hover .about-team-member {
    background: #c216db;
}
.team-section.style-three .about-team-member h4 {
    font-size: 20px;
    margin: 0;
    color: #fff;
    font-weight: 500;
}
.team-section.style-three .member-social-link ul li {
    display: inline-block;
    padding: 8px 0;
}
.team-section.style-three .member-social-link a {
    display: inline-block;
    margin: 0 5px;
    color: orange;
    transition: 0.3s;
}
.team-section.style-three .member-social-link a:hover {
    color: #c216db;
}

/*-----Start Team Section style-Four------*/
.team-section.style-three {
    position: relative;
}
.team-circle-bg {
    height: 270px;
    width: 270px;
    z-index: 1;
    left: 0;
    bottom: 5px;
    position: absolute;
}
.team-section.style-three .change-position {
    z-index: 2;
    position: relative;
}
.ups-down {
    animation-name: ups-down;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes ups-down {
    0% {
        bottom: 5px;
    }
    25% {
        bottom: 30px;
    }
    50% {
        bottom: 5px;
    }
    75% {
        bottom: 30px;
    }
    100% {
        bottom: 5px;
    }
}

/*-----Start Team Skill Section style------*/
.team-skill-section .section-head h5 {
    font-size: 17px;
    margin-bottom: 25px;
}
.team-skill-section .section-head h2 {
    font-size: 40px;
}
.team-skill-thumb img {
    width: 100%;
}

/*-----Start Single Team Member style------*/
.member-intro-content {
    border: 1px solid rgba(238, 238, 238, 1);
    padding: 50px 60px;
}
.member-intro-inner {
    padding-left: 30px;
}
.single-member-section .member-name h2 {
    font-size: 45px;
    padding-bottom: 45px;
}
.single-member-section .intro-list li {
    font-size: 18px;
    margin-bottom: 24px;
}
.single-member-section .intro-list li b {
    padding-right: 10px;
}
.single-member-section .member-social-link li {
    display: inline-block;
    margin: 3px;
}
.single-member-section .member-social-link a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background: orange;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
}
.single-member-section .member-social-link {
    margin-top: 40px;
}
.single-member-section .member-social-link a:hover {
    background: #c216db;
}

/*-----Start Single Team Member Style-two------*/
.single-member-section.style-two .member-intro-content {
    box-shadow: 0 0 35px rgb(0, 0, 0, 0.2);
}
.single-member-section.style-two .member-bio {
    box-shadow: 0 0 35px rgb(0, 0, 0, 0.2);
    padding: 50px;
}

/*-----Start Appointment Section style------*/
.appoinment-section {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.89),
            rgba(194, 22, 219, 0.82)
        ),
        transparent url(../images/ap-bg-1.jpg) no-repeat center center/cover
            fixed;
    padding-top: 65px;
    padding-bottom: 65px;
}
.appoinment-section.back-two {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.89),
            rgba(194, 22, 219, 0.82)
        ),
        transparent url(../images/ap-bg-3.jpg) no-repeat center center/cover
            fixed;
    padding-top: 80px;
    padding-bottom: 80px;
}
.appoinment-section.back-three {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.89),
            rgba(194, 22, 219, 0.82)
        ),
        transparent url(../images/ap-bg-4.jpg) no-repeat center center/cover
            fixed;
}
.form-control {
    height: 54px;
    background-color: #fff;
    border-color: transparent;
    transition: 0.5s;
    border: 1px solid #e6e6e6;
    padding: 15px 20px;
    box-shadow: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-color: transparent;
}
.form-control:focus {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: transparent;
}
.form-control::placeholder {
    color: #fff !important;
    font-size: 17px;
    font-weight: 400;
}
.form-area textarea {
    height: 160px;
}
.buttons {
    text-align: center;
}
.buttons .submit-button {
    background: #fff;
    border: 0;
    display: inline-block;
    text-align: center;
    padding: 12px 30px;
    border-radius: 7px;
    transition: 0.3s;
    color: #232323;
    margin-top: 25px;
}
.buttons .submit-button:focus {
    outline: 0;
}
.buttons .submit-button:hover {
    background: #c216db;
    color: #fff;
}
.form-area div#status {
    color: #fff;
}
.upper div#status {
    color: #000;
}
/*-----Start Appointment Section style Two------*/
.appoinment-section.style-two {
    background: none !important;
}
.appoinment-section.style-two .appoinment-content {
    background: linear-gradient(
            360deg,
            rgba(119, 68, 217, 0.89),
            rgba(194, 22, 219, 0.82)
        ),
        transparent url(../images/ap-bg-2.jpg) no-repeat center center/cover
            scroll;
    padding-top: 65px;
    padding-bottom: 60px;
    border-radius: 10px;
    margin-top: -250px;
}
.appoinment-content-wrapper {
    padding: 0 70px;
}

/*-----Start Appointment Section style Three------*/
.appoinment-section.style-three {
    background: #fff;
    display: none;
}
.appoinment-form {
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
    padding: 40px 27px;
}

/*-----Start Appointment Section style Four------*/
.appoinment-section.style-four {
    padding-bottom: 165px;
}

/*-----Start Appointment Section style Five------*/
.appoinment-section.style-five {
    background: #fff;
    padding-top: 0;
    padding-bottom: 80px;
}
.appoinment-wrapper {
    border: 1px solid #e6e6e6;
    padding: 65px 55px 50px;
}
.appoinment-section.style-five .form-control {
    border-color: #e6e6e6;
}
.appoinment-section.style-five .form-control::placeholder {
    color: #6c757d;
}
.appoinment-section.style-five .buttons .submit-button {
    background: orange;
    color: #fff;
}
.appoinment-section.style-five .section-head h2 {
    font-size: 35px;
    margin-bottom: 10px;
}
.member-bio h3,
.member-skill h3 {
    font-size: 35px;
    padding-bottom: 25px;
}

/*-----Start Appointment Section style Six------*/
.appoinment-section.style-six {
    background: orange url(../images/ap-bg5.png) no-repeat center center/cover
        fixed;
    padding-bottom: 100px;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}
.appointment-shape-one {
    position: absolute;
    left: 48%;
    bottom: 25px;
    height: 270px;
    width: 271px;
    animation: updownone 2.5s infinite;
    animation-timing-function: linear;
    z-index: -1;
    opacity: 0.5;
}
@keyframes updownone {
    0% {
        bottom: 25px;
    }
    25% {
        bottom: 35px;
    }
    50% {
        bottom: 25px;
    }
    75% {
        bottom: 15px;
    }
    100% {
        bottom: 25px;
    }
}
.appointment-shape-two {
    position: absolute;
    right: 15px;
    top: 28px;
    height: 270px;
    width: 271px;
    animation: updowntwo 2.5s infinite;
    animation-timing-function: linear;
    z-index: -1;
    opacity: 0.6;
}
@keyframes updowntwo {
    0% {
        top: 28px;
    }
    25% {
        top: 38px;
    }
    50% {
        top: 28px;
    }
    75% {
        top: 18px;
    }
    100% {
        top: 28x;
    }
}

/*-----Start Appointment Section style Seven-----*/
.appoinment-section.style-seven {
    background: #eff2f7;
    padding-bottom: 80px;
    padding-top: 90px;
}
.appoinment-section.style-seven .form-control {
    background-color: #fff;
    border-color: #ccc;
}
.appoinment-section.style-seven .form-control::placeholder {
    color: #6c757d !important;
}
.appoinment-section.style-seven .buttons .submit-button {
    background: orange;
    color: #fff;
}
.appoinment-section.style-seven .buttons .submit-button:hover {
    background: #c216db;
}
/*-----Start Process Section style------*/
.single-process {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 0 30px;
}
.process-icon-inner {
    position: relative;
    display: inline-block;
}
.process-icon-inner i {
    background: orange;
    color: #fff;
    width: 90px;
    height: 90px;
    display: inline-block;
    line-height: 90px;
    font-size: 40px;
    border-radius: 4px;
}
.process-number {
    position: absolute;
    right: -25px;
    transition: 0.5s;
    bottom: -16px;
    z-index: 1;
}
.process-number span {
    background: #c216db;
    display: inline-block;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    z-index: 1;
}
.process-title-inner {
    padding-top: 24px;
}
.process-title-inner h4 {
    font-size: 20px;
    margin-bottom: 15px;
}
.new-style-01 .process-icon {
    position: relative;
}
.new-style-01 .process-icon:before {
    position: absolute;
    top: 50%;
    width: 160px;
    height: 1px;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(orange),
        color-stop(40%, orange),
        color-stop(40%, transparent),
        to(transparent)
    );
    background-image: -o-linear-gradient(
        left,
        orange,
        orange 40%,
        transparent 40%,
        transparent 100%
    );
    background-image: linear-gradient(
        90deg,
        orange,
        orange 40%,
        transparent 40%,
        transparent 100%
    );
    background-size: 12px 1px;
    content: "";
    left: 113px;
    transform: translateY(-50%);
}
/* style-2 */
.new-style-02 .process-icon-inner i {
    color: orange;
    width: 140px;
    height: 140px;
    display: inline-block;
    line-height: 140px;
    font-size: 40px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
}
.new-style-02 .process-number {
    position: absolute;
    right: -5px;
    transition: 0.5s;
    bottom: 0;
    z-index: 1;
}
.new-style-02 .style-2.process-icon {
    position: relative;
}
.new-style-02 .style-3.process-icon {
    position: relative;
}
.new-style-02 .style-2.process-icon:after {
    position: absolute;
    top: -6%;
    width: 122%;
    height: 100%;
    content: "";
    left: 126%;
    background: url(../images/arrow1.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.new-style-02 .style-3.process-icon:after {
    position: absolute;
    top: -6%;
    width: 122%;
    height: 100%;
    content: "";
    left: 126%;
    background: url(../images/arrow2.png);
    background-repeat: no-repeat;
    background-position: center center;
}
.new-style-02 .style-2.process-number {
    position: absolute;
    right: -5px;
    transition: 0.5s;
    top: 0;
    z-index: 1;
}
/*-----Start Testimonisl Section style------*/
.testimonial-single-item {
    text-align: center;
    background: #fff;
    padding: 30px 25px;
    border-radius: 5px;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    margin: 20px 15px 5px;
}
.testimonial-thumb {
    position: relative;
    margin: 0 0 20px;
    display: inline-block;
}
.testimonial-thumb img {
    border-radius: 100%;
    width: 115px;
}
.testimonial-icon i {
    font-size: 18px;
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    bottom: 0px;
    right: -16px;
    background-color: orange;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}
.testimonial-content {
    position: relative;
    padding: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    text-align: center;
}
.testimonial-content-text {
    margin: auto;
    font-size: 17px;
    font-style: italic;
    font-weight: 500;
    padding: 0px 0px 40px;
}
.testimonial-content h4 {
    position: relative;
    padding-top: 10px;
    font-size: 18px;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 700;
}
.testimonial-designation {
    color: orange;
}
.testimonial-content h4::before {
    content: "";
    height: 1px;
    width: 25px;
    background: orange;
    position: absolute;
    top: -20px;
    left: 0;
    right: 25px;
    margin: auto;
}
.testimonial-content h4::after {
    content: "";
    height: 1px;
    width: 25px;
    background: #cccccc;
    position: absolute;
    top: -20px;
    left: 25px;
    right: 0;
    margin: auto;
}

/*-----Start Testimonisl Section style-Two------*/
.testimonial-section.style-two {
    background: #f7f9fe;
}
.testimonial-section.style-two .testimonial-single-item {
    background: transparent;
    box-shadow: none;
    padding-bottom: 0;
}
.testimonial-section.style-two .testimonial-thumb::before {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-size: 38px;
    position: absolute;
    line-height: 50px;
    top: 50%;
    right: -87px;
    width: 50px;
    height: 50px;
    text-align: center;
    color: orange;
    border-radius: 50%;
    transform: translateY(-50%);
    background: transparent;
    font-weight: 800;
}
.testimonial-section.style-two .testimonial-thumb::after {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-size: 38px;
    position: absolute;
    line-height: 50px;
    top: 50%;
    left: -87px;
    background-color: transparent;
    width: 50px;
    height: 50px;
    text-align: center;
    color: orange;
    border-radius: 50%;
    transform: translateY(-50%);
    font-weight: 800;
}
.testimonial-section.style-two .testimonial-thumb img {
    width: 84px;
}
.testimonial-section.style-two .testimonial-content {
    margin-bottom: 0;
}
.testimonial-section.style-two .testimonial-content-text {
    width: 65%;
    padding-bottom: 12px;
}
.testimonial-section.style-two .testimonial-content h4::before {
    display: none;
}
.testimonial-section.style-two .testimonial-content h4::after {
    display: none;
}
.testimonial-section.style-two .owl-dots {
    bottom: -35px;
}

.testimonial-section.background-two {
    background: #f7f9fe;
}
/*-----Start Testimonisl Section style-Three------*/
.testimonial-section.style-three .testimonial-single-item {
    margin: 0 0 30px 0;
}
/* .new-style-02 */
.new-style-02.testimonial-section {
    background: linear-gradient(
            rgba(119, 68, 217, 0.66),
            rgba(119, 68, 217, 0.66)
        ),
        #f7f9fe url(../images/new1_1.jpg) center center/cover no-repeat scroll;
}
.new-style-02.testimonial-section .section-head h5 {
    color: #fff;
}
.new-style-02.testimonial-section .section-head h2 {
    color: #fff;
}
/* New Style 03 */
.new-style-03.testimonial-section {
    background: linear-gradient(
            rgba(119, 68, 217, 0.56),
            rgba(119, 68, 217, 0.56)
        ),
        #f7f9fe url(../images/testi-bg.jpg) center center/cover no-repeat scroll;
    padding-top: 100px;
    padding-bottom: 136px;
}
.new-style-03.testimonial-section .section-head h2 {
    color: #fff;
}
.new-style-03.testimonial-section .section-head h5 {
    color: #fff;
}
.new-style-03.testimonial-section .testimonial-content-text {
    color: #fff;
}
.new-style-03.testimonial-section .testimonial-content h4 {
    position: relative;
    padding-top: 10px;
    font-size: 18px;
    margin-bottom: 0px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 700;
    color: #fff;
}
.new-style-03.testimonial-section .testimonial-designation {
    color: #fff;
}
/* new-style-04 */
.new-style-04.testimonial-section {
    background: #fff;
}
/*-----Start Feature index Section style------*/
.feature-index-section {
    background: linear-gradient(
            rgba(130, 74, 237, 0.7),
            rgba(130, 74, 237, 0.7)
        ),
        transparent url(../images/fbg1.jpg) center center/cover no-repeat scroll;
}
.feature-single-content {
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 2px;
    transition: 0.5s;
}
.feature-single-content:hover {
    background-color: #c216db;
    color: #fff;
}
.feature-single-content:hover i {
    color: #fff;
}
.feature-single-content:hover .feature-title {
    color: #fff;
}
.feature-icon i {
    color: #824aed;
    font-size: 55px;
    transition: 0.5s;
}
.feature-title {
    margin: 0 0 25px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #444;
    transition: 0.5s;
}
.feature-index-section .feature-title {
    margin-top: -7px;
}
/* new-style-02 */
.new-style-02.feature-index-section {
    background: transparent;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}
.feature-single-content {
    background: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 2px;
    transition: 0.5s;
    box-shadow: 0 1px 8px rgb(0 0 0 / 10%);
}
/*-----Start Blog Section style------*/
.section-head.style-2 p {
    width: 50%;
    margin: auto;
}
.blog-single-items {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 15px 15px 15px 15px;
    margin: 10px 15px 30px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s;
}
.blog-thumb {
    overflow: hidden;
    position: relative;
}
.blog-thumb img {
    border-radius: 10px;
    width: 100%;
}
.blog-meta-top {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.blog-meta-top li {
    display: inline-block;
}
.blog-meta-top li a {
    display: inline-block;
    background: orange;
    padding: 5px 22px;
    line-height: 19px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
    color: #fff;
    border-radius: 15px;
}
.blog-content {
    padding: 31px 25px 20px;
}
.blog-meta {
    border-bottom: 1px solid #ececec;
    padding-bottom: 13px;
    margin-bottom: 12px;
}
.blog-meta a,
.blog-meta span {
    margin-right: 13px;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
    text-transform: capitalize;
    margin-right: 24px;
    color: #616161;
    position: relative;
    font-size: 14px;
}
.blog-meta a:hover,
.blog-meta span:hover {
    color: orange;
}
.blog-meta a::before {
    content: "";
    background: #616161;
    width: 1px;
    height: 14px;
    position: absolute;
    right: -13px;
    top: 4px;
}
.blog-page-title h2 {
    font-size: 21px;
    margin: 10px 0 7px;
    line-height: 1.2;
}
.blog-page-title a {
    color: #232323;
    font-weight: 700;
    transition: 0.5s;
}
.blog-page-title a:hover {
    color: orange;
}
.blog-btn a {
    font-weight: 500;
    color: orange;
    font-size: 15px;
    text-transform: uppercase;
    margin-top: 25px;
    display: inline-block;
}
.blog-carousel .owl-dots {
    bottom: -30px;
}
.blog-carousel .owl-nav div {
    opacity: 0;
}
.blog-carousel:hover .owl-nav div {
    background: orange;
    opacity: 1;
}
.blog-carousel .owl-nav .owl-prev:hover {
    background: #121b51;
}
.blog-carousel .owl-nav .owl-next:hover {
    background: #121b51;
}

/*-----Start Blog Section style-Two------*/
.blog-section.style-two .blog-single-items {
    background: #eff2f7;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
}
.blog-section.style-two .blog-single-items:hover {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.blog-section.style-two .blog-thumb img {
    border-radius: 0;
}
.blog-section.style-two .blog-page-title a {
    font-weight: 600;
    font-size: 20px;
}
.blog-section.style-two .blog-meta {
    padding-bottom: 0;
    border: none;
}

/*-----Start Blog Section style-Three------*/
.blog-section.style-three .blog-single-items {
    background: #eff2f7;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
}
.blog-section.style-three .blog-single-items:hover {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.blog-section.style-three .blog-thumb img {
    border-radius: 0;
}
.blog-section.style-three .blog-page-title a {
    font-weight: 600;
    font-size: 20px;
}
.blog-section.style-three .blog-meta {
    padding-bottom: 0;
    border: none;
}
.blog-section.style-three .blog-btn a {
    color: #616161;
    text-transform: capitalize;
    transition: 0.5s;
}
.blog-section.style-three .blog-btn a:hover {
    color: orange;
}
/* style4 */
.style4.blog-section {
    background: #f3f6ff;
}

/*-----Start Blog Section style-Four------*/
.blog-section.style-four .blog-single-items {
    background: #eff2f7;
    border-radius: 5px;
    box-shadow: none;
    padding: 0;
    margin: 0;
}
.blog-section.style-four .blog-single-items:hover {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}
.blog-section.style-four .blog-thumb img {
    border-radius: 0;
}
.blog-section.style-four .blog-page-title a {
    font-weight: 600;
    font-size: 20px;
}
.blog-section.style-four .blog-meta {
    padding-bottom: 0;
    border: none;
}

/*-----Start Blog Section on Blog grid style------*/
.blog-section.blog-list {
    background-color: #f6f6f6;
}
.blog-section.blog-list .blog-single-items {
    box-shadow: none;
    border: 1px solid #e6e6e6;
    padding: 0 0 15px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 0 0 30px 0;
}
.blog-section.blog-list .blog-single-items:hover {
    box-shadow: 6px 5px 30px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}
.blog-section.blog-list .blog-single-items .blog-thumb img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.blog-section.blog-list .blog-single-items .blog-content {
    padding: 31px 35px 20px;
}
.widget-items {
    padding: 35px 33px;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}
.widget-items form {
    position: relative;
}
.src-input-box {
    border: 1px solid #ccc;
    padding: 17px 9px;
    width: 100%;
    border-radius: 5px;
}
.src-input-box:focus {
    border: 1px solid #ccc;
}
.src-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #777;
    background: transparent;
    border: none;
}
.widget-items .section-head h4 {
    margin-top: 0;
}
.widget-content .about-image img {
    height: 140px;
    width: 140px;
    margin-bottom: 10px;
}
.widget-content .about-name h5 {
    font-size: 18px;
    margin-bottom: 10px;
}
.widget-content .about-icon ul li {
    display: inline-block;
    margin-top: 15px;
}
.widget-content .about-icon a i {
    font-size: 15px;
    color: #fff;
    background: #0c5adb;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px;
    margin: 0 2px;
    display: inline-block;
}
.widget-single-post {
    clear: both;
    overflow: hidden;
    margin-bottom: 14px;
    border-bottom: 1px solid #e8e8e8;
}
.widget-single-post:last-child {
    border: none;
    margin-bottom: 0;
}
.widget-single-post .post-thumb img {
    height: 80px;
    width: 80px;
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.widget-single-post .post-content {
    overflow: hidden;
}
.post-content h4 {
    line-height: 22px;
    margin-top: 0;
}
.post-content h4 a {
    color: #232323;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 700;
}
.post-content h4 a:hover {
    color: orange;
}
.catagory-List ul li,
.archive-list ul li,
.meta-list ul li {
    transition: 0.3s;
    border-top: 1px solid #e8e8e8;
    padding: 15px 0;
}
.catagory-List ul li:last-child,
.archive-list ul li:last-child,
.meta-list ul li:last-child {
    padding-bottom: 0;
}
.tag-List ul li {
    display: inline-block;
}
.tag-List a {
    color: #616161;
    display: inline-block;
    font-size: 16px;
    padding: 5px 14px;
    text-align: center;
    text-transform: capitalize;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    margin: 0 10px 9px 0;
}
.tag-List a:hover {
    background: #0c5adb;
    color: #fff;
    border-color: #0c5adb;
}

/*-----Start Blog Section style on blog Details page------*/
.blog-details-wrapper .blog-page-title h2 {
    font-size: 30px;
}
.blog-details-wrapper .blog-meta a::before {
    display: none;
}
.blog-section.blog-list .blog-details-wrapper .blog-single-items {
    border: none;
    box-shadow: 0 3px 19px rgba(0, 0, 0, 0.08);
}
.br-2 {
    border-right: 1px solid #000;
    padding-right: 10px;
}
.blog-details-wrapper .blog-meta a,
.blog-meta span {
    margin-right: 10px;
}
.blog-details-wrapper .blog-meta {
    border: none;
    margin-bottom: 15px;
}
.blog-details-wrapper p {
    margin-bottom: 20px;
}
.blog-details-wrapper .blog-title {
    margin-bottom: 20px;
}
.blog-details-wrapper .blog-social-icon li {
    display: inline-block;
}
.blog-details-wrapper .blog-social-icon {
    padding-top: 40px;
    border-top: 1px solid #e6e6e6;
    margin-top: 40px;
    margin-bottom: 10px;
}
.blog-details-wrapper .blog-social-icon a i {
    border: 1px solid #e6e6e6;
    color: #565872;
    display: inline-block;
    font-size: 15px;
    height: 40px;
    line-height: 41px;
    margin: 0 9px 0 0;
    text-align: center;
    width: 40px;
    border-radius: 5px;
    transition: 0.5s;
}
.blog-details-wrapper .blog-social-icon a i:hover {
    background: orange;
    border-color: orange;
    color: #fff;
}
.blog-appoinment.appoinment-wrapper {
    border: none;
    padding: 15px 0;
}
.blog-appoinment.appoinment-wrapper .form-control {
    border: 1px solid #e6e6e6;
}
.blog-appoinment.appoinment-wrapper .form-control::placeholder {
    color: #6c757d;
}
.privacy-query {
    padding: 15px;
}
.blog-appoinment.appoinment-wrapper .buttons {
    text-align: left;
}
.blog-appoinment.appoinment-wrapper .buttons .submit-button {
    background: orange;
    border: 0;
    display: inline-block;
    text-align: center;
    padding: 14px 39px;
    border-radius: 7px;
    transition: 0.3s;
    color: #fff;
}
.blog-appoinment.appoinment-wrapper .buttons .submit-button:hover {
    background: #c216db;
    color: #fff;
}
/*-----Start Subscribe Section style------*/
.subscriber-content-wrapper {
    background: linear-gradient(
            rgba(119, 68, 217, 0.92),
            rgba(119, 68, 217, 0.92)
        ),
        #ffffff;
}
.subscribe-section .subscribe-content {
    background: #c216db;
    padding: 60px 30px;
}
.subscribe-section form {
    padding: 60px 30px 60px 0;
}
.subscribe-title h2 {
    margin-top: 0;
    font-size: 45px;
}
.subscriber-content-wrapper .input-box {
    position: relative;
}
.subscriber-content-wrapper .input-box input {
    font-size: 14px;
    height: 65px;
    padding: 5px 25px;
    position: relative;
    width: 100%;
    background: #f6f6fc;
    border: 0;
    border-radius: 15px;
}
.subscriber-content-wrapper .input-box input:focus {
    outline: 0;
}
.subscriber-content-wrapper .input-box button {
    transition: 0.4s;
    border: none;
    border-radius: 15px;
    background: orange;
    color: #fff;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    margin: auto;
    padding: 6px 43px;
    position: absolute;
    right: 7px;
    top: 50%;
    height: 80%;
    display: inline-block;
    transform: translateY(-50%);
}

/*-----Start Breadcumb Section style------*/
.breadcumb-section {
    padding: 215px 0 145px;
    background: url(../images/bd-bg-1.jpg) no-repeat center/cover scroll;
    position: relative;
}
.breadcumb-section::before {
    background: rgba(41, 52, 92, 0.62);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
}
.breadcumb-content {
    color: #fff;
    z-index: 1;
    position: relative;
    text-align: center;
    margin: auto;
}
.breadcumb-content h1 {
    font-size: 55px;
    margin-bottom: 28px;
    margin-top: 0;
    color: #fff;
}
.breadcumb-inner li {
    display: inline-block;
    margin: 0 6px;
    font-size: 14px;
    text-transform: uppercase;
}
.breadcumb-inner li a {
    color: #fff;
    font-weight: 500;
}

/*-----Start FAQ Section style------*/

.faq-section .faq-accordion-wrapper {
    background: #271151;
    padding: 41px 50px 30px 76px;
}

.faq-section .section-head h5 {
    color: #fff;
}
.faq-content .faq-content-txt p {
    font-size: 19px;
    line-height: 26px;
    font-weight: 500;
    margin-top: 10px;
    padding-bottom: 35px;
}
.faq-accordion {
    margin-bottom: 25px;
}
#faq-accordion .acc-title {
    border: 1px solid #fff;
    background: #fff;
    min-height: 30px;
    line-height: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #232323;
    transition: 0.5s;
}

#faq-accordion .acc-title:hover {
    border: 1px solid #c216db;
    background: #c216db;
    color: #fff;
}
#faq-accordion .acc-title i {
    color: #c216db;
    transition: 0.5s;
}
#faq-accordion .ui-state-active i {
    color: #fff;
}
#faq-accordion .acc-title span i {
    position: absolute;
    right: 20px;
    top: 15px;
}
#faq-accordion .ui-state-active span i {
    transform: rotate(180deg);
}
#faq-accordion .acc-title:hover i {
    color: #fff;
}
#faq-accordion .ui-state-active {
    border: 1px solid #c216db;
    background: #c216db;
    color: #fff;
}
#faq-accordion .ui-widget-content {
    border: none;
    background: transparent;
    height: 100px;
    padding: 0em 1.2em;
}
#faq-accordion .ui-widget-content p {
    color: rgba(255, 255, 255, 0.82);
}
.faq-section-thumb {
    position: relative;
}
.faq-section-thumb img {
    width: 100%;
}
.video.faq-video {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

/*-----Start FAQ Section style-Two------*/
/*-----Accordion One------*/
.faq-section.style-two .section-head h5 {
    color: orange;
}
.faq-section.style-two .faq-accordion-wrapper {
    background: #fff;
    padding: 0;
}
#faq-accordion-one .acc-title {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    min-height: 30px;
    line-height: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #232323;
    transition: 0.5s;
}
#faq-accordion-one .acc-title:hover {
    color: orange;
}
#faq-accordion-one .acc-title i {
    color: orange;
    transition: 0.5s;
}
#faq-accordion-one .ui-state-active i {
    color: orange;
}
#faq-accordion-one .acc-title span i {
    position: absolute;
    right: 20px;
    top: 15px;
}
#faq-accordion-one .ui-state-active span i {
    transform: rotate(180deg);
}
#faq-accordion-one .acc-title:hover i {
    color: orange;
}
#faq-accordion-one .ui-state-active {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    color: #232323;
}
#faq-accordion-one .ui-widget-content {
    border: none;
    background: transparent;
    height: 100px;
    padding: 0em 1.2em;
}
#faq-accordion-one .ui-widget-content p {
    color: #616161;
}

/*-----Accordion Two------*/
#faq-accordion-two .acc-title {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    min-height: 30px;
    line-height: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #232323;
    transition: 0.5s;
}
#faq-accordion-two .acc-title:hover {
    color: orange;
}
#faq-accordion-two .acc-title i {
    color: orange;
    transition: 0.5s;
}
#faq-accordion-two .ui-state-active i {
    color: orange;
}
#faq-accordion-two .acc-title span i {
    position: absolute;
    right: 20px;
    top: 15px;
}
#faq-accordion-two .ui-state-active span i {
    transform: rotate(180deg);
}
#faq-accordion-two .acc-title:hover i {
    color: orange;
}
#faq-accordion-two .ui-state-active {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    color: #232323;
}
#faq-accordion-two .ui-widget-content {
    border: none;
    background: transparent;
    height: 100px;
    padding: 0em 1.2em;
}
#faq-accordion-two .ui-widget-content p {
    color: #616161;
}

/*-----Accordion Three------*/
#faq-accordion-three .acc-title {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    min-height: 30px;
    line-height: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #232323;
    transition: 0.5s;
}
#faq-accordion-three .acc-title:hover {
    color: orange;
}
#faq-accordion-three .acc-title i {
    color: orange;
    transition: 0.5s;
}
#faq-accordion-three .ui-state-active i {
    color: orange;
}
#faq-accordion-three .acc-title span i {
    position: absolute;
    right: 20px;
    top: 15px;
}
#faq-accordion-three .ui-state-active span i {
    transform: rotate(180deg);
}
#faq-accordion-three .acc-title:hover i {
    color: orange;
}
#faq-accordion-three .ui-state-active {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    color: #232323;
}
#faq-accordion-three .ui-widget-content {
    border: none;
    background: transparent;
    height: 100px;
    padding: 0em 1.2em;
}
#faq-accordion-three .ui-widget-content p {
    color: #616161;
}

/*-----Accordion Four------*/
#faq-accordion-four .acc-title {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    min-height: 30px;
    line-height: 30px;
    font-weight: 700;
    font-size: 18px;
    margin-top: 0;
    width: 100%;
    margin-bottom: 20px;
    color: #232323;
    transition: 0.5s;
}
#faq-accordion-four .acc-title:hover {
    color: orange;
}
#faq-accordion-four .acc-title i {
    color: orange;
    transition: 0.5s;
}
#faq-accordion-four .ui-state-active i {
    color: orange;
}
#faq-accordion-four .acc-title span i {
    position: absolute;
    right: 20px;
    top: 15px;
}
#faq-accordion-four .ui-state-active span i {
    transform: rotate(180deg);
}
#faq-accordion-four .acc-title:hover i {
    color: orange;
}
#faq-accordion-four .ui-state-active {
    border: 1px solid #eff2f7;
    background: #eff2f7;
    color: #232323;
}
#faq-accordion-four .ui-widget-content {
    border: none;
    background: transparent;
    height: 100px;
    padding: 0em 1.2em;
}
#faq-accordion-four .ui-widget-content p {
    color: #616161;
}

/*-----Start Contact Feature Section style------*/
.contact-single-feature {
    border: 1px solid #d0e5fb;
    border-radius: 5px;
    margin-bottom: 30px;
    padding: 32px 25px 38px 25px;
    text-align: center;
}
.contact-single-feature .contact-title {
    padding-bottom: 12px;
    padding-top: 15px;
}
.contact-single-feature .feature-icon i {
    font-size: 40px;
}

/*-----Start Gallery Section style------*/
.gallery-section .gallery-single-item {
    margin-left: 15px;
    margin-right: 15px;
}
.gallery-thumb img {
    width: 100%;
}

/*-----Start Typography Section style------*/
.typography-content .content-title {
    margin-bottom: 6px;
}
.typography-content .content-title h1 {
    font-size: 40px;
}
.typography-content .content-title h2 {
    font-size: 35px;
}
.typography-content .content-title h3 {
    font-size: 28px;
}
.typography-content .content-title h4 {
    font-size: 22px;
}
.typography-content .content-title h5 {
    font-size: 18px;
}
.typography-content .content-title h6 {
    font-size: 16px;
}
.typography-content .content-txt {
    margin-bottom: 48px;
}

.typography-section.style-two {
    background-color: #f7f9fe;
}
.content-txt .dropcaps-txt {
    position: relative;
    display: inline-block;
    float: left;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 40px;
    background: #42bce2;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin: 5px 18px 0 0;
}

/*-----Start Service-Details Section style------*/
.call-do-action-feature {
    background: linear-gradient(rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.71)),
        transparent url(../images/fbg3.jpg) no-repeat center/cover scroll;
    margin-bottom: 30px;
    padding: 30px 15px 50px 15px;
}
.call-do-action-feature .feature-icon {
    padding-bottom: 0;
}
.call-do-action-feature .feature-icon i {
    color: #c216db;
    font-size: 50px;
}
.call-do-action-feature .call-do-title h5 {
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 800;
}
.call-do-phone h4 {
    color: #c216db;
    font-size: 28px;
}
.feature-about-us {
    background: #f5f5f5;
    text-align: center;
    padding: 25px 25px 45px;
}
.feature-about-us .feature-title {
    margin: 0 0 15px;
}
.feature-about-us p {
    margin-bottom: 30px;
}
.btn-common.btn-download a {
    font-size: 12px;
    padding: 16px 32px;
}
.service-details-content .content-title h3 {
    margin-top: 0;
    font-size: 35px;
    margin-bottom: 5px;
}
.service-details-content .content-txt p {
    margin-bottom: 40px;
}
.service-details-content .content-thumb {
    position: relative;
}
.service-details-content .content-thumb img {
    width: 100%;
    margin-bottom: 40px;
}
.service-details-content.style-two {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}
.service-content-inner-container {
    padding: 0 40px;
}
.btn-common.btn-service a {
    font-size: 16px;
    padding: 18px 20px;
}
.content-thumb.style-two img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.single-feature-inner {
    margin-bottom: 36px;
}
.single-feature-inner .feature-icon i {
    background-color: #f5f5f5;
    font-size: 30px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 3px;
    display: inline-block;
    text-align: center;
    margin-top: 5px;
}
.feature-title-inner h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}
/* style-2 */
.new-style-02.call-do-action {
    background: linear-gradient(
            rgba(119, 68, 217, 0.83),
            rgba(119, 68, 217, 0.83)
        ),
        transparent url(../images/new2.jpg) center center/cover no-repeat scroll;
    padding-top: 58px;
    padding-bottom: 162px;
    margin-top: 0;
}
.new-style-02.call-do-action .call-content h3 {
    color: #fff;
    margin-top: 0;
    font-size: 40px;
}
.new-style-02.call-do-action .call-content {
    margin-top: 47px;
}

/*-----Start Service-details Tab style------*/
.service-details-tab .tabs-btn li a {
    font-family: "Muli", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #6b6b6b;
}
.service-details-tab .ui-state-default {
    background: #fff;
    transition: 0.5s;
}
.service-details-tab .ui-state-default:hover {
    background: orange;
}
.service-details-tab .tabs-btn li:hover a {
    color: #fff;
}
.service-details-tab .ui-widget-header {
    border: none;
    background: #fff;
}
.service-details-tab .ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: 0;
}
.service-details-tab .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    padding: 0.7em 1.7em;
    width: 100%;
}
.service-details-tab .ui-state-active {
    border: 1px solid orange;
    background: orange;
}
.service-details-tab .ui-state-active a {
    color: #fff !important;
    background: orange;
    border: none;
}
.service-details-tab .ui-widget.ui-widget-content {
    border: none;
}
.service-details-tab .tabs-content-area {
    padding: 12px 0px 15px;
}
.service-details-tab .ui-tabs .ui-tabs-panel {
    padding: 1em 1.4em;
    border: 1px solid #ccc;
}

/*-----Start Service-details-Two style------*/
.features-option li {
    margin-bottom: 2px;
}
.features-option li a {
    background: #f3f6f9;
    color: #232323;
    position: relative;
    display: block;
    padding: 14px 15px 14px 18px;
    font-weight: 600;
    font-size: 17px;
    transition: 0.5s;
}
.features-option li a:hover,
.features-option li a.active {
    background: orange;
    color: #fff;
}
.features-option li a i {
    position: absolute;
    right: 15px;
    top: 18px;
}
.btn-common.btn-presentation a {
    padding: 16px 35px;
    font-size: 16px;
    display: block;
}
.call-do-feature {
    text-align: center;
    background: linear-gradient(
            rgba(119, 68, 217, 0.87),
            rgba(119, 68, 217, 0.87)
        ),
        transparent url(../images/fbg3.jpg) 0% 0% / auto repeat scroll;
    padding: 30px 18px 37px;
}
.call-do-feature .feature-title {
    margin-bottom: 15px;
}
.call-do-feature .feature-title h4 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-top: 5px;
}
.btn-call-do a {
    display: inline-block;
    padding: 10px 30px;
    background: #fff;
    color: orange;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 30px;
}
.btn-call-do a:hover {
    color: #0056b3;
}
.video.service-video {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
}

/*-----Start Footer Section style------*/
.footer {
    background-color: #eff2f7;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-image: url(../images/footer-bg.png);
    background-size: cover;
}
.footer-widget-title h5 {
    font-size: 20px;
    margin-bottom: 35px;
    margin-top: 15px;
    position: relative;
    font-weight: 600;
}
.footer-helpful-links ul li {
    margin-bottom: 6px;
    position: relative;
    transition: 0.5s;
    color: #f8f9fe;
    padding-left: 19px;
}
.footer-helpful-links ul li::before {
    position: absolute;
    content: "";
    left: 0;
    top: 14px;
    background: orange;
    height: 1px;
    width: 10px;
    font-size: 14px;
}
.footer-helpful-links ul li:hover {
    color: orange;
    margin-left: 20px;
}
.footer-helpful-links ul li:hover a {
    color: orange;
}
.footer-contact p {
    margin-bottom: 15px;
}
.footer-social-icon a {
    transition: 0.3s;
    margin-right: 10px;
    font-size: 15px;
}
.footer-social-icon a:hover {
    color: orange;
}
.footer-social-icon ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 5px;
    margin-top: 0;
    padding-left: 0;
    position: inherit;
}
.footer-social-icon ul li a {
    font-size: 14px;
}
/*----------Start Footer Copyright Section------*/
.footer-copyright-section {
    background: #eff2f7;
    border-top: 1px solid #ddd;
    position: relative;
}
.footer-copyright-link ul li {
    display: inline-block;
    padding: 0 10px;
}
.footer-bottom-left-text p {
    margin: 0;
}
.footer-copyright-text {
    padding: 20px 0;
}
.footer-copyright-link ul li a {
    font-size: 14px;
}
.footer-copyright-link ul li:hover a {
    color: orange;
}
.footer-copyright-link {
    text-align: right;
    padding: 20px 0;
}

/*----------Pagination---*/
.pagination {
    display: inline-block;
}
.pagination a {
    font-size: 18px;
    font-weight: 500;
    color: orange;
    float: left;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 0 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
}
.pagination a i {
    line-height: 40px;
}
.pagination a.active {
    background-color: orange;
    color: white;
    border: 1px solid orange;
}
.pagination a:hover {
    background: orange;
    color: #fff;
}

/*----------To Top---*/
#to-top {
    position: fixed;
    bottom: 40px;
    right: 80px;
    font-size: 34px;
    width: 60px;
    height: 60px;
    line-height: 65px;
    background: orange;
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 99999;
    border-radius: 100%;
    transition: 0.3s;
}

/*Loader*/

.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 666;
}
.loader {
    position: relative;
    z-index: 201;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    width: 48px;
    height: 48px;
    border: 2px solid #c216db;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 0;
    background: orange;
    width: 3px;
    height: 24px;
    transform: translateX(-50%);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}
.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}
.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/** When page loaded **/
.loaded .loder-section.left-section {
    left: -100%;
}
.loaded .loder-section.right-section {
    right: -100%;
}
.loaded .loader-wrapper {
    visibility: hidden;
}
.loaded .loader {
    top: -100%;
    opacity: 0;
}

/*particles js*/
div#particles {
    position: relative;
}

#webcoderskull {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 20px;
    width: 100%;
}
div#particles .carousel-slider-one {
    background: inherit;
}

.blog-appoinment.appoinment-wrapper input.form-control::placeholder {
    color: #222 !important;
}

.blog-appoinment.appoinment-wrapper .form-group textarea::placeholder {
    color: #222 !important;
}

/* From Uiverse.io by eirikvold */
button {
    font-family: inherit;
    font-size: 18px;
    background: linear-gradient(to bottom, orange 0%, orange 100%);
    color: white;
    padding: 0.8em 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 25px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

button span {
    display: block;
    margin-left: 0.4em;
    transition: all 0.3s;
}

button svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: all 0.3s;
}

button .svg-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-right: 0.5em;
    transition: all 0.3s;
}

button:hover .svg-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
}

button:hover svg {
    transform: rotate(45deg);
}
