@charset "utf-8";
/* CSS Document */


				/* -------------- page wrapper section css ------------- */
				

.main-header {
	position: sticky;
    top: 0;
	z-index: 999;
}				
				
				/* -------------- header upper section css ------------- */
				
.head-upper {
	padding: 0px 0px;
	background-color: #fd700d;
	position: relative;
}
.social-link {
	display: block;
    float: left;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
	list-style-type: none;
}
.social-link li {
	display: inline-block;
    text-align: center;
}
.social-link li a {
	display: inline-block;
    position: relative;
    line-height: 30px;
    width: 20px;
    height: 30px;
    margin-left: 1.26em;
    transition: background-color 0.4s ease-in-out;
    color: #ffffff;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.30);
}
.social-link li a:before, .social-link li a:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    transition: border-color 0.4s ease-in-out;
}
.social-link li a:before {
    border-top: 15px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid rgba(255, 255, 255, 0.30);
    border-right: 10px solid rgba(255, 255, 255, 0.30);
    right: 100%;
}
.social-link li a:after {
    border-top: 15px solid rgba(255, 255, 255, 0.30);
    border-left: 10px solid rgba(255, 255, 255, 0.30);
    border-bottom: 15px solid transparent;
    border-right: 10px solid transparent;
    left: 100%;
}
.social-link li a.facebook:hover {
    background-color: #1db1ee;
}
.social-link li a.facebook:hover:before {
    border-right: 10px solid #1db1ee;
    border-bottom: 15px solid #1db1ee;
    right: 100%;
}
.social-link li a.facebook:hover:after {
    border-top: 15px solid #1db1ee;
    border-left: 10px solid #1db1ee;
    left: 100%;
}

.contact-email {
	display: block;
    float: right;
    /* height: auto; */
    margin: 0;
    padding: 0;
    /* border: 0; */
    list-style-type: none;
}
.contact-email li {
	display: inline-block;
    text-align: center;
}
.contact-email li a {
	display: inline-block;
    position: relative;
    line-height: 30px;
    width: 20px;
    height: 30px;
    margin-left: 1.26em;
    transition: background-color 0.4s ease-in-out;
    color: #ffffff;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.30);
}
.contact-email li a:before, .contact-email li a:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    transition: border-color 0.4s ease-in-out;
}
.contact-email li a:before {
    border-top: 15px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 15px solid rgba(255, 255, 255, 0.30);
    border-right: 10px solid rgba(255, 255, 255, 0.30);
    right: 100%;
}
.contact-email li a:after {
    border-top: 15px solid rgba(255, 255, 255, 0.30);
    border-left: 10px solid rgba(255, 255, 255, 0.30);
    border-bottom: 15px solid transparent;
    border-right: 10px solid transparent;
    left: 100%;
}

a.tooltips {
    position: relative;
    display: inline;
}
a.tooltips span {
    position: absolute;
	right: 0;
    width:150px;
	font-size: 14px;
    color: #fff;
    background: #fd700de8;
    height: auto;
    text-align: center;
    visibility: hidden;
    border-radius: 10px;
}

a:hover.tooltips span {
    visibility: visible;
    top: 35px;
    left: 50%;
    margin-left: -80px;
    z-index: 999;
}
a.tooltips span:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0; 
	height: 0;
    border-bottom: 8px solid #fd700de8;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}


				
				/* -------------- header lower/menu section css ------------- */
				
				
.head-lower {
	background: #f5f5f5e8;
	position: relative;
}
.logo {
	float: left;
	color: #fff;
	padding: 0px 0px;
}

nav {
	position: absolute;
    top: -90px;
    right: 15%;
    height: auto;
	opacity: 0;
	transition: all 0.6s ease 0s;
}
nav.active {
	top: 0px;
	
	opacity: 1;
}
nav ul {
	margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
	list-style-type: none;
    position: relative;
}
nav ul li.sub-menu:before {
	content: '\f0d7';
	font-family: fontAwesome;
	position: absolute;
	line-height: 50px;
	color: #313131;
	right: 5px;
}
nav ul li.active.sub-menu:before {
	content: '\f0d8';
}
nav ul li ul {
	position: absolute;
    left: 0;
    background: #fd700de8;
	display: none;
}
nav ul li:hover ul {
	display: block;
}
nav ul li ul li ul {
    left: 100%;
    top: 0;
	display: none !important;
}
nav ul li ul li:hover ul {
	display: block !important;
}
nav ul li ul li {
	display: block;
}
nav ul li a {
    padding: 15px 20px;
	font-size: 18px;
	color: #313131;
    text-decoration: none;
    display: block;
	white-space: nowrap;
	text-transform: capitalize;
}
nav ul li a:hover {
	text-decoration: none;
}
nav ul li ul li a {
	color: #fff;
}
.menu-toggle {
	display: block;
    position: absolute;
    top: 15px;
    right: 110px;
    color: #313131;
    font-size: 20px;
}

@media (max-width: 768px) {
	
	
	.menu-toggle {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		color: #313131;
		font-size: 15px;
	}
	nav {
		position: absolute;
		width: 100%;
		height: auto;
		background: #f5f5f5e8;
		top: 55px;
		left: -376px;
		transition: .5s;
	}
	nav.active {
		left: 0;
		top: 55px;
	}
	nav ul {
		display: block;
		text-align: center;
	}
	nav ul li:hover ul {
		display: none;
	}
	nav ul li.active ul {
		position: relative;
		display: block;
	}
	nav ul li ul li {
		width: 100%;
	}
	
	nav ul li ul li:hover ul {
		display: none;
	}
	nav ul li ul li.sub-sub-menu ul {
		position: relative;
		display: block;
	}
	
}

				/* -------------- slider/banner css ------------- */
				
.slider-section .carousel-control.left {
    background: none;
}
.slider-section .carousel-control.right {
    background: none;
}
.slider-section .carousel-control {
    color: #efefef;
    text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.75);
}
.slider-section .carousel-indicators li {
    border: 1px solid #fd700d;
}
.slider-section .carousel-indicators .active {
    width: 12px;
    height: 12px;
    background-color: #efefef;
}
				
				
				/* -------------- right side bar css ------------- */
				
				
