@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap');
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {	
	background-color: #fff;
	font-weight: 400;
	font-size: 15px;
	line-height: 26px;
	font-family: 'Dosis', sans-serif;
}

/* <----------- Predefined Css Changes ------------> */

h1,h1,h3,h4,h5,h6{
	margin: 0 0 8px;
}
p{
	margin: 0;
}
i{
	margin-right: 5px;
}
a {
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	text-decoration: none;
}
a:hover, a:focus {
	text-decoration: none;
	outline: 0px;
}
button:focus{
	outline: none !important;
	box-shadow: none;
	border: none;
}
input:focus,textarea:focus {
	outline: none !important;
	box-shadow: none;
}
button{
	border: none;
	outline: none;
	user-select: none;
}
button i{
	margin-left: 5px;
	transition: all 0.3s;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
figure {
	margin: 0;
}
section {
	display: block;
	position: relative;
	padding: 70px 0;
	width: 100%;
}
footer{
	padding: 0 0;
	display: block;
	position: relative;
	width: 100%;
}
.blueBtn {
    background-color: #02a5b0;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 100%;
    max-width: 220px;
	transition: all 0.3s;
}
.blueBtn:hover {
	background-color: #08b1bd;
    transition: all 0.3s;
    transform: translateY(-1px);
    box-shadow: 0px 2px 7px #02a5b073;
}
.blueBtn:hover i{
	transform: translateX(5px);
	transition: all 0.2s;
}

/*<--------- Header Css ---------->*/

.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	top: 0;
	z-index: 999;
	-webkit-box-align: center;
	align-items: center;
	will-change: height;
	display: grid;
	padding: 10px 0;
}
.header.sticky{
	background: #02a5b0;
    border-bottom: 1px solid #eeeeee6e;
}
.sideBar{
	display: flex;
	flex-grow: 1;
	flex-basis: 100%;
}
.header .navbar-dark .navbar-brand {
    color: #fff;
    font-weight: 600;
    font-size: 26px;
	padding: 0;
	margin: 0;
}
.header .navbar-toggler {
    border: none;
}
.header .navbar-toggler:focus{
	outline: unset;
	border: none;
	box-shadow: unset !important;
}
.header ul{
	align-items: center;
}
.header ul li a{
	display: block;
	font-size: 16px;
	padding: 8px 15px;
	margin: 0 10px;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.3s;
}
.header ul li a:hover{
	background-color: rgba(255, 255, 255, 0.205);
	transition: all 0.3s;
}
.header ul .active{
	background-color: rgba(255, 255, 255, 0.205);
	padding: 0px 5px;
	color: #fff;
  	transition: all 0.3s;
}
.navbar-light .navbar-toggler {
    border-color: unset;
}
.navbar-toggler {
    border: 0px solid transparent;
}
.iconTitle {
	margin-left: 30px;
	color: #fff;
}
#nav-icon1 {
	height: 28px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	padding: 0 5px;
}
#nav-icon1 span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 9px;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
#nav-icon1 span:nth-child(1) {
	top: 4px;
	width: 10px;
}
#nav-icon1 span:nth-child(2) {
	top: 12px;
	width: 20px;
}
#nav-icon1 span:nth-child(3) {
	top: 20px;
	width: 10px;
	margin-left: 10px;
}
/*<--------- Footer Css ---------->*/

