@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Poppins:wght@300;400;500;600;700&display=swap");
.about-section .about-content .items .item .icon, .service-section .single-service .icon, .portfolio-section .single-portfolio .content, .portfolio-section .single-portfolio .content .link-btn span, .team-section .single-team .content .socials li a, .contact-section .contact-right .contact-item .icon, .footer .widget-wrapper .footer-widget .socials li a i {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===========================
    01.COMMON css 
===========================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #858BA7;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: #3E7EFF;
}

a {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 700;
  margin: 0px;
  color: #2B386D;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 45px;
}
ul, ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-60 {
    margin-bottom: 60px;
}
.py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}
.pb-100 {
    padding-bottom: 100px;
}
.pt-100 {
    padding-top: 100px;
}
.mt-150 {
    margin-top: 150px;
}

.justify-content-center {
    justify-content: center !important;
}

.header-text{
font-weight: 800;
font-size: 41px;
color: #fff;
line-height: 70px;
text-align: center;
margin-top: 145px;
}
.buttonDownload {
	display: inline-block;
	position: relative;
	padding: 10px 25px;
  
	
  
	
	text-decoration: none;
	font-size: 0.9em;
	text-align: center;
	text-indent: 15px;
}

.buttonDownload:hover {
	background-color: #333;
	color: white;
}

.buttonDownload:before, .buttonDownload:after {
	content: ' ';
display: block;
position: absolute;
top: 58%;
right: 96%;
}

/* Download box shape  */
.buttonDownload:before {
	width: 10px;
	height: 5px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.buttonDownload:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 2s linear infinite;
	/*animation-play-state: paused;*/
}

.buttonDownload:hover:before {
	border-color: #4CC713;
}

.buttonDownload:hover:after {
	border-top-color: #4CC713;
	animation-play-state: running;
}
/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 93%;
left: 34%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

/*.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ba1f24;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}*/

.video-play-button:after {
  content: "";
position: absolute;
z-index: 1;
left: 50%;
top: 50%;
transform: translateX(-50%) translateY(-50%);
display: block;
width: 55px;
height: 55px;
border-radius: 50%;
transition: all 200ms;
border: 2px solid #292dc2;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
 display: block;
position: relative;
z-index: 3;
width: 0;
height: 0;
border-left: 18px solid #292dc2;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
margin-top: 7px;
margin-left: 5px;

}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



.video-overlay {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.80);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 1000;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
}
.form-control {
    display: block;
width: 100%;
height: 34px;
padding: 31px 12px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #f4f7fa;
background-image: none;
border: 0px;
border-radius: 4px;
height:63px;
}

