* { 
    margin:0; 
    padding:0; 
    -webkit-box-sizing: border-box;	
    box-sizing:border-box; 
    font-family: 'Poppins', sans-serif;
    border-collapse:collapse;
    outline: none;
}

body {
  margin: 0 auto;
  padding: 0;
  margin-top: 80px;
}

.greenButton{
    background-color: #4CAF50;
    cursor: pointer;
    border: 1px solid #009688;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
}
.greenButton:hover{
    background-color: #348437;
}

.linkButton {
       background-image: linear-gradient(#096ab0, #003e89);
       border: 0;
       border-radius: 4px;
       box-sizing: border-box;
       color: #fff;
       cursor: pointer;
       font-size: 14px;
       margin: 0px;
       padding: 10px 15px;
       text-align: center;
       user-select: none;
       -webkit-user-select: none;
       touch-action: manipulation;
        text-decoration: none;
}
.text-reset{
    color:#1c0990;
}

.linkButton:hover {
    transition: all .1s ease;
    background-image: linear-gradient(#003e89, #096ab0);
}

.linkButtonRed {
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    outline: none;
    color:#fff;
    cursor: pointer;
    background-image: linear-gradient(#631717, #ff0000);
    box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
    position: relative;
    z-index: 0;
    border-radius: 4px;
    text-decoration: none;
}
.linkButtonRed:hover {
    transition: all .1s ease;
    background-image: linear-gradient(#ff0000, #631717);
}

.linkButtonActive {
    padding: 10px 15px;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-image: linear-gradient(#717171, #000000);
    box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
    position: relative;
    z-index: 0;
    border-radius: 4px;
    text-decoration: none;
}
.linkButtonActive:hover {
    transition: all .1s ease;
    background-image: linear-gradient(#000, #666);
}
.linkButtonGreen {
    padding: 5px 15px;
    font-size: 14px;
    border: none;
    outline: none;
    cursor: pointer;
    color: rgb(255, 255, 255);
    background-image: linear-gradient(#005d0e, #2eb407);
    box-shadow: rgba(0, 0, 0, .3) 0 5px 15px;
    position: relative;
    z-index: 0;
    border-radius: 4px;
    text-decoration: none;
}
.linkButtonGreen:hover {
    transition: all .1s ease;
    background-image: linear-gradient(#2eb407, #005d0e);
}



.container {
  margin: 0 auto;
  width: 1380px;
}
.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10 {	
	-webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
}
.fourthCol, .thirdCol, .halfCol, .fullCol, .threeFourthCol, .twoThirdCol {
	-webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
}
.default-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: #5138ee;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 2px;
    text-decoration: none;
}
.default-btn:hover {
    background-color: #1c0990;
    transition: all 0.4s ease-in-out;
}
.btn-read-more {
    font-size: 16px;
    color: #5138ee;
    font-weight: 600;
    margin: 0;
    padding: 0;
    text-decoration: none;
    display: inline-block;
}
.btn-read-more:hover {
    letter-spacing: 3px;
    transition: all 0.4s ease-in-out;
}
.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    border: 0px;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 3px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0669d3;
    border-color: #0669d3;
    transition: all 0.4s ease-in-out;
}
.section-box {
    display: inline-block;
    width: 100%;
}
.bg-warning-15 {
    background-color: rgba(255, 193, 7, 0.15);
}
.bg-blue-15 {
    background-color: rgba(29, 59, 83, 0.15);
}
.bg-success-15 {
    background-color: rgba(0, 128, 0, 0.15);
}
.bg-info-15 {
    background-color: rgba(23, 162, 184, 0.15);
}
.rounded-3 {
    border-radius: 10px !important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.v-center {
    align-self: center;
    align-items: center;
}
.text-center {
	text-align:center;
}
.p-3 {
    padding: 1rem!important;
}
.fw-bold {
    font-weight: 700 !important;
}
.h5, h5 {
    font-size: 1.25rem;
}
.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}
.h-100 {
    height: 100%!important;
}
.text-warning {
    color: #ffc107!important;
}
.text-success {
    color: #28a745!important;
}
.text-info {
    color: #17a2b8!important;
}
.display-6 {
    font-size: 3.5rem;
    font-weight: 900;
}
.ml-3, .mx-3 {
    margin-left: 1rem!important;
}
.mb-0, .my-0 {
    margin-bottom: 0!important;
}
.section-wrap {
    width: 100%;
    float: left;
    padding: 50px 0;
    margin: 0;
    position: relative;
}
.mt-30 {
    margin-top: 30px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-80 {
    margin-bottom: 80px;
}
/***********************header*******************************/
.header {
	background-color:#fff;
	width: 100%;
    float: left;
	opacity:1;
	position: fixed;
	top: 0;
    z-index: 99999;
    left: 0;
    right: 0;
	-webkit-box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
	-moz-box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
	box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
}
.logo {
    width: 30%;
    float: left;
    padding: 22px 0;
}
.logo img {
    width: 197px;
	display:block;
}
.menu-links {
    float: left;
    width: 70%;
}
.menu-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}
.menu-links ul li {
    margin: 0;
    padding: 25px 0;
    text-transform: capitalize;
    color: #000;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.menu-links ul li a {
    margin: 0;
    padding: 0 15px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.menu-links ul li:last-child a { 
	padding-right:0;
}
.menu-links ul li a:hover {
    color: #5138ee;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.menu-links .dropdown-menu {
    display: none;
    position: absolute;
	top:75px;
    background-color: #f9f9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 8px;
    z-index: 1;
}
.menu-links ul .dropdown-menu li{ 
    margin: 0;
    padding: 5px 0;
    text-transform: capitalize;
    color: #000;
    display: inline-block;
	width:100%;
	text-align:left;
}
.menu-links ul .dropdown-menu li a{ 
	font-size: 14px;
    padding: 0 10px;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.login {
	background: #5138ee;
    padding: 7px 15px!important;
    color: #fff!important;
    border-radius: 3px;
}
.login:hover {
	background: #000;
    padding: 7px 15px!important;
    color: #fff!important;
    border-radius: 3px;
}
#toggle {
    display: none;
}
#menu {
    display: none;
}

/**************************Home Banner******************************/
.home-banner {
    width: 100%;
    float: left;
    margin: 0 auto;
}
.flexslider .slides > li {  
    position: relative;
    background: #000;
    max-height: 600px;
}
.flexslider .slides img {
    width: 100%;
    display: block;
    opacity: 0.5;
}
.flex-direction-nav {
	display:none;
}
.bar {
    height: 4px;
    width: 85px;
    margin: 20px auto 0;
    background: #5138ee;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 16px;
}
.sub-title {
    width: 70%;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    color: #555;
    line-height: 28px;
    
}
/* .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #fff;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}*/

.slider-text {
    position: absolute;
    width: 60%;
    color: #fff;
    margin: 0 auto;
    padding: 10px 0;
    top:25%;
    text-align:center; 
    left:0;
    right:0;	
}
.slider-text h3{   
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    line-height:52px;
    margin: 0 0 15px 0;
    padding: 0;    
}
.slider-text h3 span{  
    font-weight: 800;
    position: relative;
    display: inline-block;
    z-index: 1;
	font-family: 'Carter One', cursive;
	color:#fda31b;
	-moz-text-shadow: 1px 1px 0px #fff;
	text-shadow: 1px 1px 0px #fff;
}
.slider-text p{   
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    margin: 0 0 18px 0;
    padding: 0;    
}
.btn-slider {
    display: inline-block;
    padding: 12px 30px;
	border-radius:3px;
	margin: 0 10px;
    background-color: #5138ee;
    color: #fff;
    font-size: 16px;
    font-weight: 600;  
    text-decoration: none;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.btn-slider:hover {   
    background-color: #000;
    color: #fff;    
    text-decoration: none;
}
.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(255, 255, 255, 0.9);
    cursor: default;
}
.flex-control-paging li a {
    width:15px;
	height:15px;
    background: #fff;
    background: rgba(255, 255, 255, 0.5);
}
/******************************counter*********************************************/
.counter-wrap {
	
}
.counter-item {
	margin: 5px auto;
    padding: 10px 15px;
	border-radius: 10px;	
}
.counter-item h5 {
	font-weight:700;
}
.counter-item.bg-warning-15 {
	border-color: rgba(255, 193, 7, 0.15);
	border-bottom-style:solid;
	border-width:1px;
	transition: all .2s ease-in-out;
}
.counter-item.bg-warning-15:hover {
	border-color: rgba(255, 193, 7, 0.6);
	transform: translateY(-0.1875rem)!important;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.counter-item.bg-blue-15 {
	border-color: rgba(29, 59, 83, 0.15);
	border-bottom-style:solid;
	border-width:1px;
	transition: all .2s ease-in-out;
}
.counter-item.bg-blue-15:hover {
	border-color: rgba(29, 59, 83, 0.6);
	transform: translateY(-0.1875rem)!important;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.counter-item.bg-success-15 {
	border-color: rgba(0, 128, 0, 0.15);
	border-bottom-style:solid;
	border-width:1px;
	transition: all .2s ease-in-out;
}
.counter-item.bg-success-15:hover {
	border-color: rgba(0, 128, 0, 0.6);
	transform: translateY(-0.1875rem)!important;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.counter-item.bg-info-15 {
	border-color: rgba(23, 162, 184, 0.15);
	border-bottom-style:solid;
	border-width:1px;
	transition: all .2s ease-in-out;
}
.counter-item.bg-info-15:hover {
	border-color: rgba(23, 162, 184, 0.6);
	transform: translateY(-0.1875rem)!important;
    box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
/*************************************services*******************************************/
.services-wrap {
	background:#eff3f5;
	border-top:1px solid #ddd;
	border-bottom:1px solid #ddd;
	padding:80px 0;
}
.section-heading {
	
}
.section-heading h2{
	 font-size: 42px;
    line-height:42px;
    color: #000;
}
.section-heading p {
    font-size: 18px;
    line-height: 28px;
    color: #555;
    width: 70%;
    margin:20px auto;
    text-align: center;
} 
.service-single {
	 border-radius: 10px;
	 margin: 10px auto; 
	 border:7px solid #fff;
	 text-align:center;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e3e8ec+0,ffffff+100 */
background: rgb(227,232,236); /* Old browsers */
background: -moz-linear-gradient(-45deg,  rgba(227,232,236,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(-45deg,  rgba(227,232,236,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(135deg,  rgba(227,232,236,1) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e3e8ec', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

	
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.12);
}
.service-single .inner-box {
    position: relative;
    overflow: hidden;
	z-index:2;
	padding: 10px 15px;
}
.service-single .inner-box:before {
    position: absolute;
    content: '';
    left: 0%;
    top: 0%;
    width: 0px;
    height: 100%;
	z-index:-1;
    background-color: #fff;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}
.service-single .inner-box:hover::before {
    width: 100%;
}
.service-icon {
    margin-top: 20px;
}
.service-icon img{
	width:50px;
}
.service-single h5 {
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0;
    color: #222;
}
.line-divider {
    height: 1px;
    background: #ddd;
    width: 100%;
    margin: 15px 0;
}
.cta a  {
	color:#5138ee;
	font-weight:600;
	text-decoration:none;
}
.cta a:hover  {
	color:#000;	
	text-decoration:none;
}

/**********************************************why-us**************************************************/
.why-us-wrap {
	padding:80px 0;
}
.why-us-content {
	border: 1px solid #ddd;
    width: 100%;
    margin: 15px auto;
    padding: 30px 20px;
    border-radius: 5px;
	transition: all .2s ease-in-out;
}
.why-us-content:hover {
	transform: translateY(-0.1875rem)!important;
	box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.why-us-img {
	order:1;	
}
.why-us-img img{
	width:200px;
	display:block;
}
.why-us-text {
	order:2;
	padding-left: 25px;
}
.why-us-text h3{
	font-size: 22px;
    color: #000;
    margin-bottom: 5px;
    font-weight: 600;
    line-height:30px;
}
.why-us-text h3 a {
	color:#000;
	text-decoration:none;
}
.why-us-text h3 a:hover {
	text-decoration:underline;
}
.why-us-text p{
	font-size:15px;
	color:#555;
	margin-bottom:5px;
	font-weight:normal;
	line-height: 22px;
}
.btn-full {
	margin: 20px auto;
    width: 100%;
    float: left;
}
.btn-full a {
	display: inline-block;
    padding: 12px 25px;
    margin: 0;
	border-radius:3px;
    background-color: #5138ee;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-full a:hover {
	background-color: #000;
}
.why-us-btn a  {
	color:#5138ee;
	-moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.why-us-btn a:hover  {
	color:#000;
}
/*********************demo-wrap********************************/
.demo-wrap {
	background:#eff3f5;
	padding:80px 0;
}
.section-heading h3 {
	font-size: 35px;
    color: #000;
    font-weight: 600;
    line-height: 48px;
    width: 60%;
    text-align: center;
    margin: 0 auto 15px;
}
.demo-block {
	text-align:center;
	margin: 5px auto;
    padding: 10px 15px;
}
.demo-img {
    background: #fff;
    border-radius: 10px;
    margin: 10px auto 25px;
	width: 80%;
	overflow:hidden;
	text-align: center;
	padding:10px;
	transition: all .2s ease-in-out;
}
.demo-img:hover {
	transform: translateY(-0.1875rem)!important;
	box-shadow: 0 0.375rem 1.5rem 0 rgb(140 152 164 / 13%);
}
.demo-img img{ 
	width: 256px;
    display: block;
    margin: 0 auto;
    text-align: center;
}
.demo-text h4 {
	font-size:22px;
    color: #222;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    margin: 0 auto;
}
.demo-text p {
	font-size:14px;
    color: #555;
    line-height: 24px;
    text-align: center;
    margin: 10px auto;
}
.demo-btn a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0;
	border-radius:3px;
    background-color: #5138ee;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.demo-btn a:hover { 
	background-color: #000;
}
.app-download {
    margin-top: 25px;
}
.app-download p{
    margin: 10px 0;
}
/*****************************************feature-wrap***************************************/
.feature-wrap {
	
}
.feature-wrap .halfCol {  
    margin: 5px auto;
    padding: 10px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.feature-content h3{
	font-size:38px;
	color:#000;
	margin-bottom:15px;
	font-weight:600;
	line-height: 50px;
}
.feature-content p{
	font-size:18px;
	color:#555;
	margin-bottom:15px;
	font-weight:normal;
	line-height: 28px;
}
.feature-content ul {
	list-style:none;
	margin:20px auto;
}
.feature-content ul li{
	list-style:none;
	font-size:16px;
	color:#222;
	line-height: 28px;
	margin-bottom: 15px;
}
.feature-img  {
	width:100%;
	display:block;
	border-radius:10px;
	overflow:hidden;
	position:relative;
}
.feature-img img {
	width:100%;
	display:block;
	-webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}
.feature-img img:hover {
	-webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.btn-primary {
	display: inline-block;
    padding: 10px 25px;
    margin: 0;
	border-radius:3px;
    background-color: #5138ee;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn-primary:hover {
	 background:#000;
}
/***************************************testimonials**********************************/
.testimonial-wrap {
	 background:#eff3f5;
	 padding:80px 0;
}
.testimonial-wrap .item {
	 align-items: center;
	 background-color: #fff;
	 color: white;
	 display: flex;
	 height: auto;
	 justify-content: center;
	 position: relative;
	 overflow: hidden;
	 padding: 40px;
	 border-radius:0;
	 border:10px solid #FAD2E1;
}
.testimonial-wrap .item.bd-bg-10 {
    border-color: #DDD3FA;
}
.testimonial-wrap .item.bd-bg-9 {
    border-color: #D1ECFD;
}
.testimonial-wrap .item.bd-bg-6 {
    border-color: #BEE1E6;
}
.testimonial-wrap .owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
	position: absolute;
    top: -90px;
    right: 0;
}

.testimonial-wrap .owl-prev {	  
    background: #f1f1f2!important;
    border:1px solid #ddd!important;
}
.testimonial-wrap .owl-next {	
    background: #f1f1f2!important;
    border:1px solid #ddd!important;
    
}
.feedback-img {
	 margin-right:15px;
}
.rating {
    display: inline-block;
    margin: 5px 10px;
}
.rating .fa {
    font-size: 18px;
    color: #f9bd0b;
}
.feedback-desc {
    display: block;
    color: #000;
}
.feedback-author {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 2px;
    padding: 0;
}
.feedback-position {
    color: #555;
    font-weight: normal;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
.feedback-text p {
    font-size: 17px;
    line-height: 28px;
    color: #333;
    font-weight: 500;
}
.feedback-header {
    margin-bottom: 15px;
}
.owl-prev {
    background: #fff!important;
    z-index: 999999;
    width: 40px;
    height: 40px;
    border-radius: 50%!important;
}
.owl-next {
    background: #fff!important;
    z-index: 999999;
    width: 40px;
    height: 40px;
    border-radius: 50%!important;
}
.owl-carousel .owl-nav span {
    font-size: 40px;
    color: #555;
    line-height: 30px;
}
.owl-carousel .owl-item img {
    width: 60px;
    height: 60px;
    /* object-fit: cover; */
}
.rounded-circle {
    border-radius: 50% !important;
}
.bg-light {
	background:#eff3f5;
}
.owl-theme .owl-dots {
    margin-top: 20px;
}
/*********************************company-info**************************************/
.company-info-single {
	margin: 5px auto;	
	border-radius:10px;
	background: #eff3f5;
	padding: 1rem;
}
.company-info-single h5{
	font-size:18px;
	font-weight:600;
}
.company-info-single  a {
	color:#5138ee;
}
     
/*********************************footer********************************************/
.footer {
    background:#eff3f5;
    border-top:1px solid #ddd;
    position: relative;
    z-index: 1;
}
.footer:before {  
    content: "";
    background-image: url("/images/pattern5.png");
    background-repeat:repeat;		
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    opacity: 0.4;
}
.footer h4{ 
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.footer .fourthCol { 
    margin: 5px auto;  
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.footer-links {
	 list-style:none;
	 margin:0;
	 padding:0;
}
.footer-links li{	
	 margin:0;
	 padding:0;
}
.footer-links li a{	
	 margin:5px 0;
	 padding:0;
	 font-weight:400;
	 color:#1c0990;
	 text-decoration:none;
	 display: inline-block;
}
.footer-links li a:hover{		
	 text-decoration:underline;
}
.subscribe-box {
	
}
.subscribe-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}


.form-control {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius:4px;
    transition: 0.5s;
}
.form-input {
	margin-bottom:15px;
}
.footer .social-icons {
	list-style:none;
	margin:0;
	padding:0;	
}
.footer .social-icons li {
	display:inline-block;
	margin:0;
	padding:0;	
}
.footer .social-icons li a{
	display: inline-block;
    margin: 0;
    padding: 0 10px;
    color: #fff;
    background: #5138ee;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 35px;
    font-size: 16px;
}
.footer .social-icons li a:hover{ 
	color: #fff;
    background: #000;
}
.footer-box {
    margin: 10px auto;
}
.footer-btm {
	border-top:1px solid #ddd;
	width:100%;
	float:left;
                font-size: 12px;
	padding-top: 10px;
	margin-top:20px;
}
.footer-btm a  {
	font-size:12px;
	font-weight:300;
              color:#1c0990;
             text-decoration: underline;
}
  

/****************************************************************/


.inner-page-cover {
    background: #f1f2f3;
    padding: 20px 0;
    width: 100%;
    float: left;  
}
.inner-page-cover h1 {
    font-size: 24px;
    color: #000;
    padding: 10px 0;
    margin: 0;
    font-weight: 600;
}
.page-breadcrumb {
    position: relative;
    padding: 0;
    margin: 5px 0 0 0;
    list-style: none;
}
.page-breadcrumb li {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    display: inline-block;
    text-transform: capitalize;
    list-style: none;
    padding: 0 30px 0 0;
    margin: 0 5px 0 0;
}
.page-breadcrumb li a {
    font-weight: 600;
    color: #555;
    font-size: 15px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.page-breadcrumb li a:after {
    position: absolute;
    content: '\f061';
    right: -3px;
    top: 0px;
    color: #5138ee;
    font-size: 16px;
    font-family: 'FontAwesome';
}
.page-breadcrumb li:last-child {
    padding-right: 0px;
    margin-right: 0px;
}


.breadcrumb-item+.breadcrumb-item {
    padding-left: 0.5rem;
}

.inner-page-wrap {
    width: 100%;
    background: #fff;
    float: left;
    padding: 50px 0;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.contact-us-page h3 {
    margin-bottom: 15px;
}
.inner-page-wrap .contact-info p {
    margin-bottom: 15px;
    color: #555;
    padding: 0;
    line-height: 26px;
}
.inner-page-wrap h5 {
    font-size: 22px;
    color: #222;
    line-height: 36px;
    font-weight: 600;
    padding: 0px;
    margin: 0;
}
.inner-page-wrap h4 {
    font-size: 22px;
    color: #222;
    line-height: 36px;
    font-weight: 600;
    padding: 0px;
    margin: 0;
}
.inner-page-wrap p {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: normal;
    line-height: 32px;
    color: #333;   
    padding: 10px 0px;
}
.inner-page-wrap ul {
    margin: 10px 0 20px;
    padding: 0;
    display: block;
}
.inner-page-wrap ul li {
    margin: 0;
    padding: 3px 0;
    font-size: 18px;
    margin-left: 15px;
    list-style: circle;
    color: #555;
    font-style: italic;
}
.contact-us-page {   
    position: relative;
    z-index: 1;
}
.contact-us-page:before {  
    content: "";
    background-image: url("/images/map.png");
    background-repeat:no-repeat;
    background-position: center;
    background-size: 70%;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    opacity: 0.6;
}
.contact-us-page .contact-icon {
    margin-right: 10px;
}
.error{
    background-color:#fde03b;
    color: #000;
    padding:0px;
}
.contact-form-wrapper {
    padding: 60px;
    background: #fff;
    -webkit-box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
    -moz-box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
    box-shadow: 0 0 12px rgba(30, 34, 40, 0.12);
}
.contact-form-wrapper input[type=text],.contact-form-wrapper input[type=email],.contact-form-wrapper input[type=password],.contact-form-wrapper input[type=number], .contact-form-wrapper select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    height: auto;
}
.contact-form-wrapper button[type=submit] {
    background-color: #5138ee;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-form-wrapper button[type=submit]:hover {
    background-color: #000;
}
/************************service-page*****************************************/
.service-page {
    background: #fff;  
  
}


/**********************about-us-page***********************************/
.about-us-page {
    width: 100%;
    background: #fff;
    padding: 80px 0 50px;
    z-index: 1;
    position: relative;
    overflow: hidden; 
}
.about-us-page h2 {
    font-size: 48px;
    color: #000;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contentArea{
    font-size: 12px;
    color:#000;
    line-height:16px;
}
.contentArea h2 {
    font-size: 20px;
    color: #000;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}


.about-page-counter {
    width: 100%;
    float: left;
    padding: 20px 0;
    margin: 0;
    position: relative;
}

.about-section .about-img-wrap {
    position: relative;
    z-index: 1;
    padding-right: 100px;
}
.about-image {  
    animation: UpDown 8s linear infinite;
}
.about-section .about-image img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    -moz-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
}
.binary-icon {  
    animation: UpDown 5s linear infinite;
}
.binary-icon img {
    width: 100%;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    -moz-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
}
@keyframes UpDown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
	50% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
	}
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}
.circle-shape1::after {
    -webkit-animation: right_left 5s -1s alternate infinite linear;
    animation: right_left 5s -1s alternate infinite linear;
}
.circle-shape1::after {
     width: 100px;
    height: 100px;
    background-color: #5138ee;
    border-radius: 50%;
    position: absolute;
    content: "";
    animation-duration: 20s;
    z-index: -1;
    top: 0;
}
.circle-shape2::after {
    -webkit-animation: right_left 5s -1s alternate infinite linear;
    animation: right_left 5s -1s alternate infinite linear;
}
.circle-shape2::after {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #f3f5f7;
    position: absolute;
    content: "";
    z-index: -1;
    bottom: 0;
}
@keyframes right_left {
  0% {
    right: 0;
    transform: translateX(0%);
  }
  100% {
    right: 100%;
    transform: translateX(100%);
  }
}
.about-us-text {
    position: relative;
    z-index: 9;
}
.about-us-page ul {
    margin: 10px 0 20px;
    padding: 0;
    display: block;
}
.about-us-page ul li {
    margin: 0;
    padding: 3px 0;
    font-size: 18px;
    margin-left: 15px;
    list-style: circle;
    color: #555;
    font-style: italic;
}

.contentArea ul {
    margin: 10px 0 20px;
    padding: 0;
    display: block;
}
.contentArea ul li {
    margin: 0;
    padding: 3px 0;
    font-size: 12px;
    margin-left: 15px;
    list-style: circle;
    color: #555;
}

/*************************************************************/

.pos-inner-img {
    width: 100%;
    margin: 0 auto 15px;
    text-align: center;
    padding-right: 50px;
}
.pos-inner-img img {
    width: 100%;
    border-radius: 10px;
    border: 10px solid #fff;
    -webkit-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    -moz-box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
    box-shadow: 0 0 12px rgba(30, 34, 40, 0.21);
}



/************************Responsive media***********************************/

@media only screen and (max-width:1420px) {
     .container {
		 width:100%;
		 padding:0 15px;
	  }
}
@media only screen and (max-width:1360px) {

    .slider-text { 
		width: 80%;    
		top: 25%;	   
	}
}
@media only screen and (max-width:1200px) {
	.slider-text {
		width:100%;
		top: 18%;
	}
	.slider-text h3 {		
		font-size: 48px;		
		line-height: 65px;
		margin: 0 0 10px 0;	
	}
	.why-us-content {  
		min-height: 270px;
	}
	.menu-links ul li a {
		padding: 0px 12px;
	}
}
@media only screen and (max-width:1160px) {
    
}
@media only screen and (max-width:1023px) {
	.counter-wrap .fourthCol {
		 width:50%;
	  }
	.company-info-wrap .fourthCol {
		width: 50%;
	}
	.demo-img img{ 
		width: 100%;     
	}
        
  
}
@media only screen and (max-width:992px) {
	
	.menu-links {
		display: none;
	}
	
	/**********************toggle menu***************************/
		 #menu {
			display: block;
		}
		#toggle {
		  display: block;
		  width: 28px;
		  height: 30px;
		  margin: 40px auto 2px;
		  float: right;
		  margin-right: 10px;
		}

		#toggle span:after,
		#toggle span:before {
		  content: "";
		  position: absolute;
		  left: 0;
		  top: -9px;
		}
		#toggle span:after{
		  top: 9px;
		}
		#toggle span {
		  position: relative;
		  display: block;
		}

		#toggle span,
		#toggle span:after,
		#toggle span:before {
		  width: 100%;
		  height: 4px;
		  background-color: #5138ee;
		  transition: all 0.3s;
		  backface-visibility: hidden;
		  border-radius: 2px;
		}
		/* on activation */
		#toggle.on span {
		  background-color: transparent;
		}
		#toggle.on span:before {
		  transform: rotate(45deg) translate(5px, 5px);
		}
		#toggle.on span:after {
		  transform: rotate(-45deg) translate(7px, -8px);
		}
		#toggle.on + #menu {
		  opacity: 1;
		  visibility: visible;
		}
		/* menu appearance*/
		#menu {
		  position: fixed;
		  top: 77px;
		  right: 0;
		  color: #999;
		  width: 300px;
		  z-index: 9999;
		  padding: 10px;
		  margin: auto;
		  text-align: left;		  
		  background: white;
		  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
		  opacity: 0;
		  visibility: hidden;
		  transition: opacity .4s;
		}
		/*#menu:after {
		  position: absolute;
		  top: -15px;
		  left: 95px;
		  content: "";
		  display: block;
		  border-left: 15px solid transparent;
		  border-right: 15px solid transparent;
		  border-bottom: 20px solid white;
		}*/
		#menu ul, #menu li, #menu li a {
		  list-style: none;
		  display: block;
		  margin: 0;
		  padding: 0;
		}
		#menu li a {
		  padding: 5px 5px;
		  color: #000;
		  text-decoration: none;
		  transition: all .2s;
		}
		#menu li a:hover,
		#menu li a:focus {
		  background: #5138ee;
		  color: #fff;
		}
	
	
	.services-wrap .fourthCol {
		 width:50%;
	  }
        .feature-wrap .halfCol { 
                      width:100%;
        }
        .feature-img-block {
                display:none;
        }
        .slider-text {
		width:100%;
		top: 10%;
	}
	.slider-text h3 {		
		font-size: 36px;		
		line-height: 50px;
		margin: 0 0 10px 0;	
	}
	.slider-text p {  
		font-size: 16px;
		line-height: 20px;		
	}
	.why-us-wrap .halfCol {		
		width:100%;
	}
	.why-us-content {  
		min-height: auto;
	}
   	.footer .fourthCol {			
	   width:50%;
	}
	.section-heading h3 {
            width: 80%;
	}
        .contact-us-page .halfCol {		
		width:100%;
	}
        .contact-form-wrapper {
            margin-top: 50px;
        }
        .about-us-page .halfCol {		
		width:100%;
	}
        .inner-page-wrap .halfCol {		
		width:100%;
	}
        .about-us-page .halfCol.floating-img {
            width: 50%;
        }
        .service-page .fourthCol {
            width: 50%;
        }

   
   
}
@media only screen and (max-width:767px) {
	.flexslider .slides > li {  
		min-height: 350px;
	}
	.home-banner .flexslider .slides img {
		height: auto;
		min-height: 350px;
		object-fit: cover;
	}
       .feature-content h3 {
		font-size: 24px;
		line-height:34px;
	  }
        .demo-wrap .thirdCol {
		 width:100%;			   
	}
	.services-wrap { 
		padding: 50px 0;
	}
	.section-heading h2 {
            font-size: 28px;
            font-weight: 600;
            line-height: 36px;
        }
	.section-heading p {
		font-size: 15px;
		line-height: 24px;
		width: 100%;
		margin: 15px auto;	   
	}
	.why-us-wrap {
		padding: 50px 0;
	}
	.demo-wrap {
		padding: 50px 0;
	}
	.section-heading h3 {
		font-size: 24px;
		line-height: 36px;
		width:100%;
	}
	.testimonial-wrap {
		padding: 50px 0;
	}
	.display-6 {
		font-size: 2.5rem;
	}
	.demo-img img{ 
		width:256px;     
	}
	.feature-content p {
		font-size: 16px;
		line-height: 26px;
	}
        .about-us-page h2 {        
            font-size: 26px;          
            line-height: 38px;
            margin-bottom: 5px;
            margin-top: 15px;
        }
        .inner-page-wrap p {
            font-size: 17px;
            line-height: 32px;
        }
        .why-us-text h3 {
            font-size: 20px;    
            line-height: 28px;
        }
        .slider-text {
            width: 100%;
            top: 15%;
        }
        .slider-text h3 {
            font-size: 28px;
            line-height: 38px;
            margin: 0 0 10px 0;
            font-weight: 600;
        }
	
  
}

@media only screen and (max-width:600px) {
  .counter-wrap .fourthCol {
	  width:100%;
  }	
    .company-info-wrap .fourthCol {
		width: 100%;
	}
   .slider-text {
		width:100%;
		top: 5%;
	}
	.slider-text h3 {		
		font-size: 28px;		
		line-height: 38px;
		margin: 0 0 10px 0;	
		font-weight:600;
	}
	.slider-text p {  
		font-size: 15px;
		line-height: 20px;		
	}
	.btn-slider {		
		padding: 8px 15px;
	}
	.why-us-content {
		width: 100%;		
		display: block!important;
		float: left;
	}
	.why-us-img {
		order: 1;
		width: 100%;
		float: left;
		margin: 0 auto;
		text-align: center;
	}
	.why-us-img img {
		width: 130px;
		display: inline-block;
	}
	.why-us-text {
		order: 2;
		padding-left: 25px;
		width: 100%;
		float: left;
		text-align: center;
	}
	 .services-wrap .fourthCol {
		  width:100%;
	  }	
	  .testimonial-wrap .owl-theme .owl-nav {  
		display: none;
	}	
        .contact-form-wrapper {
            padding: 30px;
        }
        .service-page .fourthCol {
            width:100%;
        }
  
}
@media only screen and (max-width:520px) {

  	.footer .fourthCol {		
	   width:100%;
	}
	.demo-img {  
       width: 100%;  
	}
}

@media only screen and (max-width:480px) {
  .demo-img img{ 
		width:100%;     
	}
	.slider-text {
		width: 100%;
		top: 10%;
	}
}