.right-side-bar {
	position: fixed;
	top: 25%;
	right: 0;
	z-index: 10;
}
.right-side-bar a {
  display: block;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.right-side-bar a:hover {
  background-color: #000;
}
.right-side-bar .log-form {
  background: #39cbf4;
  color: white;
  border-radius: 0px 0px 0px 5px;
  position: relative;
}
.right-side-bar .gsuite {
  background: #f3f1f1;
  color: white;
  border-radius: 5px 0px 0px;
}
.right-side-bar .rediff {
  background: #fd700d;
  color: white;
}
.box {
	padding: 30px 40px 30px;
	background: rgba(0,0,0,.8);
	box-sizing: border-box;
	box-shadow: 0 15px 25px rgba(0,0,0,.5);
	border-radius: 10px;
	display: none;
 	position: absolute;
    top: 120px;
    right: 60px;
    width: 300px;
}
.box .inputBox {
	position: relative;
}
.box .inputBox input {
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	color: #fff;
	margin-bottom: 30px;
    border: none;
    outline: none;
    letter-spacing: 1px;
    background: transparent;
    border-bottom: 1px solid #fff;
}
.box .inputBox label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}
.box .inputBox input:focus ~ label, .box .inputBox input:valid ~ label {
	top: -20px;
    left: 0;
    color: #03a9f4;
    font-size: 12px;
	
}
.box input[type="submit"] {
	background: transparant;
	border: none;
	color: #fff;
	background: #03a9f4;
	padding: 8px 20px;
	cursor: pointer;
	border-radius: 5px;
}
.form-btn {
	border: none;
    color: #fff;
    background: #03a9f4;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: 5px;
}


				/* -------------- what we do section css ------------- */

.we-do {
	padding: 50px 0px 50px;
	position: relative;
}
.we-do-head {
	padding: 0px 0px 30px;
}
.we-do-head h2 {
	font-size: 30px;
	padding: 0px 0px 20px;
	text-align: center;
	color: #191818;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}	
.we-do-head h4 {
	font-size: 20px;
	padding: 0px 0px 0px;
	text-align: center;
	color: #191818;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}				
.service-grid {
	padding: 10px 0px 20px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.service-block {
    width: 22%;
    margin: 20px 5px;
    height: auto;
	position: relative;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.40);
    transition: all .5s ease;
}
.service-block img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}				

.service-block .item-info {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 16, 0.7) none repeat scroll 0 0;
    opacity: 0;
    transition: .3s;
}
.service-block .item-info:hover  {
	opacity: 1;
}
.service-block .item-info .info-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 11;
    width: 80%;
    text-align: center;
} 
.service-block .item-info .info-inner .img-head {
    transition: all 0.4s;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
    transform: translateY(-30px);
}
.service-block:hover .item-info .info-inner .img-head {
    transform: translateY(0);
}
.service-block  .item-info .info-inner .img-head:hover {
    color: #fb383b;
	text-decoration: none;
}
.service-block  .item-info .info-inner a {
	text-decoration: none;
}
.service-block  .item-info .info-inner .img-icon a {
    transition: all 0.4s;
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 15px;
    line-height: 47px;
    text-align: center;
    color: #ffffff;
    background: #040404;
    margin: 0 5px;
    -webkit-border-radius: 45px;
    -moz-border-radius: 45px;
    border-radius: 45px;
    transform: translateY(60px);
}
.service-block:hover .item-info .info-inner .img-icon a {
    transform: translateY(0);
}
.service-block  .item-info .info-inner .img-icon a:hover {
    color: #fb383b;
    background: #ffffff;
}
.service-block  .item-info .info-inner .img-icon a.link-icon {
    transition: all 0.4s;
}
.service-block  .item-info .info-inner .img-icon a.video-icon {
    transition: all 0.7s;
    background: #fb383b;
}


				/* -------------- intro section css ------------- */
				
.intro-section {
	padding: 60px 0px 60px;
	position: relative;
}