.footer{
	position: relative;
}
.footer section{
	padding: 40px 0;
}
.footerBox{
	text-align: center;
}
.footerBox h4{
	font-size: 22px;
	font-weight: 700;
}
.footerBox ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerBox ul li{
    font-size: 18px;
	font-weight: 600;
	margin: 10px 15px;
}
.footerBox ul li a{
	transition: all 0.2s;
	color: #222222;
}
.footerBox ul li a:hover{
	margin-left: 3px;
	transition: all 0.2s;
}
.footerBox ul li a i{
	color: #777;
	font-size: 15px;
	transition: all 0.2s;
}
.address,.phone{
	font-size: 18px;
	font-weight: 600;
	color: #1d1d1f;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: justify;
}
.footerBox a{
	color: #1d1d1f;
	text-decoration: underline;
}
.footerIcon {
    background: #02a5b0;
    padding: 10px 10px;
    color: #fff;
    width: 38px;
	min-width: 38px;
    height: 38px;
    border-radius: 50px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footerIcon i{
	margin: 0;
}
.footer .copyRight{
	background-color: #f0f0f0;
	text-align: center;
	font-size: 20px;
	color: #1d1d1f;
	font-weight: 700;
	padding: 20px 0;
}
/*<--------- App Development Css ---------->*/

.grayBg{
	background-color: #f7f8ff;
}
.contentBox{
	position: relative;
	padding: 10px 12px;
	margin: auto;
}
.imageWrapper img{
	margin: auto;
}
.contentBox .serviceHeading{
	font-size: 32px;
	font-weight: 700;
	line-height: 36px;
	margin: 0 0 8px;
}
.serviceHeading .title{
	color:#02b2be;
}
.contentBox .brief{
	padding:8px 0 0;
	font-size: 18px;
	line-height: 34px;
	color: #777;
	font-weight: 600;
}
.mobileServiceBox{
	display: flex;
	align-items: center;
	margin: 8px 0;
}
.mobileServiceBox span{
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin-left: 5px;
}
.contactForm{
	width: 100%;
	max-width: 500px;
	margin: auto;
}
.project .headingBox{
	margin: 10px 0;
}
.serviceIndustriesBox {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
}
.serviceIndustriesBox img{
	margin:0 auto 8px;
}
.darkCard{
	background-color: #1d1d1f;
	border-radius: 10px;
	padding: 15px 15px;
	margin: 10px 0;
	color: #fff;
	cursor: pointer;
	user-select: none;
}
.darkCard .cardIconWrapper {
    background: rgba(255, 255, 255, 0.07);
    padding: 20px;
    border-radius: 50px;
    width: 70px;
    height: 70px;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	margin: 0 0 25px;
}
.darkCard .cardTitle{
	font-weight: 700;
	font-size: 24px;
	margin:0 0 8px;
}
.darkCard .cardBrief {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    margin: 15px 0 10px;
}
.cardIconWrapper i{
	transition: all 0.5s;
	margin: auto;
}
.darkCard:hover .cardIconWrapper i{
	transform: rotate(360deg);
	transition: all 0.5s;
}
.dflex{
	display: flex;
	display: -webkit-flex;
}

/*<--------- Website Development Css ---------->*/

.webCard {
	text-align: center;
}
.webCard h3{
	margin: 10px 0 0;
}
.webCard .servicePara{
	height: unset;
	padding: 10px 0 0;
}
.webIconBox {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 1px 5.52px 0.48px rgb(238 238 238 / 70%);
    padding: 10px 10px;
    display: inline-block;
    margin: 5px auto;
}
.technologyBox{
	border: 1px dashed #02a5b0;
	color: #1d1d1f;
	box-shadow: 0px 1px 5.52px 0.48px rgba(238, 238, 238, 0.7);
	padding: 15px 15px;
	margin: 10px 0;
	display: flex;
	align-items: center;
	justify-content: left;
	transition: all 0.3s;
}
.technologyBox:hover{
	background-color: #000;
	color: #fff;
	border: 1px dashed transparent;
	transition: all 0.3s;
	cursor: pointer;
}
.technologyBox i{
	font-size: 40px;
}
.technologyBox h3{
	font-size: 22px;
	font-weight: 700;
	margin:0 0 0 10px;
}

/*<--------- Cloud Computing Css ---------->*/

.cloudIconBox{
	display: flex;
	align-items: center;
}
.cloudIconBox .cloudTitle{
	margin:0 0 0 10px;
	font-size: 25px;
	font-weight: 700;
}
.listWrapper {
    padding: 10px 0;
    position: relative;
}
.listHeading {
    color: #1d1d1f;
    font-size: 20px;
    font-weight: 700;
}
.listWrapper ul{
    padding:10px 0 0 20px;
    margin: 0;
}
.listWrapper ul li{
    list-style-type: disc;
	font-size: 16px;
	color: #777;
	font-weight: 500;
	line-height: 30px;
}
.listWrapper ul li::marker{
    color: #02b2be;
}

/*<--------- Contact Page Css ---------->*/

.mapBox{
	padding:0 0;
	width: 100%;
	position: relative;
}
.mapBox iframe{
	width: 100%;
}
.display_none{
	display: none;
}