.header-contact {
    
	background-image: url("../images/privcy policy.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}

.header-privacy {
    background-image: url("../images/bg1.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.header-contactdesign {
    background-image: url("../images/contact-b.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.header-Security {
    background-image: url("../images/bg1.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.header-terms {
    background-image: url("../images/bg1.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.header-pricing{
    background-image: url("../images/pricing.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
 
  .header-aboutus {
    background-image: url("../images/about us.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
  .header-aboutusnew {
    background-image: url("../images/aboutus-new.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
  .header-resources1 {
    background-image: url("../images/resource.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
  .header-hms {
    background-image: url("../images/hms.jpg");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.hms-para{
	font-size: 18px;
line-height: 30px;
margin-top:25px;
margin-bottom:25px;
}

  .header-fa{
    background-image: url("../images/faq.png");
    position: relative;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    background-position: center;
    background-size: cover;
    
    margin-top: 75px;
}
.headingpara{
	font-size: 18px;
line-height: 30px;

margin-top: 20px;
margin-bottom: 20px;
font-weight: 900;
}
.selectionlist{
	font-size: 18px;
line-height: 30px;
}
.selectionlist li{
	list-style-type:square;
}
.leftendent{
	margin-left:20px;
}
.img-heading{
	margin-left:52px;
}
.why-image{
	
	margin-left:65px;
}



.hms-section {
    position: relative;
    z-index: 1;
    padding: 160px 0 50px;
    background-image: url("../images/hero/hero-bg.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-section {
    position: relative;
    z-index: 1;
    padding: 160px 0 50px;
    background-image: url("../images/hero/hero-bg.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
}

.contactheader-section {
    position: relative;
    z-index: 1;
    padding: 160px 0 50px;
    background-image: url("../images/hero/contact-b.png");
    background-position: bottom center;
    background-repeat: no-repeat;
}

.hms-section h1{
	font-size: 41px;
margin-bottom: 35px;
color:#fff;
}
.top-section h1{
    font-size: 41px;
    margin-top: 45px;
    color: #fff;
}
.hms-section p{
	color: white;
line-height: 30px;
margin-bottom: 90px;
padding-bottom:20px;
	
}
.about-section .about-img {
    position: relative;
    z-index: 1;
   
}
.w-100 {
    width: 100% !important;
}
.about-section .about-img .shape.shape-1 {
    top: 50%;
   
    left: -70px;
}
.about-section .about-img .shape {
    position: absolute;
    z-index: -1;
}

.service-section {
    background-image: url("../images/service-bg.jpg");
}
.img-bg1 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.feature-item .icon {
    float: left;
    background-color:white;
    width: 80px;
    height: 80px;
    text-align: center;
    border-radius: 50%;
    transition: all .6s ease;
    
}
.icon .glyphicon {
	font-size: 35px;
color: #fff;


}
.mb-50 {
    margin-bottom: 50px;
}
.spac-left{
	margin-left:120px;
	
}
.l-section {
    padding-top: 50px;
    
}
.l-page {
    margin-left: auto;
    margin-right: auto;
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1140px;
}
.l-section-heading {
    padding-bottom: 50px;
}
.l-col-widget {
    margin-bottom: 40px;
	
}
.box-look{
	   margin-bottom: 40px;
	border: 1px solid #ddd;
border-radius: 9px;
padding:20px;
	
}
.box-look h6{
	font-size:18px;
	margin-bottom:20px;
}
.contact-clr{
	color:#3E7EFF;
}
.service-section .single-service .content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
}
.downbottom{
	margin-top: 120px;
}
.feature-thumb h3{
	margin-bottom:10px;
}

.downbottom p{
	margin-top:20px;
	margin-bottom:20px;
}
.service-section .single-service {
    margin-bottom: 60px;
}

.service-section .single-service .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s ease-out 0s;
    font-size: 40px;
    color: #3E7EFF;
}



/*clients designs*/
.customer-logos {
  background-color: #3e7eff;
  border-radius:5px;
}
.clienttext h2{
	text-align:center;
	margin-bottom:20px;
	
}
/* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: 100%;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
	margin-top:20px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.downbut {
    position: absolute;
    right: 16px;
    top: 16px;
	display: inline-block;


border-top: 10px dashed;
border-right: 10px solid transparent;
    border-right-color: transparent;
    border-right-style: solid;
    border-right-width: 10px;
border-left: 10px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/*end clients designs*/




/*index second section*/
.about-area {
    position: relative;
    z-index: 5;
}
.section-title .title {
    font-size: 32px;
    padding-top: 10px;
}
.section-title .title span {
    font-weight: 400;
    display: contents;
}
.about-content .text {
    margin-top: 15px;
}
.about-shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    z-index: -1;
}
.about-shape-2 img {
    width: 100%;
}
.spaced{
	margin-bottom:50px;
}

/*header secion*/

/*newlook design*/
.elementor-2 .elementor-element.elementor-element-f309cc3 {
    padding: 180px 0px 0px 0px;
}
.elementor-section {
    position: relative;
}
.elementor-section .elementor-container {
   
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
.elementor-row {
    width: 100%;
    
    display: flex;
}
}
.elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated {
    padding: 10px;
}
.elementor-column-wrap {
    width: 100%;
    position: relative;
}
.elementor-widget-wrap > .elementor-element {
    width: 100%;
}
.elementor-column.elementor-col-100, .elementor-column[
-col="100"] {
    width: 100%;
}
.elementor-element .elementor-widget-container {
    
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
}
.feature-area, .blog-area, .dashbporad-area {
    position: relative;
    padding-top: 100px;
}
.feature-area .rt-design-elmnts.one, .blog-area .rt-design-elmnts.one, .dashbporad-area .rt-design-elmnts.one {
  top: -140px;
right: -212px;
width: 400px;
height: 400px;
display: block;
background-color: #3e7eff;
}
.feature-area .rt-design-elmnts, .blog-area .rt-design-elmnts, .dashbporad-area .rt-design-elmnts {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
}
.feature-area .rt-overlay, .blog-area .rt-overlay, .dashbporad-area .rt-overlay {
  position: absolute;
top: 0;
right: -58px;
width: 100vw;
height: 378px;
transform: rotate(-2deg);
border-top-left-radius: 350px;
border-bottom-left-radius: 350px;
background-color: #f3f3f9;
}
.rt-section-title-wrapper{
	position:relative;
	margin-left: 250px
	
}
.rt-section-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    margin: 0 0 20px;
    text-transform: capitalize;
}
.rt-section-title-wrapper p {
    font-size: 18px;
line-height: 30px;
text-align:lefft;
}
.feature-area .rt-design-elmnts.two, .blog-area .rt-design-elmnts.two, .dashbporad-area .rt-design-elmnts.two {
    line-height: 45px;
    right: 25%;
    width: 45px;
    height: 45px;
    background-color: #eea634;
}
/*end newlook design*/

/*feature section*/
.feature-section-1 {
    position: relative;
    z-index: 1;
    height: 700px;
    display: flex;
    align-items: center;
}
.rt-round-icon-tabs li.nav-item span {
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    color: #132150;
}
.feature-section-1 .shape-image {
    position: absolute;
    left: 0;
    top: 50%;
    width: 45%;
    transform: translateY(-50%);
}

.feature-section-1 .feature-image img {
    width: 100%;
}
.align-items-center {
    align-items: center !important;
}
.feature-section-1 .feature-image {
position: absolute;
left: -70px;
top: 50%;
width: 100%;
border: 8px solid #4d4796;
border-radius: 10px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.feature-section-2 {
    position: relative;
    z-index: 1;
    height: 700px;
    display: flex;
    align-items: center;
}
.feature-section-2 .shape-image {
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    transform: translateY(-50%) rotate(180deg);
}
.feature-section-2 .feature-image {
   position: absolute;
left: 0;
top: 50%;
width: 100%;
}

.feature-section-1 .feature-image img {
    width: 100%;
}

/*feature section*/


.hero-section {
    padding: 120px 0 140px;
}
.hero-section {
    position: relative;
    z-index: 1;
    /*padding: 160px 0 220px;*/
    background-image: url("../images/hero-bg.svg");
    background-position: bottom center;
    background-repeat: no-repeat;
}
.align-items-center {
    align-items: center !important;
}
.hero-section .hero-content h1 {
    font-size: 41px;
	margin-bottom: 35px;
}
.hero-section .hero-content h1 span {
    color: #3E7EFF;
}
.hero-section .hero-content p {
    padding-right: 70px;
}
.hero-section .hero-content p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 28px;
}
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 17px 30px;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: #3E7EFF;
    
}
.hero-section .hero-img img {
    width: 100%;
}
.btn-hover {
    position: relative;
    overflow: hidden;
}
.main-btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 11px 28px;
    font-size: 18px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all .4s ease-in-out;
    border: none;
    background: #3E7EFF;
    overflow: hidden;
}

.about-section {
    position: relative;
    z-index: 1;
}
.section-title span {
    font-family: "Archivo Black", sans-serif;
    font-size: 25px;
    color: #2B386D;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.about-section .about-img img {
    width: 100%;

}
.about-items{
	padding-top:0px;
}

.contentdesign p {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 28px;
}
.contentdesign strong {
    font-size: 18px;
    color: #3E7EFF;
    line-height: 1.3em;
    letter-spacing: .03em;
}
/*faq*/


.panel {
    
    border: 0px solid transparent;
}
.panel-default > .panel-heading {
        background-color: #fff;
   
    box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    border: 0;
    border-radius: 10px;
    padding: 0;
	
}
.panel-group .panel {
    margin-bottom: 20px;
    border-radius: 4px;
}
.panel-collapse{
	background-image: linear-gradient( 45deg, rgb(157, 91, 254) 0%, rgb(56, 144, 254) 100%);
border-radius: 9px;
color:#fff;
}
.panel-heading {
    padding: 20px;
	background: #fff;
}
.spce-down a{
	font-size: 18px;
line-height: 30px;
font-family: "Poppins", sans-serif;
font-weight: normal;
font-style: normal;
color: #858BA7;
padding: 20px 30px;
}
/*pricing*/

#pricing {
    margin-top: 60px;
}
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 25px;
    font-weight: 600;
    color: #3E7EFF;
    background: #f8f8f8;
}
.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 18px;
}
.pricing ul li {
    padding-bottom: 0px;
	text-align:left;
}
.pricing .btn-buy {
    background: #3E7EFF;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    color: #fff;
    transition: none;
    font-size: 15px;
    font-weight: 400;
    font-weight: 600;
    transition: 0.3s;
}

.up-btn{
background: #3E7EFF;
display: inline-block;
padding: 10px 35px;
border-radius: 4px;
color: #fff;
transition: none;
font-size: 15px;
font-weight: 400;
font-weight: 600;
transition: 0.3s;
border:0;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}



.bg-primary-light {
   background: #f8fbff !important;
box-shadow: 0px 0px 39px #f2f4f9; 
	    border-radius: 20px;
		    margin-bottom: 90px;
}
.fulllenth p{
	line-height: 30px;
font-size: 18px;
margin-top: 20px;
}
.fulllenth ul{
	line-height: 30px;
font-size: 18px;
margin-top: 20px;
}

.bg-primary-light::before {
    background-image: url("../images/home/admin.png");
    color: #FDDE74;
    font-weight: 700;
    border-radius: 0 .675em .675em 0;
    font-size: 9rem;
    text-align: center;
    padding-top: 0;
    left: 8%;
    top: 2.5%;
    position: absolute;
    transition: all .2s ease-in-out;
    font-family: 'Crabmeal',sans-serif;
}
.media-res{
	width:100%;
}
.fulllenth{
	margin-top:50px;
	margin-bottom:50px;
}
.ls-is-cached{
	width:100%;
	height: 280px;
line-height: 230px;
background: #e7f0ff ;
border-radius: 0 18px 0 0;
padding: 60px;
margin-bottom: 0;
text-align: center
}
.screenloaded{
	 line-height: 230px;
	 padding-top: 50px;
	 padding-bottom:50px;
	 
	 padding-right:25px;
	 padding-left:25px;
	 background: #e7f0ff;
	 border-radius: 0 18px 0 0;
	 
	 margin-bottom: 0;
	 text-align: center;
	 width: 50%;" 
}
.bg-paper-tear2 {
    background: #F4F0EB;
}
.bg-paper-tear2 img {
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    border: 0;
}
.text-medium {
    font-size: 18px !important;
}
.text-large {
    font-size: 20px !important;
}
.btn.btn-outline-primary {
    border: 2px solid #101010;
    color: #101010 !important;
    background-color: transparent !important;
    padding: 11px 20px 8px;
}
.member{  
background: #ffffff;
    border: 2px solid #e7f0ff;
border-radius: 0 20px 20px 20px;}
.bootmspac{
	margin-bottom: 70px;
}
.text{
	padding:20px;
}
.text p{
	font-size: 18px;
line-height: 30px;
margin-top: 15px;
}

.text ul{
	font-size:18px;
}






/*contact*/
contact-section {
    padding: 5em 0;
        padding-top: 5em;
        padding-bottom: 5em;
    position: relative;
    padding-bottom: 0px;
}
.section-title h1 {
    font-size: 40px;
	margin-bottom:20px;
}
.text-center {
    text-align: center !important;
}
.section-title p {
    font-size: 18px;
    line-height: 30px;
}
.contact-section .contact-form .single-input {
    margin-bottom: 30px;
}
.contact-section .contact-form .single-input input, .contact-section .contact-form .single-input textarea {
    width: 100%;
    border-radius: 5px;
    background: #f4f7fa;
    box-shadow: 0px 0px 39px #f2f4f9;
    transition: all 0.3s ease-out 0s;
    padding: 18px 30px;
    color: #707070;
    line-height: 1;
    border: 1px solid transparent;
}
.contact-section .contact-right {
    padding-left: 40px;
}
.contact-section .contact-right .contact-item {
    display: flex;
    align-items: center;
    background: #f4f7fa;
    border-radius: 5px;
    padding: 22px 30px;
    margin-bottom: 30px;
}
.contact-section .contact-right .contact-item .icon {
    max-width: 60px;
    width: 100%;
    height: 60px;
    border-radius: 50%;
    background: #3E7EFF;
    color: #fff;
    font-size: 30px;
}
.lni {
    font: normal normal normal 1em/1 'LineIcons';
    text-transform: none;
}
.lni-map-marker::before {
    
	
   background-image: url("../images/location.svg");
}
.contact-section .contact-right .contact-item .content {
    padding-left: 20px;
}
.contact-section .contact-right .contact-item .content p {
    font-size: 16px;
}
.testicon {
    margin: 0 0 0px;
    padding: 0 0 0 60px;
    position: relative;
}

.testicon::before {
    content: "";
    display: block;
    height: 42px;
    left: 0;
    position: absolute;
    top: 0;
    width: 42px;
}

.spce-down {
    margin-top: 50px;
}
.contact-paddress{
    padding: 20px 0;
}
 .contact-pinfo h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 300;
    color: #999;
}
.contact-pinfo address {
    margin-bottom: 0;
    font-size:16px;
	line-height:26px;
}
.sideborders {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
	padding-left: 65px;
	padding-right: 50px;
}
/*footer*/
.footer {
  background-image: url("../assets/img/footer/footer-bg.svg");
  background-size: cover;
  background-position: top center;
  padding-top: 160px;
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

.footer .widget-wrapper .footer-widget .desc {
  font-size: 18px;
  line-height: 28px;
}
 .footer .widget-wrapper .footer-widget .desc {
    padding-right: 30px;
  }

  .footer .widget-wrapper .footer-widget .desc {
    font-size: 18px;
    line-height: 28px;
}
  .footer .widget-wrapper .footer-widget .socials li a {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.footer .widget-wrapper .footer-widget .socials li a i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
}

.footer .widget-wrapper .footer-widget h3 {
  margin-bottom: 35px;
}
.footer .widget-wrapper .footer-widget ul li {
  font-size: 18px;
  margin-bottom:7px;
}
.footer .widget-wrapper .footer-widget ul li a {
  color: #858BA7;
}

.footer .widget-wrapper .footer-widget ul li a:hover {
  color: #3E7EFF;
  padding-left: 5px;
}




















.form-inline a.btn-info {
	border-color: #01e6f8;
	border-radius: 32px;
	background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
}

.form-inline .form a {
	font-size: 18px;
	color: #fff;
	padding: 5px 25px;
	border-radius: 20px;
	border-width: 2px;
}

.space-line {
	padding: 6px;

margin-bottom: 25px;
margin-right: 22px;
}

.form_status {
	position: absolute;
	z-index: 1;
	color: #000;
	width: 35%;
	left: 418px;
	top: 37em;
	padding: 10px;
	font-size: 18px line-height:10px;
}

.form_status p {
	font-size: 15px;
	line-height: 17px;
}
.headerbutn{
	border-color: #01e6f8;
border-radius: 32px;
background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
margin-top: 25px;
float: right;
border-radius: 32px;
margin-right: 25px;
font-size: 15px;
padding: 10px 25px;
outline: 0;
}
.headerbutn.active  {
    color: #3B28AD;
text-decoration: none;
background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
border:0px;
}
.headerbutn:active, .headerbutn:hover {
    color: #3B28AD;
    text-decoration: none
}
.requestsub{
	   color: #3B28AD;
text-decoration: none;
background-color:#3E7EFF;
outline: 0;
}
.requestsub:active, .requestsub:hover {
	color: #3B28AD;
	background-color: #3E7EFF;
}
.footerbtn{
	border-color: #01e6f8;
border-radius: 32px;
background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
}
.footerbtn.active{
	background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
	 color: #3B28AD;
}
/*----------------
banner-area
------------------*/
.bg-dark {
	background-color: transparent !important;
}

.scrolled {
	position: fixed;
z-index: 99;
background-color: #fff;
box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease-out 0s;
}

.banner-area {
	margin-top: 65px;
}

.banner-area h1 {
	font-size: 2rem;
	line-height: 2.7rem;
	font-weight: 600;
	text-transform: uppercase;
	margin-top: 50px;
	color: #4560f0;
}

.banner-area p {
	font-size: 1rem;
	font-weight: 400;
	margin-top: 25px;
	margin-bottom: 40px;
	text-align: justify;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.banner-button {
	font-size: 18px;
	color: #fff;
	padding: 10px 25px;
	border-radius: 32px;
	background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
	width: 45%;
	text-transform: uppercase;
	font-weight: 500;
}

/*-- ==============================================
    main heading
    =============================================== */




.text-center p {
	text-align: center;
}

.text-adjust p {
	text-align: center;
}

#services .space-line {
	padding-top: 80px;
}

#services p {
	margin: 25px 0;
}

#services .caption {
	position: relative;
	top: 30px;
}

.caption {
	color: #000;
}

.caption h3 {
	font-size: 1.75rem;
	font-weight: 600;
	color: #000;
}
/*----------------
About us----------*/
.mu-about-left {
	display: inline;
	float: left;
	padding-right: 15px;
	width: 100%;
}

.mu-title h2 {
	color: #323232;
	font-size: 30px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.mu-about-right {
	display: inline;
	float: left;
	padding-left: 15px;
	width: 100%
}

.mu-about-right ul {
	
}

.mu-about-right ul li {
	list-style: none;
	float: left;
	margin-bottom: 10px;
}

.about-maincontent {
	margin-bottom: 30px;
	margin-top: 30px;
}

.mu-about-right ul li h3 {
	border-bottom: 3px solid #05de7d;
	color: #323232;
	font-size: 20px;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 15px;
	font-weight: 700;
}

.heading {
	border-bottom: 3px solid #05de7d;
	color: #323232;
	font-size: 20px;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 15px;
	font-weight: 700;
}

.mu-about-right p {
	font-size: 14px;
}

.bg-light {
	margin-top: 100px;
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.space-top {
	padding-top: 6rem;
}

.bg-primary {
	color: #fff;
	background-color: #4560f0;
	height: 550px;
}

.services {
	width: 100%;
	display: block;
	padding: 30px;
	background: #fff;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border-radius: 4px;
	height: 285px;
	margin-bottom: 20px;
}

.services.border {
	border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.services .icon {
	line-height: 1.3;
	position: relative;
	margin: 0 auto;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	border-radius: 50%;
}

.services .icon span {
	font-size: 44px;
	color: #4560f0;
}

.services .media-body {
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: calc(100% - 80px);
}

.services .media-body h3 {
	font-weight: 700;
	color: #000;
}

.services .media-body.media-body-2 {
	width: 100% !important;
}

.services:hover {
	background: #207dff;
}

.services:hover .icon span {
	color: #fff;
}

.services:hover .media-body h3 {
	color: #fff;
	border-bottom: 3px solid #fff;
}

.services:hover .media-body p {
	color: rgba(255, 255, 255, 0.8);
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus,
	.navbar-default .navbar-nav>.active>a:hover {
	background-color: transparent;
	color: #ffffff;
	font-weight: 500;
}



.right-arrow {
	background-image: url("images/up-arrow-4.1.JPG");
	background-repeat: no-repeat;
	color: #ffff;
	float: right;
	font-size: 0;
	margin-top: 10px;
	text-align: center;
	width: 30px;
}

.panel-body {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    hyphens: auto;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.panel-title {
	color: inherit;
	font-size: 17px;
	margin-bottom: 0;
	margin-top: 0;
	color: #2f2f2f;
	letter-spacing: 1px;
	line-height: 29px;
}

.caption {
	color: #2f2f2f;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 1px;
	margin: 0;
	line-height: 29px;
}

.cd-faq-categories {
	left: 0;
	padding-left: 0;
	top: 0;
	width: 200px;
	z-index: 2;
}

.cd-faq-categories li {
	left: 0;
	list-style: outside none none;
}

.cd-faq-categories a {
	cursor: pointer;
}

.cd-faq-categories a {
	background-color: #0bb8b6;
	border-bottom: 1px solid #ffffff;
	color: #ffffff;
	display: block;
	font-size: 16px;
	height: 52px;
	line-height: 19px;
	overflow: hidden;
	padding: 11px 28px 0 16px;
	position: relative;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cd-faq-categories .active a {
	background-color: #f54785;
}

.right-arrow {
	background-image: url("../images/faq1.png");
	background-repeat: no-repeat;
	color: #ffff;
	float: right;
	font-size: 0;
	margin-top: 10px;
	text-align: center;
	width: 30px;
	margin-top: 30px;
margin-right: 10px;
}

/*faqs*/
.home-banner-area {
	background: url("../images/banner-image1.jpg;") no-repeat;
	background-position-x: 0%;
	background-position-y: 0%;
	background-size: auto;
	background-position: right top;
	max-height: 1200px;
	height: auto;
	padding: 0;
}

.home-banner-left {
	align-items: center !important;
	margin-top: 110px;
}

.home-banner-left h1 {
	font-size: 60px;
	line-height: 1em;
	margin-bottom: 20px;
}

.home-banner-left p {
	
}

.paystore {
	width: 100%;
	margin-top: 30px;
}

.cmg-content p {
	text-align: center;
	color: #000;
}

.navbar-right {
	float: right !important;
	font-size: 18px;
	margin-right: -15px;
	/*background-image: linear-gradient(90deg, #8256EF, #3B28AD);*/
	margin-top: 20px;
	/*box-shadow: 2px 4px 10px black;*/
}

.navbar-default {
	background-color: #fff;
	border-color: transparent;
	padding-bottom:20px;
	margin-bottom:20px;
}

.navbar-right {
	float: right !important;
	font-size: 18px;
	margin-right: -15px;
	border-radius: 16px;
}

.section-gap-bottom {
	margin-top: 50px;
}

.single-video {
	background-image: url("../images/ellipse.png");
}

.video-area .video-left {
	padding-bottom: 151px;
}

.no-js .owl-carousel {
	display: block;
}

.video-area .video-part {
	position: relative;
}

element {
	
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.img-fluid {
	max-width: 100%;
	height: auto;
}

.video-area .video-part .overlay {
	background: rgba(0, 0, 0, 0.3);
}

.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

element {
	
}

.video-area .video-part .popup-youtube {
	position: absolute;
	left: 0px;
	text-align: center;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.owl-carousel .owl-item img {
	display: block;
	-webkit-transform-style: preserve-3d;
}

.video-area .play-icon {
	width: auto !important;
	margin: auto;
}

.text-head {
	color: black;
	font-size: 35px;
	line-height: 40px;
}



.incre-font {
	font-size: 35px;
	text-align: left;
	color: #000000;
	margin-bottom: 20px;
	margin-bottom: 0;
	line-height: 45px;
}

/*foooter*/
/*.section-on-footer{
	background-image: url("../images/bg-dots.png");	
	
}*/
.three-column {
	overflow: hidden;
}

.list-unstyled li {
	float: left;
	margin-right: 3px;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.list-unstyled li:hover {
	
}

.three-column li {
	width: 45%;
	float: left;
	padding: 5px 0;
}

.section-on-footer {
	margin-bottom: -348px;
}

.bg-dark {
	background-image: url("../images/footer.png");
	/*background-repeat:no-repeat;
	padding:339px 0px 0px;
	width:100%;*/
	background-size: cover;
	background-position: top center;
	padding: 0;
	color: #fff;
	margin-top: 110px;
}

.footer-para {
	color: #fff;
}

.text-light {
	color: #ffff;
	text-align: center;
	border-bottom: 1px solid;
	padding-bottom: 26px;
	font-size: 30px;
}

.bg-dark p {
	color: #ffff;
}

.titledown {
	padding-top: 0px;
}

.shadow-down {
	position: relative;
}

.text-center {
	text-align: center !important;
	
}

.p-5 {
	padding: 3rem !important;
}

.space-bottom {
	padding-bottom: 30px;
}

.rounded {
	border-radius: .25rem !important;
	padding: 1rem !important;
}

.bg-white {
	background-color: #EA5086 !important;
}

.down-text {
	color: white;
	font-size: 25px;
	text-align: left;
}

.down-footer {
	color: white;
	font-size: 29px;
	text-align: center;
	margin-top: 30px;
}

.ml-auto, .mx-auto {
	margin-left: 20% !important;
}

.section {
	padding-top: 80px;
	padding-bottom: 0px;
}

/*end footer*/
/*ourproduct*/
.our-bg {
	background: url('../images/3dshape.png') no-repeat 35px;
	background-size: 70% 60%;
	min-height: 265px;
	text-align: center;
}

.our-bg>img {
	padding-top: 0px;
}

.imgspace {
	padding-top: 50px;
}

.dis-right {
	float: right;
}

.productcont p {
	color: #000000;
	margin-top: 20px;
}

.productcont h2 {
	color: #000;
	font-size: 25px;
}

.shadow-card {
	box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.3);
	margin-top: 30px;
	padding: 20px;
}
/*endourproduct*/
/*product*/
.features-small-item {
	background-repeat: no-repeat;
	cursor: pointer;
	display: block;
	/*box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.10);*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	position: relative;
	margin-bottom: 30px;
	height: 250px;
	width: 320px;
}

.out-ine-bg {
	background-image: url("../images/pro1.png");
}

.out-ine-bg2 {
	background-image: url("../images/pro2.png");
}

.out-ine-bg3 {
	background-image: url("../images/pro3.png");
}

.out-ine-bg4 {
	background-image: url("../images/pro4.png");
}

.out-ine-bg5 {
	background-image: url("../images/pro5.png");
}

.out-ine-bg6 {
	background-image: url("../images/pro6.png");
}
/*.features-small-item .icon {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: auto;
        margin-bottom: auto;
    position: relative;
    margin-bottom: 30px;
    background: #8261ee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.features-small-item .icon i {
    font-size: 18px;
    color: #fff;
}*/
.features-title {
	font-weight: 500;
	font-size: 18px;
	color: #8256EF;
	letter-spacing: 0.7px;
	margin-bottom: 15px;
	position: relative;
	z-index: 2;
}

.features-title a {
	color: #8256EF;
}

.morecontent span {
	display: none;
}

.product-head {
	text-align: center;
	font-size: 35px;
	color: #000;
	margin-bottom: 50px;
	font-weight: bold;
	text-transform: uppercase;
}

.our-head {
	text-align: center;
	font-size: 35px;
	color: #000;
	margin-bottom: 0px;
	font-weight: bold;
	text-transform: uppercase;
}



.icon-box {
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	width: 130px;
	height: 100px;
	z-index: 10;
}

.box-image {
	height: 80px;
	margin-top: 10px;
}

.side-border {
	position: absolute;
	top: -15%;
	left: 50%;
	transform: translateX(-50%);
	width: 134px;
	height: 50px;
	border-left: 2px solid #222;
	border-right: 2px solid #222;
}

/*product*/
/*privacy policy*/
.policy p {
	text-transform: none;
}

.policy h3 {
	text-align: left;
}

.policy ul {
	text-align: left;
}
/*end privacy policy*/

/*works*/
.mini {
	min-height: 215px;
	overflow: hidden;
	position: relative;
	padding-top: 90px;
	padding-bottom: 90px;
	background-image: url("../images/howitworks.png");
}

.mini .mini-content {
	position: relative;
	z-index: 3;
}

.mini .mini-content .info {
	text-align: center;
	color: #fff;
	padding-top: 20px;
	padding-bottom: 20px;
}

.mini .mini-content .info h1 {
	color: #fff;
	font-weight: 500;
	font-size: 28px;
	letter-spacing: 0.25px;
	margin-bottom: 30px;
}

.mini .mini-content .info {
	text-align: center;
	color: #fff;
}

.mini .mini-content .mini-box {
	display: block;
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
	position: relative;
	text-align: center;
	background-image: url("../images/company information.png");
}

.mini .mini-content .mini-box strong {
	display: block;
	font-weight: 400;
	font-size: 17px;
	color: #1e1e1e;
	letter-spacing: 0.25px;
	margin-bottom: 5px;
	margin-top: 20px;
}

.shadow {
	box-shadow: 0px 18px 39.1px 6.9px rgba(224, 241, 255, 0.34) !important;
}

.card-img-top {
	width: 100%;
}

.card-title {
	margin: 20px;
}

.text-dark {
	color: #000 !important;
}

.cars-text {
	font-weight: 400;
	color: #000000;
	font-size: 15px;
	line-height: 1.8;
	margin-left: 20px;
	margin-right: 20px;
	padding-bottom: 45px;
}

.liststyle {
	color: #000000;
	margin-top: 20px;
}
/*end works*/

/*contact us*/
#feedbackSubmit {
	background-color: #3E7EFF;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
	border-radius: 5px;
}

.section-title1 h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 10px;
}





.left-spac {
	padding-left: 120px;
}

.spce-down {
	margin-top: 50px;
}



.title p {
	color: white;
}

.mbr-overlay {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
	pointer-events: none;
}

.cont-head {
	text-align: center;
	font-size: 40px;
	color: #000000;
	font-weight: 300;
	margin-bottom: 50px;
	margin-top: 40px;
}

.contact-section {
	padding: 5em 0;
	position: relative;
	padding-bottom: 0px;
}

.contact-info {
	margin-bottom: 0rem !important;
}

.adrees-border {
	padding: 1.5rem !important;
	margin-bottom: 0.5rem !important;
	width: 100% !important;
	border-radius: 0.25rem !important;
	background-color: #fff;
	box-shadow: 0 5px 10px -3px hsla(0, 0%, 47%, .3);
}

.contact-bg {
	
}

.form-bg {
	background-color: #fff;
	box-shadow: 0 5px 10px -3px hsla(0, 0%, 47%, .3);
	margin-bottom: 2em;
}

.contact-form {
	margin: 20px;
}

.contact-section .contact-info p {
	font-weight: 500;
	color: #000000;
	margin-bottom: 0;
}

.contact-section .contact-info p span {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #999999;
}

.img-contact {
	margin: 80px;
}

.icon-map-o {
	background-image: url("../images/image_1.jpg");
}

.services-wrap {
	padding: 4em 3em;
	background: blue;
	-webkit-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
	-moz-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.03);
}

.request-form {
	background-color: red;
	padding: 30px;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
	-moz-box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
	box-shadow: 0px 5px 12px -1px rgba(0, 0, 0, 0.06);
}

.card-img-top:hover {
	/*transform: scale(1.1);*/
	
}
/*topcontact style*/
.contact .contact-info {
	margin-bottom: 20px;
	text-align: center;
}

.contact .contact-info i {
	font-size: 48px;
	display: inline-block;
	margin-bottom: 10px;
	color: #4f92af;
}

.icofont-google-map::before {
	content: "\ed42";
}

.contact .contact-info address, .contact .contact-info p {
	margin-bottom: 0;
	color: #000000;
}

.contact .contact-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: 300;
	color: #999;
}

.butstyle>button {
	background: #8256EF;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
}

.contact .contact-info a {
	color: #000;
}

.contact .contact-info a:hover {
	color: #4f92af;
}

.contact .contact-address, .contact .contact-phone, .contact .contact-email
	{
	margin-bottom: 20px;
}

.formheadding {
	color: #000000;
	font-weight: 500;
	line-height: 45px;
	text-align: center;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	background: #fff;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form button[type="submit"] {
	background: #8256EF;
	border: 0;
	padding: 10px 24px;
	color: #fff;
	transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #8256EF;
}

.contact .sideborders {
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.contact .contact-address, .contact .contact-phone, .contact .contact-email
	{
	padding: 20px 0;
}
/*end contact style*/
/*end contact us*/
.side-img {
	background-image: url("../images/image_1.jpg");
	height: 500px;
}

.logo {
	
	margin-top: 10px;
	
	width:120px;
}

.banimg {
	width: 100%;
	height: 500px;
	margin-top: 100px;
}

.hero-wrap {
	background-image: url("../images/banner-image.jpg");
	height: 400px;
	line-height: 20px;
	margin-top: 100px;
	position: relative;
	text-align: center;
	background-size: 100% !important;
	/*background-color:#6927ff;*/
}

.bg-pick {
	ackground-color: #f2f2fe;
	margin-top: 20px;
	padding-top: 20px;
}

.hero-wrap .slider-text h1 {
	font-size: 40px;
	color: #263AED;
	line-height: 1.2;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	margin-left: 84px;
}

.hero-wrap .slider-text p {
	margin-left: 82px;
	text-align: left;
}

.hero-wrap .slider-text h1 span {
	display: block;
	font-weight: 700;
}

.mt-5 {
	margin-top: 50px;
}

.justify-content-center {
	justify-content: center !important;
}

.heading-section h2 {
	font-size: 40px;
	font-weight: 700;
	color: #000;
}



.down-text {
	text-transform: uppercase;
	text-align: center;
}

.mx-auto p {
	text-align: lefft;
	font-weight: 500;
}

.requ-title {
	font-size: 25px;
	line-height: 32px;
	text-align: left;
}
/*service*/


/*About us*/
#cd-timeline {
	position: relative;
	padding: 2em 0;
	margin-top: 2em;
	margin-bottom: 2em;
}
/* this is the vertical line */
/*#cd-timeline::before {
 content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 4px;
  background: #d7e4ed;
  left: 50%;
  margin-left: -2px;
}
.cd-container::after {
  content: '';
  display: table;
  clear: both;
}*/
.cd-container {
	width: 90%;
	max-width: 1170px;
	margin: 0 auto;
}

.cd-container p {
	color: #000000;
}

.cd-container span {
	color: #000000;
}

.cd-timeline-block:first-child {
	margin-top: 0;
}

.cd-timeline-block {
	position: relative;
	margin: 4em 0;
}

.cd-timeline-content {
	margin-left: 0;
	padding: 1.6em;
	width: 42%;
	position: relative;
	background: white;
	border-radius: 0.25em;
	padding: 1em;
}

.cd-timeline-content .cd-date {
	position: absolute;
	width: 100%;
	left: 140%;
	top: 6px;
	font-size: 16px;
	font-size: 1rem;
}

.cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
	left: auto;
	right: 140%;
	text-align: right;
}

.cd-timeline-block:nth-child(even) .cd-timeline-content {
	float: right;
}

.cd-timeline-block:after {
	content: "";
	display: table;
	clear: both;
}

.cd-timeline-img {
	width: 80px;
	height: 80px;
	left: 50%;
	margin-left: -30px;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
}

.cd-timeline-img {
	position: absolute;
	top: 0;
	border-radius: 50%;
	/* box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);*/
	background: #fff;
	border: 1px solid #000000;
}

.cd-timeline-img img, .cd-timeline-img svg {
	display: block;
	width: 24px;
	height: 24px;
	position: relative;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	vertical-align: middle;
}

.cssanimations .cd-timeline-img.is-hidden, .cssanimations .cd-timeline-content.is-hidden
	{
	visibility: hidden;
}

.cssanimations .cd-timeline-img.bounce-in, .cssanimations .cd-timeline-content.bounce-in
	{
	visibility: visible;
	animation: cd-bounce-1 0.6s;
}

.bx {
	font-family: 'boxicons' !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	display: inline-block;
	text-transform: none;
}

.icon-mission {
	background-image: url("../images/MISSION.png");
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
}

.icon-essence {
	background-image: url("../images/firsticon.png");
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
}

.spac-line p {
	margin-bottom: 25px;
}

.icon-promise {
	background-image: url("../images/PROMISE.png");
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
}

.icon-vibe {
	background-image: url("../images/VIBE.png");
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
}





.testimonials .testimonial-item {
	box-sizing: content-box;
	padding: 30px 30px 30px 60px;
	margin: 30px 15px;
	min-height: 200px;
	box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
	position: relative;
	background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	border: 6px solid #fff;
	position: absolute;
	left: -45px;
}

.features h4 {
	text-align: left;
}

/*end about us*/

/*--------------------------------------------------------------
# Icon Boxes
--------------------------------------------------------------*/
.icon-boxes {
	padding-top: 0;
}

.icon-boxes .icon-box {
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
	min-height: 250px;
	margin-bottom: 30px;
	border: 1px solid rgba(0, 0, 0, 0.1) !important
}

.icon-boxes .icon {
	margin: 0 auto 20px auto;
	display: inline-block;
	text-align: center;
}

.icon-boxes .icon i {
	font-size: 36px;
	line-height: 1;
	color: #f6b024;
}

.icon-boxes .title {
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
	min-height: 40px;
}

.bxl-dribbble:before {
	content: "\e91a";
}

.icon-boxes .title a {
	color: #05579e;
}

.icon-boxes .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
	color: #777777;
	min-height: 150px;
}

.services .icon-box {
	margin-bottom: 20px;
	padding: 50px 40px;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box i {
	float: left;
	color: #f6b024;
	font-size: 78px;
}

.icofont-computer:before {
	content: "\eeee";
	font-family: IcoFont !important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	line-height: 1;
}

.services .icon-box h4 {
	margin-left: 70px;
	font-weight: 700;
	margin-bottom: 15px;
	font-size: 20px;
	min-height: 20px;
}

.services .icon-box h4 a {
	color: black;
	transition: 0.3s;
}

.services .icon-box h4 a:hover {
	color: #0880e8;
}

.services .icon-box p {
	margin-left: 70px;
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
	min-height: 100px;
}

.why-us {
	background: #f1f8ff;
	padding-top: 20px;
	padding-bottom: 20px;
}

/*ezpoz css/*
















/*h3 {
  display: inline-block;
  padding: 10px;
  background: #008ed6;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}*/
.header-img {
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.full-screen {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*navigation*/
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus,
	.navbar-default .navbar-nav>.active>a:hover {
	background-color: #3E7EFF;
	color: #555;
	text-decoration: none;
	border: none;
}

.navbar-right {
	float: right !important;
	font-size: 18px;
	margin-right: -15px;
	margin-right: 0px;
}

.navbar-default .navbar-nav>li>a {
font-size: 17px;
font-weight: 500;
color: #5D5F74;
transition: all 0.3s ease-out 0s;
padding: 10px 0;
position: relative;
}

.navbar-default .navbar-nav>li>a:hover {
	color: #3E7EFF;
	
}

.navbar-nav>li {
	padding-bottom: 0;
	padding-top: 30px;
	text-decoration: none;
	border: none;
}

.nav>li {
	display: block;
	margin-right: 0px;
	position: relative;
	margin-left: 20px;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus,
	.navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:visited
	{
	background-color: transparent;
	color: #3E7EFF;
	
}

.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus,
	.navbar-default .navbar-nav>.open>a:hover {
	background-color: transparent;
	color: #555;
	text-decoration: none;
}

.drop>a {
	position: relative;
}

.drop>a:after {
	content: "";
	position: absolute;
	right: 0px;
	top: 63%;
	border-left: 5px solid transparent;
	border-top: 5px solid #008ed6;
	border-right: 5px solid transparent;
	z-index: 999;
}

.drop>a:hover:after {
	content: "";
	border-left: 5px solid transparent;
	border-top: 5px solid #000;
	border-right: 5px solid transparent;
}

.drop .sub_menu {
	display: none;
	list-style: none;
	position: absolute;
	top: 100%;
	z-index: 100;
	background-color: #fff;
	width: 200px;
}

.drop .sub_menu a {
	color: #060000;
}

.drop:hover .sub_menu {
	display: block;
}

p {
	webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: none;
}

.navbar-nav .dropdown .dropdown-item {
	font-size: 18px;
font-weight: 500;
color: #5D5F74;
margin:10px;
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse
	{
	max-height: 200px;
}

.navbar-nav>li {
	padding-bottom: 0;
	padding-top: 0px;
	text-decoration: none;
	border: none;
}

.navbar .dropdown .dropdown-menu {
	margin-top: 10px;
	margin-left: 20px;
	border-radius: 5px;
	min-width: 476px;
	left: -206px;
	
}

.drop-spc {
	padding-right: 10px;
}

.glyphicon {
	color: #fff;
	border-radius: 50%;
	padding: 10px
}

.icon-india {
	background-image: url("../images/india1.png");
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.icon-us {
	background-image: url("../images/us1.jpg");
	width: 25px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.about-maincontent p {
	text-align: center;
	margin-bottom: 35px;
	color: #000000;
}

.about-maincontent h4 {
	text-align: center;
	padding-bottom: 20px;
	color: #000000;
	line-height: 46px;
	font-size: 30px;
	color: #4560f0;
}

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next, .carousel-control .icon-prev {
	color: #008ed6;
	font-size: 30px;
	height: 30px;
	margin-top: -15px;
	width: 30px;
}

.carousel-indicators li {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #FBCE00;
	border-radius: 10px;
	cursor: pointer;
	display: inline-block;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	width: 10px;
}

.carousel-indicators .active {
	background-color: #FCCF04;
}

/*2nd col*/
.heading {
	text-align: center;
}

.heading h1 {
	display: inline-block;
	font-size: 45px;
	font-weight: normal;
	margin-bottom: 0;
}

.adjust-height {
	padding-top: 50px;
}

.headding-height {
	height: 30px;
	color: #F7882F;
	font-size: 23px;
	padding-top: 5px;
}

.adjust-height p {
	font-size: 15px;
	line-height: 25px;
}

.linkbutton {
	color: #4484CE;
	text-decoration: none;
}

.divider {
	border-radius: 5em;
	content: "";
	display: block;
	height: 2px;
	margin: 13px auto;
	position: relative;
	text-align: center;
	width: 100px;
	background: #008ed6 none repeat scroll 0 0;
}

.glyphicon-road {
	display: inline-block;
	font-family: "Glyphicons Halflings";
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	position: relative;
	top: 1px;
	color: #333333;
}

.icon-circle {
	border: 2px solid;
	border-radius: 50%;
	color: #777777;
	display: inline-block;
	font-size: 40px;
	height: 100px;
	line-height: 2.4;
	position: relative;
	text-align: center;
	width: 100px;
}

.colorchange:hover .icon-circle {
	background-color: #4484CE;
	border-color: #4882CC;
}

.colorchange:hover .glyphicon-road {
	color: #FFFFFF;
}

.colorchange:hover .headding-height {
	color: #4484CE;
}

.linkbutton:hover {
	color: #F7882F;
}

.icon-image {
	background-clip: padding-box;
	border: 1px solid;
	color: #34495e;
	display: inline-block;
	font-size: 40px;
	height: 100px;
	line-height: 2.4;
	position: relative;
	text-align: center;
	width: 100px;
}
/*3col*/
.section-heading3 {
	border-bottom: 1px solid #4484d0;
	height: 75px;
	margin: 0 0 30px;
	text-align: left;
}

.section-heading3 h1 {
	display: inline-block;
	font-size: 20px;
	font-weight: normal;
	margin-bottom: 0;
}

.section3-para {
	font-size: 18px;
	line-height: 28px;
}

.call-icon {
	margin-bottom: 12px;
	margin-right: 6px;
}

.btn-group-lg>.btn, .btn-lg {
	border-radius: 0px;
	font-size: 20px;
	line-height: 1.33333;
	padding: 10px 16px;
}

.btn-primary {
	background-color: #fff;
	color: #3B28AD;
	font-size: 18px;
	border-color: transparent;
}

.btn-primary {
	border-radius: 0px;
	border-color: transparent;
}



a:active, a:foucs {
	outline: none;
	display: block;
	outline: 0;
	
}

a, a:visited {
	text-decoration: none;
	display: block;
	border: none;
	outline: 0;
}

object, embed {
	outline: 0;
}

input::-moz-focus-inner {
	border: 0;
}
/*footer*/
.map {
	margin-bottom: 40px;
	margin-top: 20px;
}

.media-heading {
	font-size: 17px;
	font-weight: normal;
	letter-spacing: 0.5px;
	line-height: 28px;
	list-style: none;
	padding-left: 5px;
}

.media-heading a {
	color: #000;
}
/* .media-heading li a:hover {
        background-color: #b36521;
        color: #ffffff;
    }
    .media-heading li a:active {
        background: #f1d74c;
        color: #ffffff;
    }*/
.media-body a {
	color: #000;
}

.footer-headding {
	color: #4484CE;
}
/*contact us css*/
.contact-heading {
	margin: 57px 0 50px;
	text-align: center;
}

.contact-heading h1 {
	display: inline-block;
	font-size: 45px;
	font-weight: normal;
	margin-bottom: 0;
}

.contact-heading p {
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
}

.contact-background {
	height: 442px;
}

.contact-background h2 {
	font-size: 30px;
	color: #008ed6;
	text-align: left;
	padding-top: 15px;
}

.alignrow {
	padding-bottom: 50px;
}

.contact-background h4 {
	color: #1f1b15;
	font-size: 16px;
	text-align: left;
}

.contact-background2 {
	background-color: #008ed6;
	height: 166px;
}

.contact-background2 h2 {
	font-size: 30px;
	color: #FFFFFF;
	text-align: left;
	padding-top: 15px;
}

.alignrow {
	padding-bottom: 50px;
}

.contact-background2 h4 {
	color: #ffffff;
	font-size: 16px;
	text-align: left;
}

.adjust-padding {
	padding-left: 75px;
}
/*end contact*/
.f-heading {
	margin: 100px 0 50px;
	text-align: center;
}

.f-heading h1 {
	display: inline-block;
	font-size: 45px;
	font-weight: normal;
	margin-bottom: 0;
}

/*features page*/
.featurette-divider {
	margin: 80px 0 80px 20%;
	width: 60%; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
	font-weight: 300;
	line-height: 1;
	letter-spacing: -1px;
}

.aligment {
	list-style: none;
}

.call-sys {
	margin-bottom: 5px;
	width: 18px;
}
/*side*/
.side-demo {
	color: #fff;
	height: 140px;
	margin-top: 0;
	padding: 0;
	position: fixed;
	right: 0;
	top: 86px;
	width: 40px;
	z-index: 1000;
}

.header_button {
	margin-top: 25px;
	float: right;
	border-radius: 32px;
	margin-right: 25px;
	font-size: 15px;
	padding: 10px 25px;
}

.side-demo .demo-text .demo-headding {
	color: #00aeef;
	text-decoration: none;
}

.side-demo .demo-text .demo-headding h3 {
	background-color: #fff;
	border: 1px solid #4DD0E1;
	color: #4DD0E1;
	font-size: 15px;
	height: 140px;
	margin: 0;
	padding: 10px 10px 0 15px;
	transform: rotate(-90deg);
	width: 140px;
}

a:active, a:hover {
	color: #3E7EFF;
	text-decoration: none;
}

.modal-title {
	color: #3E7EFF;
font-weight: 100;
font-size: 30px;
}

.root {
	color: #fff;
	height: 140px;
	margin-top: 0;
	padding: 0;
	position: fixed;
	right: 0;
	top: 251px;
	width: 40px;
	z-index: 1000;
}

.root .demo-text .demo-headding {
	color: #00aeef;
	text-decoration: none;
}

.root .demo-text .demo-headding h3 {
	background-color: #008ed6;
	color: #fff;
	font-size: 15px;
	height: 140px;
	margin: 0;
	padding: 5px 10px 0 25px;
	transform: rotate(-90deg);
	width: 140px;
}

.input100 {
	display: block;
	width: 100%;
	font-size: 15px;
	color: #333333;
	line-height: 1.2;
	padding: 0 25px 0 22px;
}

input.input100 {
	height: 55px;
}

textarea.input100 {
	min-height: 162px;
	padding-top: 22px;
	padding-bottom: 15px;
}

/*---------------------------------------------*/
.focus-input100 {
	
	border: 1px solid;
	border-radius: 2px;
	border-color: #0CB8B6;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	-moz-transition: all 0.4s;
	transition: all 0.4s;
	-webkit-transform: scaleX(1.1) scaleY(1.3);
	-moz-transform: scaleX(1.1) scaleY(1.3);
	-ms-transform: scaleX(1.1) scaleY(1.3);
	-o-transform: scaleX(1.1) scaleY(1.3);
	transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus+.focus-input100 {
	visibility: visible;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.input100:focus+.focus-input100+.label-input100 {
	color: #846add;
}

.contact100-form {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 40px 55px 48px 55px;
}

.wrap-input100 {
	width: 100%;
	position: relative;
	border: 1px solid #e6e6e6;
	border-radius: 2px;
	margin-bottom: 15px
}
.wrap-input100 >option{
	border:2px solid red;
}

.label-input100 {
	font-size: 18px;
	color: #999999;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 60px;
	height: 100%;
	top: 0;
	left: 2px;
}
/*ending side*/
@media screen and (max-width: 699px) and (min-width: 320px) {
	/*contact css*/
	.footer {
  background-image: url("../assets/img/footer/footer-bg.svg");
  background-size: cover;
  background-position: top center;
  padding-top: 350px;
}
.header-text {
    font-size: 25px;
    text-align: center;
}
.top-section h1 {
    font-size: 41px;
    margin-top: 0px;
    color: #fff;
    margin-bottom: 29px;
}
.feature-area .rt-design-elmnts.one, .blog-area .rt-design-elmnts.one, .dashbporad-area .rt-design-elmnts.one {
    top: -140px;
    right: -212px;
    width: 300px;
    height: 300px;
    display: block;
    background-color: #3e7eff;
}
.rt-section-title-wrapper {
    position: relative;
    margin-left: 20px;
}
.feature-area .rt-overlay, .blog-area .rt-overlay, .dashbporad-area .rt-overlay {
	display:none;
  
}
.feature-section-1 .shape-image {
   display:none;
}
.feature-section-1 .feature-image {
    margin-top: 60px;
    position: static;
    width: 100%;
    transform: translateY(0);
}
	.space-bottom {
		padding-bottom: 0px;
	}
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.img-contact {
		margin: 0px;
	}
	.contact .sideborders {
		border-left: 0px solid #ddd;
		border-right: 0px solid #ddd;
	}
	.spce-down {
		margin-top: 0px;
	}
	.section-heading3 {
		margin: 0;
	}
	.contact-details {
		padding-top: 20px;
	}
	.box {
		width: auto;
	}
	
	
	.our-bg {
		background-size: 80% 90%;
	}

	/*end contact css*/
	.navbar-nav>li>a {
		padding-bottom: 0px;
		padding-top: 0;
		text-decoration: none;
		border: none;
	}
	.navbar-toggle {
		margin-top: 25px;
	}
	.navbar-nav>li {
		border: medium none;
		padding-bottom: 0;
		padding-top: 10px;
		text-decoration: none;
	}
	.navbar-default .navbar-toggle {
		border-color: #4eb2f7;
		background-color: #4eb2f7;
	}
	.navbar-toggle .icon-bar:hover {
		background-color: black;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #ffffff;
	}
	.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse
		{
		max-height: 230px;
	}
	.navbar-right {
		float: right !important;
		font-size: 18px;
		margin-right: 5px;
		padding-bottom: 0px;
		box-shadow: none;
	}
	.navbar .dropdown .dropdown-menu {
		margin-top: 10px;
		margin-left: 20px;
		border-radius: 5px;
		min-width: auto;
		left: -206px;
		background-color: transparent;
	}
	.navbar-collapse {
		background-color: #4aa7f8;
	}
	.navbar-right {
		background-image: none;
	}
	.header_button {
		margin-top: 0;
		float: right;
		border-radius: 32px;
		margin-right: 32px;
		font-size: 15px;
		padding: 5px 10px;
		margin-bottom: 10px;
	}
	.navbar-default .navbar-nav>li>a {
		color: white;
		font-weight: 300;
		letter-spacing: 0.2px;
		text-decoration: none;
		border: none;
		margin-bottom: 5px;
	}
	#services .space-line {
		padding-top: 10px;
	}
	#services p {
		margin-bottom: 0;
	}
	.banner-button {
		font-size: 18px;
		padding: 10px 25px;
		border-radius: 32px;
		background-image: linear-gradient(to bottom right, #08c7f9, #30e4f9);
		width: auto;
		text-transform: uppercase;
		font-weight: 500;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.header-img {
		background-position: center center;
		background-repeat: no-repeat;
	}
	.home-banner-area {
		background-position: center top;
	}
	.home-banner-left h1 {
		font-size: 36px;
		line-height: 1em;
		margin-bottom: 10px;
	}
	.text-head {
		font-size: 20px;
		line-height: 30px;
	}
	.section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.card-img-top {
		width: 100%;
		margin-bottom: 20px;
	}
	.incre-font {
		font-size: 30px;
		text-align: left;
		color: #000000;
		margin-bottom: 20px;
		margin-bottom: 0;
		line-height: 30px;
	}
	.paystore {
		margin-top: 0px;
	}
	.icon-india {
		margin-left: 5px;
	}
	.icon-us {
		margin-left: 5px;
	}
	.bg-dark {
		margin-top: 0px;
	}
	.section-on-footer {
		margin-bottom: 0px;
	}
	.footer-title {
		text-align: center;
		font-size: 1.75rem;
		color: #000;
		margin-bottom: 20px;
		line-height: 1.3;
		font-weight: 600;
		text-transform: uppercase;
	}
	.subtitle {
		color: #000;
	}
	.paystore {
		margin-top: 0px;
	}
	.dis-right {
		float: none;
	}
	.home-banner-area {
		background: none;
		background-image: linear-gradient(30deg, #ffffff, #ffffff, #15195b);
	}
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
	
	.header-text {
		margin-top: -25px;
		margin-left: 05px;
		font-size: 45px;
		color: #fff;
		text-align: right;
	}

	/*contact css*/
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.paystore {
		margin-top: 0px;
	}
	.img-contact {
		margin: 0px;
		width: 100%;
	}
	.section-heading3 {
		margin: 0;
	}
	.contact-details {
		padding-top: 20px;
	}
	.box {
		border: 2px solid #222;
		width: auto;
		height: auto;
	}
	.icon-box {
		position: absolute;
		top: -30%;
		left: 50%;
		transform: translateX(-50%);
		background: #ffffff;
		width: 130px;
		height: 100px;
		z-index: 10;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.paystore {
		margin-top: 0px;
	}
	/*end contact css*/
	.dis-right {
		float: right;
	}
	.features-title {
		font-weight: 500;
		font-size: 18px;
		color: #8256EF;
		letter-spacing: 0.7px;
		margin-bottom: 15px;
		position: relative;
		z-index: 2;
		padding-top: 20px;
	}
	.logo {
    margin-top: 10px;
    width: 84px;
}
.nav > li {
    display: block;
    margin-right: 0px;
    position: relative;
    margin-left: 13px;
}
.feature-area .rt-design-elmnts.one, .blog-area .rt-design-elmnts.one, .dashbporad-area .rt-design-elmnts.one {
    top: -140px;
    right: -212px;
    width: 300px;
    height: 300px;
    display: block;
    background-color: #3e7eff;
}
.rt-section-title-wrapper {
    position: relative;
    margin-left: 20px;
}
.feature-area .rt-overlay, .blog-area .rt-overlay, .dashbporad-area .rt-overlay {
	display:none;
  
}
.feature-section-1 .shape-image {
   display:none;
}
.feature-section-1 .feature-image {
    margin-top: 60px;
    position: static;
    width: 100%;
    transform: translateY(0);
}
	.space-bottom {
		padding-bottom: 0px;
	}
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
	.logo {
    margin-top: 10px;
    width: 84px;
}
.nav > li {
    display: block;
    margin-right: 0px;
    position: relative;
    margin-left: 13px;
}
	.header-text {
		margin-top: -25px;
		margin-left: 05px;
		font-size: 35px;
		color: #fff;
		text-align: right;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.img-contact {
		margin: 0px;
		width: 100%;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.feature-area .rt-design-elmnts.one, .blog-area .rt-design-elmnts.one, .dashbporad-area .rt-design-elmnts.one {
display: none;
}
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.navbar-right {
		margin-right: 0px;
	}
	.incre-font {
		font-size: 30px;
	}
	.rounded {
		margin-top: 107px;
	}
	.f-image {
		margin-bottom: 30px;
	}
	.dis-right {
		float: right;
	}
	.our-bg {
		background: url('../images/3dshape.png') no-repeat 35px;
		background-size: auto;
		background-size: 70% 60%;
		min-height: 265px;
		text-align: center;
	}
	.features-title {
		font-weight: 500;
		font-size: 18px;
		color: #8256EF;
		letter-spacing: 0.7px;
		margin-bottom: 15px;
		position: relative;
		z-index: 2;
		padding-top: 20px;
	}
}

@media only screen and (device-width: 1024px) {
	

	.home-banner-area {
		background: none;
		background-image: none;
		background-image: linear-gradient(30deg, #ffffff, #ffffff, #15195b);
	}
.feature-area .rt-design-elmnts.one, .blog-area .rt-design-elmnts.one, .dashbporad-area .rt-design-elmnts.one {
display: none;
}
	.header-text {
		margin-top: -25px;
		margin-left: 05px;
		font-size: 45px;
		color: #fff;
		text-align: right;
	}

	/*contact css*/
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.paystore {
		margin-top: 0px;
	}
	.img-contact {
		margin: 0px;
		width: 100%;
	}
	.section-heading3 {
		margin: 0;
	}
	.contact-details {
		padding-top: 20px;
	}
	.box {
		border: 2px solid #222;
		width: auto;
		height: auto;
	}
	.icon-box {
		position: absolute;
		top: -45%;
		left: 50%;
		transform: translateX(-50%);
		background: #ffffff;
		width: 130px;
		height: 100px;
		z-index: 10;
	}
	.features-title {
		font-weight: 500;
		font-size: 18px;
		color: #8256EF;
		letter-spacing: 0.7px;
		margin-bottom: 15px;
		position: relative;
		z-index: 2;
		padding-top: 20px;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.paystore {
		margin-top: 0px;
	}
	/*end contact css*/
}

@media screen and (max-width: 767px) and (min-width: 700px) {
	.space-bottom {
		padding-bottom: 0px;
	}
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.img-contact {
		margin: 0px;
	}
	.contact .sideborders {
		border-left: 0px solid #ddd;
		border-right: 0px solid #ddd;
	}
	.spce-down {
		margin-top: 0px;
	}
	.section-heading3 {
		margin: 0;
	}
	.contact-details {
		padding-top: 20px;
	}
	.box {
		width: auto;
	}

	.header-text {
		font-size: 25px;
		text-align: right;
	}
	.our-bg {
		background-size: 80% 90%;
	}

	/*end contact css*/
	.navbar-nav>li>a {
		padding-bottom: 0px;
		padding-top: 0;
		text-decoration: none;
		border: none;
	}
	.navbar-toggle {
		margin-top: 25px;
	}
	.navbar-nav>li {
		border: medium none;
		padding-bottom: 0;
		padding-top: 10px;
		text-decoration: none;
	}
	.navbar-default .navbar-toggle {
		border-color: #3B28AD;
		background-color: #3B28AD;
	}
	.navbar-toggle .icon-bar:hover {
		background-color: black;
	}
	.navbar-default .navbar-toggle .icon-bar {
		background-color: #ffffff;
	}
	.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse
		{
		max-height: 230px;
	}
	.navbar-right {
		float: right !important;
		font-size: 18px;
		margin-right: 5px;
		padding-bottom: 10px;
		box-shadow: none;
	}
	.navbar .dropdown .dropdown-menu {
		margin-top: 10px;
		margin-left: 20px;
		border-radius: 5px;
		min-width: auto;
		left: -206px;
		background-color: transparent;
	}
	.navbar-collapse {
		background-image: linear-gradient(90deg, #8256EF, #3B28AD);
	}
	.navbar-right {
		background-image: none;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.header-img {
		background-position: center center;
		background-repeat: no-repeat;
	}
	.home-banner-area {
		background-position: center top;
	}
	.home-banner-left h1 {
		font-size: 36px;
		line-height: 1em;
		margin-bottom: 10px;
	}
	.text-head {
		font-size: 20px;
		line-height: 30px;
	}
	.section {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.card-img-top {
		width: 100%;
		margin-bottom: 20px;
	}
	.incre-font {
		font-size: 30px;
		text-align: left;
		color: #000000;
		margin-bottom: 20px;
		margin-bottom: 0;
		line-height: 30px;
	}
	.paystore {
		margin-top: 0px;
	}
	.section-on-footer {
		margin-bottom: -395px;
	}
	.paystore {
		margin-top: 0px;
	}
	.dis-right {
		float: none;
	}
	.home-banner-area {
		background: none;
		background-image: linear-gradient(30deg, #ffffff, #ffffff, #15195b);
	}
}

@media screen and (max-width: 1090px) and (min-width: 1025px) {

	.home-banner-area {
		background: none;
		background-image: none;
		background-image: linear-gradient(30deg, #ffffff, #ffffff, #15195b);
	}
	.header-text {
		margin-top: -25px;
		margin-left: 05px;
		font-size: 45px;
		color: #fff;
		text-align: right;
	}

	/*contact css*/
	.ml-auto, .mx-auto {
		margin-left: 0% !important;
	}
	.paystore {
		margin-top: 0px;
	}
	.img-contact {
		margin: 0px;
		width: 100%;
	}
	.section-heading3 {
		margin: 0;
	}
	.contact-details {
		padding-top: 20px;
	}
	.box {
		border: 2px solid #222;
		width: auto;
		height: auto;
	}
	.icon-box {
		position: absolute;
		top: -45%;
		left: 50%;
		transform: translateX(-50%);
		background: #ffffff;
		width: 130px;
		height: 100px;
		z-index: 10;
	}
	.header-img {
		background-size: auto auto;
		margin-top: 80px;
	}
	.header-img h1 {
		font-size: 20px;
		font-weight: 500;
	}
	.paystore {
		margin-top: 0px;
	}
	/*end contact css*/
}

.submit-btn {
	background-color: #5bc0de;
	color: #fff;
	padding: 10px 15px;
	border-radius: 5px;
	font-size: 16px;
	line-height: 24px;
}

.submit-btn:hover {
	background-color: #5882d4;
	color: #fff;
	padding: 10px 15px;
}

.submit-btn:disabled {
	background-color: #5882d4;
	color: #ddd;
	padding: 10px 15px;
}
div.progress-bar {
	background-color: #38db2a;
	border: 3px solid #38db2a;
}