.main-intro-head {
	padding: 0px 0px 30px;
}
.main-intro-head h2 {
	font-size: 30px;
	padding: 0px 0px 20px;
	text-align: center;
	color: #191818;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}
.main-intro-head h4 {
	font-size: 20px;
	padding: 0px 0px 0px;
	text-align: center;
	color: #191818;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}
.main-intro {
	font-size: 18px;
    padding: 0px 20px 0px;
    line-height: 40px;
    text-align: justify;
	color: #333;
}


				/* --------------  videos and facebook section css ------------- */

.quote-section {
	padding: 30px 0px 30px;
	position: relative;
	background: #fd700d;
}
.quote-head {
	padding: 0px 0px 30px;
}
.quote-head h4 {
	font-size: 25px;
	padding: 0px 0px 0px;
	text-align: center;
	color: #ffffff;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}
.quote-button {
	text-align: center;
}
.quote-button a {
	text-decoration: none;
}
.quote-button .quote-btn {
	font-size: 20px;
    padding: 10px 40px;
    margin: 0px 30px;
    /* width: 350px; */
    /* height: 40px; */
    /* line-height: 40px; */
    list-style: none;
    text-align: center;
    background: #fe9b56;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 10px;
    display: block;
    text-decoration: none;
    transition: all .5s ease;
}


				/* --------------  videos and facebook section css ------------- */

.video-fb {
	padding: 50px 0px 50px;
	position: relative;
}
.youtube-head {
	padding: 0px 0px 20px;
}
.youtube-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.youtube-section .video {
}

				/* -------------- tag line section css ------------- */

.tag-section {
    padding: 10px 0px 10px;
    background: #f1f1f1;
	background-image: url(https://www.transparenttextures.com/patterns/black-thread-light.png);
    
}
.tag-section .tagline {
	float: left;
    font-size: 25px;
    color: #1e1f1f;
    letter-spacing: 3px;
    text-align: center;
    padding: 5px 0px;
}
.tag-section .tag-button {
	position: relative;
    float: right;
    margin-top: 10px;
}
.tag-section .tag-button .tag-btn {
	position: relative;
    padding: 10px 20px;
    line-height: 45px;
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #fd700d;
    background: #fd700d;
    text-transform: capitalize;
	text-decoration: none;
}
.tag-btn:hover {
	text-decoration: none;
}


				/* -------------- footer section css ------------- */


.footer {
	background-image: url(../images/footer-bg.jpg);
	min-height: 300px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .opacity {
	padding: 50px 0px 80px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.foot-head {
	padding: 10px 0px 20px;
}
.foot-head h3 {
	text-align: left;
    font-size: 20px;
	color: #FFF;
    text-transform: uppercase;
	font-weight: 600;
	padding-bottom: 20px;
	margin: 0;
}

.foot-service1 {
	position: relative;
}
.foot-service1 a {
	display: inline-flex;
    background: #000000c7;
    border: 1px solid rgba(255,255,255,0);
    color: #ffffff;
    padding: 10px 10px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 5px 10px;
    text-decoration: none;
    position: relative;
	border-radius: 5px;
}
.foot-service1 a:hover {
	border: 1px solid #fd700d;
}


.foot-lower {
	padding: 10px 0px 10px;
    background: black;
}
.copyright {
	font-size: 17px;
    text-align: center;
    color: #ffffff;
}




				/* -------------- about us page css ------------- */
				

			
.abt-header {
	background-image: url(../images/about-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.abt-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.abt-head {
	padding: 0px 0px 30px;
}
.abt-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}
.abt-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.abt-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}			

.abt-intro {
	padding: 50px 0px 40px;
}
.intro-head {
}
.intro-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.abt-intro-info {
	font-size: 18px;
    padding: 20px 0px 20px;
    line-height: 40px;
    text-align: justify;
	color: #333;
}

.vision-mission {
	overflow: hidden;
    background-image: url(../../black-and-white-computer-keyboard-265605.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
    background-size: cover;
	position: relative;
}
.vision-mission .dark-layer {
	position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .5);
}
.vision-mission .opacity {
	padding: 50px 0px 50px;
	background: rgba(0, 0, 0, 0.33);
	color: #FFF;
}

.heading {
	text-align: center;
    padding: 60px 0px;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
	
}
.heading span {
	display: block;
    color: #fd700d;
}
.vision-info {
	font-size: 18px;
    padding: 20px 20px 20px;
    line-height: 40px;
    text-align: justify;
	color: #fff;
}
.mission-info {
	font-size: 18px;
    padding: 20px 20px 20px;
    line-height: 40px;
    text-align: justify;
	color: #fff;
}


.team {
	padding: 30px 0px 40px;
}
.team-head {
}
.team-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}

				
				
				
				/* -------------- contact page css ------------- */
				

.map-section {
	padding: 0px 0px 0px;
}
.map {
}

.contact-info {
	padding: 50px 0px 40px;
}
.contact-head {
	padding-top: 90px;
}
.contact-head h3 {
    font-size: 45px;
	padding-bottom: 20px;
	color: #313131;
	text-align: center;
    text-transform: uppercase;
	font-weight: 600;
	margin: 0;
}
.contact-head h3 span {
	font-size: 40px;
    color: #fd700d;
}
.contact-icon {
	text-align: center;
}

.add-image {
}
.address-block {
	padding: 10px 10px 10px;
    height: 410px;
	border: 1px solid #dad8d8;
	border-radius: 5px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
}
.address-block .title {
	font-size: 20px;
	padding: 10px 0px 10px;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
    font-weight: 600;
}
.address-block .info {
	text-align: center;
    font-size: 18px;
	color: #333;
    line-height: 25px;
}

.contact-image {
}
.contact-block {
	padding: 10px 10px 10px;
    height: 410px;
	border: 1px solid #dad8d8;
	border-radius: 5px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
}
.contact-block .title {
	font-size: 20px;
	padding: 10px 0px 10px;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
    font-weight: 600;
}
.contact-block .info {
	text-align: center;
    font-size: 18px;
	color: #333;
    line-height: 25px;
}

.mail-image {
}
.mail-block {
	padding: 10px 10px 10px;
    height: 410px;
	border: 1px solid #dad8d8;
	border-radius: 5px;
	box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.20);
}
.mail-block .title {
	font-size: 20px;
	padding: 10px 0px 10px;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
    font-weight: 600;
}
.mail-block .info {
	text-align: center;
    font-size: 18px;
	color: #333;
    line-height: 25px;
}

.form-section {
	padding: 30px 0px 40px;
}
.form-head {
}
.form-head h3 {
	text-align: center;
    font-size: 25px;
	color: #333;
    text-transform: uppercase;
	font-weight: 600;
	padding-bottom: 20px;
	margin: 0;
}
.contact-form {
	text-align: center;
	padding: 20px 0px;
}
.contact-form .form-horizontal .control-label {
    padding: 7px 0px 0px;
    margin-bottom: 0;
    text-align: center;
	font-size: 18px;
	text-transform: capitalize;
}
.contact-form .form-column {
	padding: 0px 20px 0px 0px;
}



				/* -------------- hosting servers page css ------------- */
				
				
				
.hosting-header {
	background-image: url(../images/hosting-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.hosting-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.hosting-head {
	padding: 0px 0px 30px;
}
.hosting-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}
.hosting-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.hosting-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}				

.shared-section {
	padding: 30px 0px 40px;
}
.shared-head {
	padding: 20px 0px 20px;
}
.shared-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.shared-info {
}
.card
{
	position: relative;
	max-width: 300px;
	height: auto;
	background: linear-gradient(-45deg, #fe0847, #feae3f);
	border-radius: 15px;
	margin: 0 auto;
	padding: 10px 20px 20px;
	box-shadow: 0 10px 15px rgba(0,0,0,0);
	transition: .5s;
	overflow: hidden;
}
.card:hover
{
	transform: scale(1.1)
}
.col-sm-4:nth-child(1) .card,
.col-sm-4:nth-child(1) .card .title .fa
{
		background: linear-gradient(-45deg, #ffec61, #f321d7);
}
.col-sm-4:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa
{
		background: linear-gradient(-45deg, #f403d1, #64b5f6);
}
.col-sm-4:nth-child(3) .card,
.col-sm-4:nth-child(3) .card .title .fa
{
		background: linear-gradient(-45deg, #24ff72, #9a4eff);
}
.card:before
{
	content: '';
	position:absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: rgba(255,255,255,.1);
	z-index: 1;
	transform: skewY(-5deg) scale(1.5);
}
.title .fa
{
	color: #fff;
	font-size: 60px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	text-align: center;
	line-height: 100px;
	box-shadow: 0 10px 10px rgba(0,0,0,.1);
}
.title h2
{
	position: relative;
	margin:  20px 0 0;
	padding: 0;
	color: #fff;
	font-size: 2;
}
.price
{
	position: relative;
	z-index: 2;
}
.price h4
{
	margin: 0;
	padding: 20px 0;
	color: #fff;
	font-size: 60px;
}
.option
{
	position: relative;
	z-index: 2;
}
.option ul
{
	margin: 0;
	padding: 0;
}
.option ul li
{
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
	color: #fff;
	font-style: 16px;
}
.card a
{
	position: relative;
	z-index: 2;
	background: #fff;
	color: #262f2;
	width: 150px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	display: block;
	text-align: center;
	margin: 20px auto 0;
	font-size: 16px;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
.card a:hover
{
	text-decoration: none;
}
.shared-box2 {
	padding: 0px 0px 40px 0px;
    margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    box-shadow: 0 0 2px #999;
}
.shared-box2 .icon-box {
	background: #f1f1f1;
    padding: 30px 0;	
}
.shared-box2 .icon-box i {
	font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}
.shared-box2 .plan-name {
	padding: 20px 20px 20px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.shared-box2 .data {
	padding: 20px 20px 20px;
    font-size: 25px;
}
.shared-box2 .info {
	padding: 20px 20px 20px;
    font-size: 18px;
}
.shared-box2 .rate {
	padding: 20px 20px 20px;
    font-size: 25px;
}


.shared-box3 {
	padding: 0px 0px 40px 0px;
    margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    box-shadow: 0 0 2px #999;
}
.shared-box3 .icon-box {
	background: #f1f1f1;
    padding: 30px 0;	
}
.shared-box3 .icon-box i {
	font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}
.shared-box3 .plan-name {
	padding: 20px 20px 20px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.shared-box3 .data {
	padding: 20px 20px 20px;
    font-size: 25px;
}
.shared-box3 .info {
	padding: 20px 20px 20px;
    font-size: 18px;
}
.shared-box3 .rate {
	padding: 20px 20px 20px;
    font-size: 25px;
}


.vps-section {
	background-image: url(../../web-design-poster-800x400.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.vps-section .opacity {
	padding: 30px 0px 40px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.vps-head {
	padding: 20px 0px 20px;
}
.vps-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.vps-info {
}
.vps-box1 {
	padding: 0px 20px 40px 20px;
	margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    background: #fff;
}
.vps-box1 .icon-box i {
	font-size: 40px;
    color: #fff;
    background: #5BB12F;
    padding: 30px 40px;
}
.vps-box1 .plan-name {
	padding: 20px 20px 10px;
    margin: 0;
    font-size: 30px;
	color: #0c0c0c;
    font-weight: 600;
    text-transform: capitalize;
}
.vps-box1 .data {
	padding: 20px 20px 10px;
    font-size: 25px;
	color: #0c0c0c;
}
.vps-box1 .info {
	padding: 20px 20px 10px;
    font-size: 18px;
	color: #0c0c0c;
}
.vps-box1 .rate {
	padding: 20px 20px 0px;
    font-size: 25px;
	color: #0c0c0c;
}

.vps-box2 {
	padding: 0px 20px 40px 20px;
	margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    background: #fff;
}
.vps-box2 .icon-box i {
	font-size: 40px;
    color: #fff;
    background: #5BB12F;
    padding: 30px 40px;
}
.vps-box2 .plan-name {
	padding: 20px 20px 10px;
    margin: 0;
    font-size: 30px;
	color: #0c0c0c;
    font-weight: 600;
    text-transform: capitalize;
}
.vps-box2 .data {
	padding: 20px 20px 10px;
    font-size: 25px;
	color: #0c0c0c;
}
.vps-box2 .info {
	padding: 20px 20px 10px;
    font-size: 18px;
	color: #0c0c0c;
}
.vps-box2 .rate {
	padding: 20px 20px 0px;
    font-size: 25px;
	color: #0c0c0c;
}

.vps-box3 {
	padding: 0px 20px 40px 20px;
	margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    background: #fff;
}
.vps-box3 .icon-box i {
	font-size: 40px;
    color: #fff;
    background: #5BB12F;
    padding: 30px 40px;
}
.vps-box3 .plan-name {
	padding: 20px 20px 10px;
    margin: 0;
    font-size: 30px;
	color: #0c0c0c;
    font-weight: 600;
    text-transform: capitalize;
}
.vps-box3 .data {
	padding: 20px 20px 10px;
    font-size: 25px;
	color: #0c0c0c;
}
.vps-box3 .info {
	padding: 20px 20px 10px;
    font-size: 18px;
	color: #0c0c0c;
}
.vps-box3 .rate {
	padding: 20px 20px 0px;
    font-size: 25px;
	color: #0c0c0c;
}

.dedicated-section {
	padding: 30px 0px 40px;
}
.dedicated-head {
	padding: 20px 0px 20px;
}
.dedicated-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.dedicated-info {
}
.dedicated-box1 {
	padding: 0px 0px 40px 0px;
    margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    box-shadow: 0 0 2px #999;
}
.dedicated-box1 .icon-box {
	background: #f1f1f1;
    padding: 30px 0;	
}
.dedicated-box1 .icon-box i {
	font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}
.dedicated-box1 .plan-name {
	padding: 20px 20px 20px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.dedicated-box1 .data {
	padding: 20px 20px 20px;
    font-size: 25px;
}
.dedicated-box1 .info {
	padding: 20px 20px 20px;
    font-size: 18px;
}
.dedicated-box1 .rate {
	padding: 20px 20px 20px;
    font-size: 25px;
}

.dedicated-box2 {
	padding: 0px 0px 40px 0px;
    margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    box-shadow: 0 0 2px #999;
}
.dedicated-box2 .icon-box {
	background: #f1f1f1;
    padding: 30px 0;	
}
.dedicated-box2 .icon-box i {
	font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}
.dedicated-box2 .plan-name {
	padding: 20px 20px 20px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.dedicated-box2 .data {
	padding: 20px 20px 20px;
    font-size: 25px;
}
.dedicated-box2 .info {
	padding: 20px 20px 20px;
    font-size: 18px;
}
.dedicated-box2 .rate {
	padding: 20px 20px 20px;
    font-size: 25px;
}

.dedicated-box3 {
	padding: 0px 0px 40px 0px;
    margin: 0px 20px 0px;
	position: relative;
    text-align: center;
    box-shadow: 0 0 2px #999;
}
.dedicated-box3 .icon-box {
	background: #f1f1f1;
    padding: 30px 0;	
}
.dedicated-box3 .icon-box i {
	font-size: 32px;
    background: #5BB12F;
    color: #fff;
    padding: 35px;
    border-radius: 100%;
}
.dedicated-box3 .plan-name {
	padding: 20px 20px 20px;
    margin: 0;
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
}
.dedicated-box3 .data {
	padding: 20px 20px 20px;
    font-size: 25px;
}
.dedicated-box3 .info {
	padding: 20px 20px 20px;
    font-size: 18px;
}
.dedicated-box3 .rate {
	padding: 20px 20px 20px;
    font-size: 25px;
}



				/* -------------- graphic designing page css ------------- */
				
.graphic-header {
	padding: 50px 0px 50px;
	position: relative;
}
.graphic-header .opacity {
}
.graphic-head {
	padding: 20px 0px 30px;
}
.graphic-head h2 {
	font-size: 40px;
    padding: 30px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.graphic-head h2 .head-1 {
	padding: 10px 0px 10px;
    display: block;
    color: #9d005d;
}
.graphic-head h2 .head-2 {
	padding: 10px 0px 10px;
    display: block;
    color: #0472bd;
}
.graphic-head h2 .head-3 {
	padding: 10px 0px 10px;
    display: block;
    color: #006021;
}
.graphic-head h4 {
	font-size: 25px;
    padding: 30px 0px 0px;
	line-height: 40px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.graphic-head h4 span {
	padding: 10px 0px 0px;
    display: block;
    color: #727272;
}
.graphic-info {
	font-size: 18px;
    padding: 30px 0px 20px;
    line-height: 40px;
    text-align: justify;
	color: #313131;
}
.graphic-info .bold-info {
	font-size: 20px;
    padding: 0px 0px 10px;
    color: #000;
    font-weight: 600;
}

.we-design-section {
	padding: 50px 0px 50px;
	position: relative;
}
.we-design-head {
	padding: 0px 0px 30px;
}
.we-design-head h2 {
	font-size: 35px;
    padding: 0px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.technology-section {
	padding: 50px 0px 50px;
	position: relative;
}
.technology-head {
	padding: 0px 0px 30px;
}
.technology-head h2 {
	font-size: 35px;
    padding: 0px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.technology-grid {
	padding: 10px 0px 20px;
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
}
.technology-grid .technology-block {
	/*width: 10%; */
    margin: 20px 5px;
    height: auto;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    /* box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.40); */
    transition: all .5s ease;
}
.technology-grid .technology-block img {
}
.technology-grid .technology-block .tech-head {
}
.technology-grid .technology-block .tech-head h4 {
	font-size: 20px;
    padding: 0px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.process-section {
	padding: 50px 0px 50px;
	position: relative;
}
.process-head {
	padding: 0px 0px 30px;
}
.process-head h2 {
	font-size: 35px;
    padding: 0px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.process-grid {
    padding: 10px 0px 20px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
}
.process-block {
	width: 22%;
    margin: 20px 5px;
    height: auto;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    /* box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.40); */
    transition: all .5s ease;
	border: 1px solid #f6f6f6;
    border-radius: 5px;
}
.process-img img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.stage-head {
	padding: 10px 0px 0px;
}
.stage-head h4 {
	font-size: 22px;
    padding: 0px 0px 0px;
	line-height: 40px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}
.stage-info {
	font-size: 16px;
    padding: 10px 10px 10px;
    line-height: 30px;
    text-align: justify;
    color: #313131;
}


.our-design-section {
	padding: 50px 0px 50px;
	position: relative;
}
.our-design-head {
	padding: 0px 0px 30px;
}
.our-design-head h2 {
	font-size: 35px;
    padding: 0px 0px 0px;
    text-align: center;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}		
				
				/* -------------- web designing page css ------------- */
				
				
.web-header {
	background-image: url(../images/web-design-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.web-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.web-head {
	padding: 0px 0px 30px;
}
.web-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}	
.web-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.web-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.web-design {
	padding: 40px 0px 30px;
}
.design-head {
	padding: 10px 0px 30px;
}
.design-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.design-info {
	font-size: 18px;
    padding: 10px 0px 40px;
	line-height: 35px;
    text-align: justify;
}

.web-service {
	padding: 10px 0px 30px;
}
.box-grid {
	padding: 30px 0px 0px;
}
.box-grid .col-md-6 {
    padding-right: 0;
    padding-left: 0;
}
.inner-box {
    padding: 30px 40px;
    border: 1px solid #f2f2f2;
    transition: all .3s ease;
    height: 330px;
}
.inner-box:hover {
	color: #7e7e7e;
    border: 1px solid transparent;
    background: #222;
}
.inner-box .box-head {
	padding: 5px 0px 20px;
}
.inner-box .box-head h3 {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	font-weight: 600;
	text-transform: capitalize;
}
.inner-box .box-info {
	font-size: 18px;
    padding: 0px 0px 0px;
	line-height: 35px;
    text-align: justify;
}
.web-service {
}
.web-service .service-head {
	padding: 0px 0px 20px;
}
.web-service .service-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.web-service .service {
}
.web-service .service .list {
}
.web-service .service .list li {
	font-size: 16px;
    padding: 0px 0px 10px;
	line-height: 30px;
    text-align: justify;
}
.web-service .service .list li .list-head {
	font-size: 20px;
	text-align: left;
	margin: 0;
	padding: 0px 0px 0px;
	font-weight: 600;
	text-transform: capitalize;
}

.testimonial-section {
	padding: 30px 0px 0px;
}
.testimonial-section .container {
	width: 100%;
}
.test-1 {
	background-image: url(../../img1.jpg);
	background-size: cover;
}
.test-head {
	padding: 40px 0px 30px;
}
.test-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}



.test-2 {
	background-image: url(../../img2.jpg);
	background-size: cover;
}
				/*-------------------------------*/
				/*    Carousel Fade Transition   */
				/*-------------------------------*/

#fade-quote-carousel.carousel {
  padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
  opacity: 1;
  -webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
  bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li {
  background-color: #e84a64;
  border: none;
}
#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
}
#fade-quote-carousel .profile-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 100px;
}
.quote {
    color: rgba(0,0,0,.1);
    text-align: center;
    margin-bottom: 30px;
}


.process {
	padding: 40px 0px 40px;
	background: #f8f8f8;
}
.process-head {
	padding: 10px 0px 30px;
}
.process-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}

.pro-img {
}
.pro-head {
	padding: 30px 0px 10px;
}
.pro-head h4 {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	font-weight: 600;
	text-transform: capitalize;
}
.pro-info {
	font-size: 18px;
    padding: 10px 10px 10px;
	line-height: 35px;
    text-align: justify;
}

.portfolio {
	padding: 30px 0px 30px;
}
.port-head {
	padding: 10px 0px 30px;
}
.port-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.port-info {
}
				
				
				
				/* -------------- sofrware development page css ------------- */
				
.software-header {
	background-image: url(../images/automation-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.software-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.software-head {
	padding: 0px 0px 30px;
}
.software-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}	
.soft-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.soft-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.soft-intro-section {
	padding: 40px 0px 30px;
}
.soft-intro-head {
	padding: 10px 0px 10px;
}
.soft-intro-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.soft-intro-info {
	font-size: 18px;
    padding: 20px 0px 20px;
	line-height: 35px;
    text-align: justify;
}

.software-section {
	padding: 30px 0px 40px;
}
.soft-head {
	padding: 10px 0px 10px;
}
.soft-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.desktop {
	padding: 10px 0px 10px;
}
.desktop .icon-box {
	float: left;
}
.desktop .head {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 10px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.desktop .info {
	font-size: 17px;
    padding: 10px 0px 10px;
    line-height: 30px;
    text-align: justify;
}

.cloud {
	padding: 10px 0px 10px;
}
.cloud .icon-box {
	float: left;
}
.cloud .head {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 10px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.cloud .info {
	font-size: 17px;
    padding: 10px 0px 10px;
    line-height: 30px;
    text-align: justify;
}

.mobile {
	padding: 10px 0px 10px;
}
.mobile .icon-box {
	float: left;
}
.mobile .head {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 10px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.mobile .info {
	font-size: 17px;
    padding: 10px 0px 10px;
    line-height: 30px;
    text-align: justify;
}

.erp {
	padding: 10px 0px 10px;
}
.erp .icon-box {
	float: left;
}
.erp .head {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 10px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.erp .info {
	font-size: 17px;
    padding: 10px 0px 10px;
    line-height: 30px;
    text-align: justify;
}
				
				
				
				
				/* -------------- digital marketing page css ------------- */
				
.digital-header {
	background-image: url(../images/digital-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.digital-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.digital-head {
	padding: 0px 0px 30px;
}
.digital-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}	
.digital-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.digital-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.organic {
}

.inorganic {
	padding:40px 0px 30px;
	background: #fbfbfb;
}






				
				
				
				/* -------------- E-commerce solutions page css ------------- */
				
				
.e-commerce-header {
	background-image: url(../images/e-commerce-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.e-commerce-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.e-commerce-head {
	padding: 0px 0px 30px;
}
.e-commerce-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}	
.e-commerce-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.e-commerce-line .tagline {
    font-size: 25px;
    color: #fff;
    text-align: center;
}

.ecommerce-intro {
	padding: 40px 0px 30px;
}
.ecommerce-head {
	padding: 10px 0px 20px;
}
.ecommerce-head h2 {
	font-size: 35px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #151414;
    font-weight: 600;
    text-transform: uppercase;
}	
.ecommerce-info {
	font-size: 18px;
	line-height: 35px;
	text-align: justify;
}

.outer-section {
	padding: 50px 0px 50px;
	
}
.outer-section .opacity {
	
	
}

.customized-section {
	padding: 40px 0px 30px;
	position: relative;
}
.customized-section .container {
	width: 100%;
}

.block1 {
	padding: 0;
}
.customized {
	padding: 115px 50px;
	position: relative;
	box-sizing: border-box;
    background: gainsboro;
}
.customized-head {
	padding: 10px 0px 10px;
}
.customized-head h3 {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.customized-info {
	font-size: 18px;
	line-height: 35px;
	text-align: justify;
}
 
.block2 {
	padding: 0;
}
.feature {
	padding: 1em 4em 1em 1em;
	position: relative;
    top: 60px;
    z-index: 2;
    background: gray;
}
.feature-heading {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 10px 0px 10px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.feature-list {
	padding: 0px 20px;
    margin: 0;
    text-align: justify;
}
.feature-list li {
	padding: 10px 0px;
    font-size: 18px;
    line-height: 30px;
}

.managed-section {
	
    background-color: #efdede;
	background-image: url(../../cuidados-ao-montar-o-ecommerce-para-franquia-1068x566.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	position: relative;
    clear: both;
}
.managed-section .opacity {
	padding: 4em 0 5em;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.manage-head {
	padding: 10px 0px 10px;
}
.manage-head h3 {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.manage-info {
	font-size: 18px;
	line-height: 35px;
	text-align: justify;
}

				

				


				/* -------------- E mail solutions G Suite  page css ------------- */
				
				
				
.email-header {
	background-image: url(../images/email-bg.jpg);
	min-height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.email-header .opacity {
	padding: 120px 0px 120px;
	background: rgba(0, 0, 0, 0.51);
	color: #FFF;
}
.email-head {
	padding: 0px 0px 30px;
}
.email-head h2 {
	font-size: 35px;
    text-align: left;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
}
.email-line {
	padding: 20px 30px 20px;
    margin-top: 30px;
    letter-spacing: 3px;
    box-shadow: -1px 2px 12px 2px rgba(0, 0, 0, 0.15);
    background: #c7c7c747;
}
.email-line .line-head {
	padding-bottom: 20px;
}
.email-line .line-head h4 {
    font-size: 25px;
    color: #fff;
    text-align: center;
	margin: 0;
	font-weight: 600;
	text-transform: capitalize;
}
.email-line .line-logo {
	text-align: center;
}
.email-line .line-logo ul {
	margin: auto;
    padding: 0;
    list-style-type: none;
    display: block;
}
.email-line .line-logo ul li {
	display: inline-flex;
	padding: 0px 10px;
}
.email-line .line-logo ul li a {
	display: block;
	padding: 5px 5px;
	text-decoration: none;
	background: #ffffffc7;
}
.email-line .line-logo ul li a:hover {
}


.email-info {
	padding: 30px 0px 40px;
}
.abt-email-head {
	font-size: 25px;
	text-align: center;
	margin: 0;
	padding: 10px 0px 20px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.abt-email {
	font-size: 20px;
    line-height: 40px;
    padding: 20px 0px 10px;
    text-align: justify;
}

.google-section {
	background-image: url('../images/google-bg.jpg');
	background-size: 50%;
    background-repeat: no-repeat;
	background-position: left;
	padding: 40px 0px 30px;
	
	
}
.google-head {
	padding: 10px 0px 50px;
}
.google-head h2 {
	font-size: 35px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #191818;
    font-weight: 600;
    text-transform: uppercase;
}
.feature-head {
	font-size: 30px;
	text-align:left;
	margin: 0;
	padding: 0px 0px 20px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.common {
	padding: 20px 0px 20px;
}
.common .list {
	margin: 0;
	padding: 0;
}
.common .list li {
	padding: 10px 0px 10px;
    font-size: 25px;
}

.bg {
	background: #fdfdfd;
}
.google-feature {
	padding: 0px 0px 40px;
	background: -webkit-linear-gradient(45deg, rgba(208, 206, 206, 0.09), rgba(241, 241, 241, 0) 100%);
    background: -webkit-gradient(linear, 45deg, from(rgba(29, 236, 197, 0.4)), to(rgba(96, 0, 136, 0.4)));
    background: linear-gradient(to 45deg, rgba(29, 236, 197, 0.4), rgba(96, 0, 136, 0.4) 100%);
}
.connect {
	padding: 0px 0px 10px;
}
.connect .head {
	padding: 20px 0px 10px;
}
.connect .head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.connect .info {
	font-size: 20px;
    padding: 10px 0px 10px;
    text-align: center;
}
.connect .icon-box {
}

.create {
	padding: 0px 0px 10px;
}
.create .head {
	padding: 20px 0px 10px;
}
.create .head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.create .info {
	font-size: 20px;
    padding: 10px 0px 10px;
    text-align: center;
}
.create .icon-box {
}

.access {
	padding: 20px 0px 10px;
}
.access .head {
	padding: 0px 0px 10px;
}
.access .head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.access .info {
	font-size: 20px;
    padding: 10px 0px 10px;
    text-align: center;
}
.access .icon-box {
}

.control {
	padding: 0px 0px 10px;
}
.control .head {
	padding: 20px 0px 10px;
}
.control .head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}
.control .info {
	font-size: 20px;
    padding: 10px 0px 10px;
    text-align: center;
}
.control .icon-box {
}

				
				/* -------------- E mail solutions Rediff  page css ------------- */
				

.rediff-benefit {
	padding: 30px 0px 40px;
}
.benefit-head {
	padding: 0px 0px 20px;
}
.benefit-head h3 {
	font-size: 30px;
	text-align: center;
	margin: 0;
	padding: 0px 0px 0px;
	color: #191818;
	font-weight: 600;
	text-transform: capitalize;
}

.box1 {
	padding: 10px 10px 10px 0px;
	height: 150px;
    margin-bottom: 10px;
}
.box1 .box-icon {
	float: left;
    margin-right: 10px;
    background: #fd700d;
}
.box1 .box-icon i {
    width: 70px;
    height: 100px;
	line-height: 100px;
    text-align: center;
}				
.box1 .box-head {
}
.box1 .box-head h4 {
	font-size: 22px;
	text-align: center;
    padding-bottom: 10px;
	margin: 0;
	text-transform: capitalize;
    font-weight: 600;
}
.box1 .box-info {
	font-size: 18px;
	line-height: 30px;
	padding: 5px 5px 5px 80px;
	text-align: justify;
	background: #f2f2f2;
}

				/* -------------- New template ------------- */
				
/*.new-page-wrap .container {
	padding: 0rem 3rem 0rem;
    width: 100%;
    max-width: 100%;
}*/	

				/* -------------- new tag line section css ------------- */
				
.new-tagline-section {
	padding: 30px 0px 30px;
	position: relative;
}
.tagline-box {
	padding-left: 60px;
	position: relative;
}
.tagline-box .icon {
	width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: #ee0979;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}
.tagline-box h3 {
	margin-bottom: 0;
    font-size: 17px;
    font-weight: 700;
}
.tagline-box .info {
}
.new-tagline-section .mail-button {
	margin-top: 0px;
}
.new-tagline-section .mail-button ul {
	margin: auto;
    padding: 0;
    list-style-type: none;
}
.new-tagline-section .mail-button ul li {
	display: inline-block;
    padding: 0px 10px;
    margin-right: 10px;
    border-radius: 3px;
}
.new-tagline-section .mail-button ul li:nth-child(1) {
	background: linear-gradient(90deg,#ee0979,#ff6a00);
}
.new-tagline-section .mail-button ul li:nth-child(2) {
	background: linear-gradient(135deg,#23bdb8,#43e794);
}
.new-tagline-section .mail-button ul li a {
	font-size: 18px;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    color: #fff;
}
.new-tagline-section .mail-button ul li a span {
	display: block;
    font-size: 14px;
}

				/* -------------- intro section css ------------- */
								
.new-intro-section {
	padding: 50px 0px 50px;
	position: relative;
	text-align: center;
}
.to-do head h3 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
}
.bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 15px auto 20px;
    position: relative;
    border-radius: 30px;
}	
.bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2.6px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    animation: moving 4s linear infinite;
}	
@keyframes moving {
	0% { transform: translateX(0px); }
	100% { transform: translateX(80px); }
}
.to-do-info {
	font-size: 15px;
	margin-top: 10px;
	color: #6084a4;
}
.to-do-block {
    text-align: center;
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 7px 20px rgba(0,0,0,.03);
    padding: 35px 25px;
    border-radius: 5px;
    -webkit-transition: .5s;
    transition: .5s;
}
.to-do-block:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}	
.to-do-block h3 {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
}

				/* -------------- features section css ------------- */
								
.new-feature-section {
	padding: 50px 0px 50px;
	position: relative;
	background: #f7fafd;
	text-align: center;
}
.feature-box {
    margin-bottom: 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    padding: 35px 25px 35px 110px;
	transition: .5s;
}
.feature-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 2px;
    height: 100%;
    background: -webkit-gradient(linear,left top,right top,from(#ee0979),to(#ff6a00));
    background: linear-gradient(90deg,#ee0979,#ff6a00);
	transition: .5s;
}
.feature-box:hover:before {
    width: 100%;
}
.feature-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.feature-box .icon {
    width: 65px;
    height: 65px;
    text-align: center;
    line-height: 65px;
    background-color: rgba(231,70,69,.2);
    border-radius: 50%;
    color: #ee0979;
    position: absolute;
    left: 25px;
    top: 35px;
	transition: .5s;
}
.feature-box:hover .icon {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    color: #ee0979;
    background-color: #fff;
}
.feature-box h3 {
    margin-bottom: 0;
    -webkit-transition: .5s;
    transition: .5s;
    font-size: 22px;
    font-weight: 300;
	transition: .5s;
}
.feature-box:hover h3 {
	color: #fff;
}
.feature-box .box-data {
	font-size: 14px;
    margin-top: 10px;
	color: #6084a4;
    font-weight: 300;
	transition: .5s;
}
.feature-box:hover .box-data {
	color: #fff;
}

				/* -------------- prod/feature box section css ------------- */
.prod-box {
	padding: 50px 0px 50px;
	position: relative;
	z-index: 1;
    /*margin-top: -100px;*/
}
.prod-inner-box {
	background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}
.prod-inner-box .single-box {
	text-align: center;
    position: relative;
    padding: 115px 25px 40px;
    overflow: hidden;
}
.prod-inner-box .col-lg-3 {
    border-right: 1px solid #eee;
}
.prod-inner-box .col-lg-3:last-child {
    border-right: none;
}
.single-box .icon {
	-webkit-transition: .4s;
    transition: .4s;
    color: #ee0979;
    position: absolute;
    top: 60px;
    left: 45%;
    margin-top: -12px;
}
.single-box .icon i:before {
    font-size: 40px;
}
.single-box:hover .icon {
    top: 40px;
    -webkit-animation: iconTop .4s ease-in-out;
    animation: iconTop .4s ease-in-out;
}
@keyframes iconTop {
	0% { transform: translateY(0px); }
	100% { transform: translateY(-100px); }
}

.single-box .icon.color-fb7756 {
    color: #fb7756;
}
.single-box .head {
	transition: .4s;
    margin-bottom: 0;
	font-size: 22px;
    font-weight: 300;
}
.single-box:hover .head {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}
.single-box .info {
	transition: .4s;
    margin-bottom: 0;
	font-size: 14px;
    margin-top: 12px;
	color: #6084a4;
}
.single-box:hover .info {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}
.single-box a {
	background: linear-gradient(90deg,#ee0979,#ff6a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    font-size: 15px;
    font-weight: 400;
	text-decoration: none;
	transition: .5s;
    outline: 0!important;
}
.single-box:hover a {
    opacity: 1;
    visibility: visible;
    bottom: 23px;
}

				/* -------------- prod/feature box section css ------------- */
.client-section {
	padding: 50px 0px 50px;
	position: relative;
	z-index: 1;
    /*margin-top: -100px;*/
}
.client-inner {
	background: #fff;
    box-shadow: 0 2px 48px 0 rgba(0,0,0,.08);
    border-radius: 3px;
    margin-top: 20px;
    text-align: center;
    padding: 5px 30px 30px;
}
.client-inner a {
	display: block;
    margin-top: 25px;
    position: relative;
}
.client-inner a img {
	width: 100px;
    height: auto;
	transition: .5s;
}
.client-inner a img:first-child {
	filter: grayscale(5);
}
.client-inner a:hover img:first-child {
    opacity: 0;
    visibility: hidden;
}
.client-inner a img:nth-child(2) {
	position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
}
.client-inner a:hover img:nth-child(2) {
    opacity: 1;
    top: 0;
    visibility: visible;
}


				/* -------------- e-mail service section css ------------- */
				
.mail-service-section {
	padding: 50px 0px 50px;
	position: relative;
}
.mail-image {
    position: relative;
}
.mail-img {
	padding: 50px 0px;
}
.circle-img {
	position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-55%);
    transform: translateY(-55%);
    z-index: -1;
    right: 0;
    margin: 0 auto;
}
.circle-img img {
	animation: spin 30s linear infinite;
}
@keyframes spin {
	100% { transform: rotate(360deg); }
}
.mail-service-section .bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 15px 0 20px;
    position: relative;
    border-radius: 30px;
}	
.mail-service-section .mail-button {
	margin-top: 30px;
}
.mail-service-section .mail-button ul {
	margin: auto;
    padding: 0;
    list-style-type: none;
}
.mail-service-section .mail-button ul li {
	display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 3px;
}
.mail-service-section .mail-button ul li:nth-child(1) {
	background: linear-gradient(90deg,#ee0979,#ff6a00);
}
.mail-service-section .mail-button ul li:nth-child(2) {
	background: linear-gradient(135deg,#23bdb8,#43e794);
}
.mail-service-section .mail-button ul li a {
	font-size: 18px;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    color: #fff;
}
.mail-service-section .mail-button ul li a span {
	display: block;
    font-size: 14px;
}
.mail-service-section .mail-button ul li:before {
    display: inline-block;
    float: left;
    margin-right: 5px;
    background: #fbfbfb;
    text-align: center;
}
.mail-service-section .mail-button ul li:nth-child(1):before {
	content: url(../images/right-bar-2.png);
}
.mail-service-section .mail-button ul li:nth-child(2):before {
	content: url(../images/right-bar-3.png);
}

				/* -------------- quote section css ------------- */

.new-quote-section {
	position: relative;
    z-index: 1;
    background: -webkit-gradient(linear,left top,right top,from(#ee0979),to(#ff6a00));
    background: linear-gradient(90deg,#ee0979,#ff6a00);
    padding-top: 100px;
    padding-bottom: 100px;
	text-align: center;
}
.new-quote-section:before {
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .15;
    height: 100%;
    z-index: -1;
    background-image: url(../images/319-3194381_small-transparent-background-png-monochrome.png);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
}
.new-quote-section .head {
	text-align: center;
}
.new-quote-section .mail-button {
	margin-top: 30px;
}
.new-quote-section .mail-button ul {
	margin: auto;
    padding: 0;
    list-style-type: none;
}
.new-quote-section .mail-button ul li {
	display: inline-block;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 3px;
	background: linear-gradient(135deg,#23bdb8,#43e794);
}
.new-quote-section .mail-button ul li a {
	font-size: 18px;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 3px;
    color: #fff;
}
.new-quote-section .mail-button ul li a span {
	display: block;
    font-size: 14px;
}
				/* -------------- footer section css ------------- */
				
.new-footer {
	padding: 50px 0px 50px;
	position: relative;
	background: #f7fafd;
}



				