* {
	margin: 0px;
	padding: 0px;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0px;
	padding: 0px;
	font-family: 'Roboto', sans-serif;
	background: #fafafa;
}
h1,
h2,
h3,
h4,
h5,
h6,
a,
ul,
li,
span,
div,
button,
input,
textarea {
	font-family: 'Roboto', sans-serif;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
a,
a:hover {
	text-decoration: none;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: none !important;
	box-shadow: none !important;
	font-family: 'Poppins', sans-serif !important;
	/*border: 1px solid #ced4da !important;*/
}
.container {
	width: 100%;
	max-width: 1320px;
	margin: auto;
}
.header {
	position: absolute;
	width: 100%;
	top: 0;
	z-index: 999;
}
.it-logo {
	color: white;
	font-size: 24px;
}
.it-logo:hover {
	color: white;
}
.header.fixed .it-logo {
	color: #363636;
}
.header.fixed {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 5px rgb(0 0 0 / 15%);
}
.header .row {
	align-items: center;
}
.header .logo img {
	width: auto;
    max-height: 44px;
}
.header .logo .logo-color {
	display: none;
}
.header.fixed .logo .logo-white {
	display: none;
}
.header.fixed .logo .logo-color {
	display: block;
}
.header span.mobile-toggle {
	display: none;
}
.header ul.navigation-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	/*    visibility: hidden;*/
}
.header.shownav ul.navigation-menu {
	visibility: visible;
}
.header.fixed ul.navigation-menu {
	visibility: visible;
}
.header ul.navigation-menu li {
	position: relative;
}
.header ul.navigation-menu li a {
	font-size: 16px;
	text-transform: capitalize;
	color: #fff;
	padding: 0 10px;
	margin: 0px 5px;
	line-height: 64px;
	transition: all 0.3s;
	display: inline-block;
	position: relative;
}
.header ul.navigation-menu li a::after {
	width: 100%;
	height: 1px;
	content: '';
	position: absolute;
	background: #FF5163;
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: all .3s ease-in-out;
}
.header ul.navigation-menu li:last-child a {
	margin-right: 0;
}
.header.fixed ul.navigation-menu li a {
	color: #323232;
	line-height: 64px;
}
.header ul.navigation-menu li a:hover {
	color: #FF5163;
}
.header.fixed ul.navigation-menu li.active a {
	color: #FF5163;
}
.header ul.navigation-menu li.active a::after {
	opacity: 1;
}
.header ul.navigation-menu li.login a {
	padding: 10px 20px;
	background: #fff;
	color: #333;
	font-size: 16px;
	transition: all 0.3s;
	border-radius: 30px;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}
.header ul.navigation-menu li.login a:hover {
	padding: 10px 20px;
	background: #333;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s;
	border-radius: 30px;
	cursor: pointer;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}
.btn {
	padding: 10px 40px;
	background: #FF5163;
	color: #fff;
	font-size: 16px;
	transition: all 0.3s;
	border-radius: 30px;
	cursor: pointer;
	border: 2px solid #FF5163;
}
.btn:hover {
	background: #ffffff;
	color: #FF5163;
	border-color: #FF5163;
}
.header ul.navigation-menu li.menu a:after {
	content: "\f107";
	font-family: FontAwesome;
	margin-left: 8px;
	font-size: 16px;
}
.header ul.navigation-menu li ul.dropdown {
	position: absolute;
	left: 0;
	right: 0;
	width: 250px;
	background: #fff;
	top: 75%;
	display: none;
	z-index: 9;
	padding: 15px 0px;
	transition: all 0.5s;
	border-radius: 4px;
	box-shadow: 0px 7px 7px rgb(0 0 0 / 13%);
	animation-name: upfade;
	animation-duration: 0.3s;
}
@keyframes upfade {
	0% {
		top: 100%;
	}
	100% {
		top: 75%;
	}
}
.header ul.navigation-menu li:hover .dropdown {
	display: block;
	transition: all 0.5s;
}
.header ul.navigation-menu li ul.dropdown li {
	display: block;
	text-align: left;
}
.header ul.navigation-menu li ul.dropdown li a {
	line-height: 20px;
	padding: 10px 15px;
	text-align: left;
	display: block;
	margin: 0px;
	color: #323232;
}
.header ul.navigation-menu li ul.dropdown li a:after {
	content: "";
}
.banner {
	background: url(images/main-banner2.jpg) center;
	background-repeat: no-repeat;
	padding: 120px 0px 0px;
	height: 100vh;
	background-size: cover;
	/*background-color: #0027e9;
	background-image: linear-gradient(160deg, #0027e9 0%, #58FFE0 100%);*/
}
.gradient-bg {
	background-color: #0027e9;
	background-image: linear-gradient(160deg, #0027e9 0%, #58FFE0 100%);
	position: relative;
}
@media (min-width: 1700px) {
	.banner {
		padding: 280px 0px 0px;
	}
}
.banner .container > .row {
	align-items: center;
}
.banner .banner-content h5 {
	font-size: 30px;
	color: #fff;
}
.banner .banner-content h2 {
	font-size: 55px;
	font-weight: normal;
	color: #fff;
	margin: 25px 0px 35px;
	letter-spacing: -1px;
	position: relative;
}
.banner .banner-content h2::after {
	position: absolute;
	content: "";
	height: 4px;
	width: 60px;
	background: #FF5163;
	top: -20px;
	left: 0;
}
.banner .banner-content p {
	font-size: 18px;
	color: #fff;
}
.banner .banner-content h2 span {
	font-weight: 900;
}
.banner .banner-content a {
	padding: 10px 40px;
	background: #30d1ff;
	color: #fff;
	text-transform: capitalize;
	border-radius: 4px;
	transition: all 0.3s;
	display: inline-block;
	font-size: 18px;
}
.banner .banner-right .col-sm-6 {
	padding-right: 10px;
	padding-left: 10px;
}
.banner .banner-right a {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	padding: 50px 30px;
	line-height: 34px;
	width: 100%;
	border: 2px solid #30d1ff;
	background: rgb(0 0 0 / 25%);
	display: inline-block;
	text-align: center;
	margin: 10px 0px;
	text-transform: capitalize;
	transition: all 0.3s;
	position: relative;
	font-family: 'Titillium Web', sans-serif;
	text-align: left;
}
.banner .banner-right .col-sm-6:nth-child(2) a,
.banner .banner-right .col-sm-6:nth-child(4) a {
	text-align: right;
}
.banner .banner-right {
	position: relative;
}
.banner .banner-right a:hover {
	border: 2px solid rgb(48 209 255);
	background: rgb(48 209 255 / 70%);
}
.section {
	padding: 80px 0px;
	position: relative;
}
.section .container {
	/*    max-width: 1100px;*/
}
.section .smalll-title {
	font-size: 24px;
	color: #1e40c8;
	font-weight: 500;
}
.section .big-title {
	font-size: 55px;
	font-weight: 600;
	letter-spacing: -1px;
	color: #464646;
	line-height: 65px;
	margin: 15px 0px 0px;
	position: relative;
	//max-width: 450px;
}
.section .big-title span {
	color: #FF5163;
}
.section .big-title::before {
	position: absolute;
	content: " ";
	height: 4px;
	width: 60px;
	background: #FF5163;
	top: -20px;
	left: 0;
}
.section .img-holder {
	position: relative;
	padding: 100px;
}
.section .img-holder img {
	z-index: 1;
	position: relative;
}
.section .img-holder::before {
	content: '';
	position: absolute;
	height: 100px;
	width: 100px;
	top: 50px;
	right: 50px;
	background: #00adff;
	z-index: 0;
}
.section .img-holder::after {
	content: '';
	position: absolute;
	height: 50px;
	width: 50px;
	bottom: 75px;
	right: 75px;
	background: #FF5163;
	z-index: 0;
}

/*.section .big-title:after {
   width: 200px;
   content: "";
   height: 4px;
   background: #1e40c8;
   bottom: -15px;
   left: -100px;
   position: absolute;
}*/

.section .row.right-sec .big-title:after {
	left: 0;
}
.section p {
	font-size: 16px;
	margin: 25px 0px;
	color: #323232;
	line-height: 28px;
}
.section p:last-child {
	margin-bottom: 0;
}
.section a.rd-more {
	padding: 10px 40px;
	background: #1e40c8;
	color: #fff;
	text-transform: capitalize;
	border-radius: 4px;
	display: inline-block;
	transition: all 0.3s;
}
.section a.rd-more:hover {
	background: #30d1ff;
}
.services {
	padding: 60px 0px;
	position: relative;
}
.services .title-sec {
	max-width: 1000px;
	width: 100%;
	margin: auto;
	text-align: center;
}
.services .title-sec .smalll-title {
	font-size: 16px;
	color: #363636;
	font-weight: 500;
	margin-bottom: 30px;
}
.services .title-sec .big-title {
	font-size: 32px;
	font-weight: bold;
	color: #060033;
	line-height: 46px;
	margin: 15px 0px;
	position: relative;
}

/*
.services .title-sec .big-title::after {
	content: ' ';
	position: absolute;
	width: 100px;
	height: 5px;
	background: #323232;
	left: calc(50% - 50px);
	bottom: -10px;
}
*/


/*.services .title-sec .big-title::before {
    content:' ';
    position: absolute;
    width:100px;
    height: 1px;
    background: #323232;
    left: calc(50% - 50px);
    bottom:-10px;
}*/

.features .title-sec .smalll-title {
	color: #ffffff;
	opacity: 0.7;
}
.features .title-sec .big-title {
	color: #ffffff;
}
.services .col-sm-4 .block {
	text-align: center;
	margin-bottom: 40px;
	padding: 0px 50px;
}
.services .col-sm-4 .block .imgblock {
	display: inline-block;
	padding: 20px;
	background: #fff;
	border-radius: 50%;
	transition: all .3s ease-in-out;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, .2);
}
.services .col-sm-4 .block .imgblock i {
	width: 60px;
	height: 60px;
	font-size: 50px;
	display: block;
	color: #00adff;
}
.services .col-sm-4 .block:hover .imgblock {
	background: #00adff;
	box-shadow: 0 0 0 10px rgba(255, 255, 255, .1), 0 0 0 20px rgba(255, 255, 255, .2);
}
.services .col-sm-4 .block:hover .imgblock i {
	color: white;
}
.services .col-sm-4 .block label {
	font-size: 18px;
	color: #ffffff;
	font-weight: 500;
	margin: 25px 0px 5px;
	text-transform: capitalize;
	display: block;
}
.services .col-sm-4 .block p {
	font-size: 14px;
	margin: 5px 0px 20px;
	color: #ffffff;
	line-height: 24px;
}
.services .col-sm-4 .block a.more-ser {
	width: 40px;
	height: 40px;
	display: inline-block;
	line-height: 40px;
	border-radius: 20px;
	display: none;
}
.footer-form {
	padding: 60px 0px;
	position: relative;
	background: url(images/contactbanner.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.footer-form .title-sec {
	max-width: 1000px;
	width: 100%;
	margin: auto;
	text-align: center;
}
.footer-form .title-sec .smalll-title {
	font-size: 24px;
	color: #1e40c8;
	font-weight: 500;
}
.footer-form .title-sec .big-title {
	font-size: 34px;
	font-weight: bold;
	color: #323232;
	line-height: 46px;
	margin: 15px 0px 80px;
	position: relative;
}
.footer-form form input,
form .form-control {
	width: 90%;
	height: 50px;
	border-radius: 5px;
	font-size: 16px;
	padding: 0px 20px;
	box-shadow: 0px 2px 7px rgb(0 22 87 / 12%);
	border: none;
	margin-bottom: 20px;
	display: inline-block;
}
.footer-form form input:focus,
.footer-form form textarea:focus,
form input:focus,
form textarea:focus {
	border: none !important;
	box-shadow: 0px 2px 7px rgb(0 22 87 / 12%) !important;
}
.footer-form form textarea,
form textarea {
	width: 90%;
	height: 90px;
	border-radius: 4px;
	font-size: 16px;
	padding: 20px 20px;
	box-shadow: 0px 2px 7px rgb(0 22 87 / 12%);
	border: none;
	margin-bottom: 20px;
	display: inline-block;
}
.footer-form form button.btn.btn-primary.submit,
button.btn.btn-primary.submit {
	float: left;
	padding: 0px 60px;
	background: #1e40c8;
	color: #fff;
	text-transform: capitalize;
	border-radius: 4px;
	display: inline-block;
	height: 50px;
	font-size: 16px;
	transition: all 0.3s;
	border: none;
}
.footer-form form button.btn.btn-primary.submit:hover,
form button.btn.btn-primary.submit:hover {
	background: #30d1ff;
}
.footer {
	background: #363636;
	padding: 50px 0px 0px;
	color: #fff;
	text-align: center;
}
.footer .ft-logo ul li {
	display: inline-block;
	margin-right: 20px;
}
.footer .ft-logo p {
	margin: 30px 0px;
	font-size: 16px;
	line-height: 30px;
	color: #a7a7a7;
}
.footer .ft-logo ul li a {
	font-size: 20px;
	color: #fff;
	transition: all 0.3s;
}
.footer .ft-logo ul li a:hover {
	color: #30d1ff;
}
.footer .ft-address {
	padding-left: 50px;
}
.footer .ft-address h4 {
	text-transform: capitalize;
	margin-bottom: 20px;
}
.footer .ft-address p {
	font-size: 16px;
	line-height: 30px;
	color: #a7a7a7;
}
.footer .row.copyrights {
	padding: 35px 0px;
	border-top: 1px solid #a7a7a7;
	margin-top: 35px;
}
.footer .row.copyrights span {
	font-size: 16px;
	color: #a7a7a7;
}
.footer .row.copyrights a {
	font-size: 16px;
	color: #a7a7a7;
	text-transform: capitalize;
	margin-left: 25px;
	transition: all 0.3s;
}
.footer .row.copyrights a:hover {
	color: #30d1ff;
}
.more-about {
	background: url('images/mapbg.png');
	padding: 60px 0px;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
}
.more-about .small-title {
	font-size: 24px;
	color: #1e40c8;
	font-weight: 500;
}
.more-about .bog-title {
	font-size: 28px;
	font-weight: bold;
	color: #323232;
	line-height: 40px;
	margin: 15px 0px 30px;
	position: relative;
}
.more-about p {
	font-size: 16px;
	margin: 25px 0px 35px;
	color: #323232;
	line-height: 26px;
}
.more-about ul li {
	float: left;
	width: 48%;
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 25px;
}
.more-about ul li img {
	margin-right: 6px;
}
.more-details {
	background: #f2f6fc;
	padding: 60px 0px;
}
.more-details .col-sm-4 .detail-block {
	min-height: 700px;
	background: #fff;
	margin: 10px 0px;
}
.more-details .col-sm-4 .detail-block img {}
.more-details .col-sm-8 .col-sm-12 .detail-block {
	background: url(images/detail-block-img2.jpg);
	background-repeat: no-repeat;
	background-position: center;
}
.more-details .col-sm-8 .detail-block {
	width: 100%;
	min-height: 330px;
	background: #fff;
	margin: 15px 0px;
}
.more-details .col-sm-8 .col-sm-12 .detail-block .block {
	position: absolute;
	bottom: 35px;
	left: 35px;
	background: rgb(48 209 255 / 63%);
	width: 75%;
	padding: 15px;
}
.more-details .col-sm-8 .col-sm-12 .detail-block .block h4 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 10px;
}
.more-details .col-sm-8 .col-sm-12 .detail-block .block p {
	color: #fff;
	font-size: 14px;
	margin-bottom: 0;
}
.more-details .col-sm-8 .detail-block .news-career {
	padding: 15px;
}
.more-details .col-sm-8 .detail-block .news-career .title {
	font-size: 22px;
	text-transform: capitalize;
	color: #1e40c8;
	margin-bottom: 10px;
}
.more-details .col-sm-8 .detail-block .news-career .nc-block {
	margin-bottom: 10px;
	padding-left: 15px;
	border-left: 3px solid #30d1ff;
}
.more-details .col-sm-8 .detail-block .news-career .nc-block h5 {
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: #1e40c8;
}
.more-details .col-sm-8 .detail-block .news-career .nc-block p {
	font-size: 14px;
}
.more-details .col-sm-8 .col-sm-6:nth-child(2) .detail-block {
	background: #1e40c8;
}
.more-details .col-sm-8 .col-sm-6:nth-child(2) .detail-block .news-career h5 {
	color: #fff;
}
.more-details .col-sm-8 .col-sm-6:nth-child(2) .detail-block .news-career .title {
	color: #fff;
}
.more-details .col-sm-8 .col-sm-6:nth-child(2) .detail-block .news-career p {
	color: #fff;
}
.content-block {
	padding: 15px;
	margin-top: 34px;
}
.content-block .title {
	font-size: 22px;
	text-transform: capitalize;
	color: #1e40c8;
	margin-bottom: 10px;
}
.content-block .nc-block {
	margin-bottom: 10px;
	padding-left: 15px;
	border-left: 3px solid #30d1ff;
}
.content-block .nc-block h5 {
	font-size: 16px;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: #1e40c8;
}
.content-block .nc-block p {
	font-size: 14px;
}
.details-slider ul.slick-dots {
	width: 100%;
	text-align: center;
}
.details-slider ul.slick-dots li {
	display: inline-block;
	margin: 0px 5px;
}
.details-slider ul.slick-dots li button {
	font-size: 0;
	width: 8px;
	height: 8px;
	background: transparent;
	border: none;
	border-radius: 20px;
	border: 1px solid #fff;
}
.details-slider ul.slick-dots li.slick-active button {
	background: white;
	border: 1px solid #fff;
}
.blue-dots.details-slider ul.slick-dots li.slick-active button {
	background: #1e40c8;
	border: 1px solid #1e40c8;
}
.blue-dots.details-slider ul.slick-dots li button {
	border: 1px solid #1e40c8;
}
.innerbanner {
	height: 300px;
	padding-top: 100px;
	background: url(images/innerbackground.jpg) no-repeat center -230px;
}
.innerbanner .innerbanner-content h2 {
	font-size: 44px;
	font-weight: normal;
	color: #fff;
	margin: 25px 0px;
	letter-spacing: -1px;
	position: relative;
}
.innerbanner .innerbanner-content h2::after {
	position: absolute;
	content: "";
	height: 4px;
	width: 60px;
	background: #FF5163;
	top: -10px;
	left: 0;
}
.innerbanner .innerbanner-content p {
	font-size: 18px;
	color: #fff;
}
.innerbanner .innerbanner-content h2 span {
	font-weight: 900;
}
.section .container {
	/*    max-width: 1100px;*/
	/*    padding: 20px;*/
}
.wwaslider-sec {
	padding: 60px 0px;
	background: #f2f6fc;
	position: relative;
}
.wwaslider-sec .main-title {
	font-size: 42px;
	font-weight: bold;
	color: #323232;
	line-height: 46px;
	margin: 15px 0px 80px;
	position: relative;
	text-align: center;
}
.wwaslider-sec ul.whoweare-slider .title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 20px 0 0px;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: #323232;
	width: 100%;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 130px;
	margin-bottom: 50px;
}
.wwaslider-sec ul.whoweare-slider .title:after {
	position: absolute;
	content: "";
	width: 100px;
	height: 4px;
	background: #30d1ff;
	top: 0;
	left: 0;
}
.wwaslider-sec ul.whoweare-slider .title span.year {
	position: absolute;
	top: 50px;
	bottom: 0;
	left: 104px;
	z-index: 0;
	margin: auto;
	padding: 0;
	font-family: Inter, sans-serif;
	font-size: 174px;
	font-weight: 700;
	line-height: 40px;
	color: #fff;
	text-shadow: 0 1px 1px rgb(0 40 85 / 15%);
	z-index: -1;
}
.wwaslider-sec ul.whoweare-slider .content-top {
	width: 50%;
}
.wwaslider-sec ul.whoweare-slider .content-top label {
	font-size: 18px;
	color: #323232;
	font-weight: bold;
}
.wwaslider-sec ul.whoweare-slider .content-top p {
	font-size: 16px;
}
.wwaslider-sec ul.whoweare-slider .content-bottom {
	width: 47%;
	float: right;
	padding-top: 20px;
}
.wwaslider-sec ul.whoweare-slider .content-bottom label {
	font-size: 18px;
	color: #323232;
	font-weight: bold;
}
.wwaslider-sec ul.whoweare-slider .content-bottom p {
	font-size: 16px;
}
.wwaslider-sec .slider-nav {
	position: absolute;
	right: 31%;
	top: 30%;
}
@media (min-width: 1500px) {
	.wwaslider-sec .slider-nav {
		right: 36%;
	}
}
.wwaslider-sec .slider-nav span {
	width: 50px;
	height: 50px;
	background: #fff;
	display: inline-block;
	line-height: 58px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 7px 7px #00000017;
	margin: 0px 5px;
	cursor: pointer;
}
.wwaslider-sec .slider-nav span.slick-disabled {
	opacity: 0.5;
}
.wwaslider-sec .slider-nav span i {
	font-size: 26px;
	color: #323232;
}
.oursolutions-blocks {
	padding: 60px 0px;
	position: relative;
}
.grey-bg {
	background-color: #f2f6fc;
}
.oursolutions-blocks:before {
	position: absolute;
	content: "";
	top: 38px;
	bottom: 0;
	z-index: 0;
	left: 0;
	right: 0;
	background-image: radial-gradient(rgb(115 134 161 / 52%) 6%, transparent 0);
	background-size: 24px 24px;
	background-position: 13px 13px;
	width: 70%;
	height: 200px;
}
.oursolutions-blocks .title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 20px 0 0px;
	font-size: 40px;
	font-weight: 700;
	line-height: 48px;
	color: #323232;
	width: 100%;
	margin-bottom: 50px;
}
.oursolutions-blocks .title:before {
	position: absolute;
	content: "";
	width: 100px;
	height: 4px;
	background: #30d1ff;
	top: 0;
	left: 0;
}
.oursolutions-blocks ul.osb-blocks {
	background: #fff;
	padding: 0px 30px;
}
.oursolutions-blocks ul.osb-blocks li {
	display: flex;
	align-items: flex-start;
}
.oursolutions-blocks ul.osb-blocks li img {
	margin-right: 25px;
	width: 60px;
}
.oursolutions-blocks ul.osb-blocks li .blk {
	margin-bottom: 20px;
}
.oursolutions-blocks ul.osb-blocks li .blk h5 {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: #323232;
}
.oursolutions-blocks ul.osb-blocks li .blk p {
	font-size: 16px;
	line-height: 28px;
}
.whatwedo-sec {
	padding: 80px 0px;
	background: #f2f6fc;
	position: relative;
}
.whatwedo-sec .title {
	font-size: 34px;
	font-weight: bold;
	color: #323232;
	line-height: 46px;
	margin: 15px 0px 80px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
}
.whatwedo-sec .blocks {
	background: #fff;
	margin-bottom: 15px;
	padding: 20px 10px;
	border-radius: 10px;
	position: relative;
	display: flex;
	align-items: flex-start;
	align-items: center;
	box-shadow: 0px 7px 7px rgb(1 23 88 / 7%);
}
.whatwedo-sec .blocks h5 {
	font-size: 18px;
	color: #323232;
	font-weight: bold;
	text-transform: capitalize;
	margin-bottom: 8px;
}
.whatwedo-sec .left-sec .blocks,
.whatwedo-sec .right-sec .blocks {
	margin-top: 100px;
}
.whatwedo-sec .img-sec .blocks {
	margin-top: 30px;
}
.whatwedo-sec .blocks .img {
	margin-right: 10px;
}
.whatwedo-sec .blocks .text label {
	margin: 0px;
}
.ourworks-blocks {
	padding: 100px 0px;
	position: relative;
	background: #f2f6fc;
}
.ourworks-blocks:before {
	position: absolute;
	content: "";
	top: 38px;
	bottom: 0;
	z-index: 0;
	left: 0;
	right: 0;
	background-image: radial-gradient(rgb(115 134 161 / 52%) 6%, transparent 0);
	background-size: 24px 24px;
	background-position: 13px 13px;
	width: 70%;
	height: 200px;
}
.ourworks-blocks .title {
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 20px 0 0px;
	font-size: 40px;
	font-weight: 700;
	line-height: 50px;
	color: #323232;
	width: 100%;
	margin-bottom: 50px;
}
.ourworks-blocks .title:before {
	position: absolute;
	content: "";
	width: 100px;
	height: 4px;
	background: #30d1ff;
	top: 0;
	left: 0;
}
.ourworks-blocks .content {}
.ourworks-blocks .content .sml-title {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	color: #323232;
}
.ourworks-blocks .content p {
	font-size: 16px;
	margin-top: 10px;
	line-height: 28px;
}
.ourworks-blocks .icons-sec {
	margin-top: 40px;
}
.ourworks-blocks .icons-sec ul {
	display: flex;
	align-items: center;
}
.ourworks-blocks .icons-sec ul li {
	display: flex;
	align-items: flex-start;
	flex: 1;
	align-items: center;
	margin-right: 20px;
}
.ourworks-blocks .icons-sec ul li span {
	font-size: 15px;
	font-weight: 600;
	margin-left: 12px;
	color: #1b2054;
}
.ourworks-blocks .img {
	padding: 10px;
	box-sizing: border-box;
	background: #f2f6fc;
}
.ourworks-blocks .img img {
	width: 100%;
}
.list li {
	font-size: 16px;
	line-height: 28px;
	padding-left: 30px;
	display: block;
	position: relative;
	margin-bottom: 10px;
}
.list li::before {
	position: absolute;
	content: '-';
	top: 0;
	left: 0;
	font-size: 16px;
}
.list .list-title {
	padding-left: 0;
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 10px;
}
.job-listing > li {
	margin-bottom: 30px;
}
.accordion .submit {
	margin-bottom: 30px;
}
.accordion .card-header .btn-link {
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	color: #323232;
}
.card .circle {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	margin: auto;
	overflow: hidden;
	border: 2px solid white;
	box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
}
.card .round {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, .3);
	display: inline-block;
	text-align: center;
	line-height: 30px;
}
.grey-bg {
	background: #eeeeee;
}
.light-grey {
	background-color: #f7f7f7;
}
.services.blue-bg {
	color: white;
	text-align: center;
}
.services.blue-bg .landing-icon {
	margin-top: 20px;
	color: white;
	border-radius: 50%;
	border: 2px solid #00adff;
	padding: 20px;
	margin-bottom: 20px;
	background: #00adff;
	width: 78px;
	height: 78px;
}
.services.blue-bg h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.services.blue-bg p {
	font-size: 14px;
}
.services.blue-bg .title-sec .big-title,
.services.blue-bg .title-sec .smalll-title {
	color: white;
}
footer {
	background: #ffffff;
	padding: 50px 0;
	color: #464646;
}
footer ul li p {
	text-transform: uppercase;
	font-size: 18px;
}
footer ul li a:hover {
	opacity: 1;
	color: #464646;
}
.smedia {
	margin-top: 50px;
}
.smedia li a {
	width: 50px;
	height: 50px;
	background: #FF4B81;
	color: #fff;
	opacity: 1;
	display: inline-block;
	margin-right: 15px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
}
.smedia li a:hover {
	color: #333;
}
.custom-shape-divider-bottom-1624014484 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1624014484 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 52px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1624014484 .shape-fill {
    fill: #fafafa;
}
.steps.pc_show .wrap {
	width: 1060px;
	height: 480px;
	margin: 40px auto;
	list-style: none;
	padding: 0;
}
.steps.pc_show .wrap > li:nth-child(3) img {
	position: absolute;
	left: 30px;
	top: 30px;
}
.steps.pc_show .wrap > li:nth-child(3) .macbook {
	position: absolute;
	left: -10px;
	top: 0;
}
.show {
	z-index: 3;
	display: block;
}
.hidden {
	z-index: 2;
	display: none;
}
.steps.mobile_show .wrap {
	width: 100%;
	position: relative;
}
.steps.mobile_show ul.wrap li {
	width: 100%;
	position: absolute;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.steps.mobile_show ul.wrap img {
	width: 7rem;
	height: 4.8rem;
	position: absolute;
	top: 135px;
	z-index: 2;
}
.steps.mobile_show ul.wrap li {
	width: 100%;
}
.steps.mobile_show ul.wrap .macbook {
	display: inline-block;
	position: absolute;
	top: 120px;
	z-index: 1;
	width: 8rem;
	height: 6rem;
}
.steps.mobile_show ul.wrap p {
	position: absolute;
	bottom: 5px;
	width: 100%;
	font-size: 0.4rem;
	text-align: center;
	display: none;
}
.desc {
	width: 100%;
	height: 100px;
	height: auto;
	position: absolute;
	top: 50px;
	text-align: center;
}
h2,
h4 {
	width: 100%;
}
/*.active {
	background: #2294F2 !important;
}*/
ul.hint-dots {
	position: absolute;
	bottom: 70px;
	display: flex;
	width: 100px;
	justify-content: space-around;
	left: 50%;
	transform: translateX(-50%);
}
ul.hint-dots li {
	border: 1px solid #666;
	width: 0.4rem;
	height: 0.4rem;
	background: #999;
	border-radius: 50%;
}
ul.steps-detail {
	width: 100%;
	position: absolute;
	bottom: 50px;
	display: flex;
	justify-content: center
}
ul.steps-detail li span {
	display: none;
}
ul.steps-detail li span._active {
	display: block;
	color: #2294F2;
}
.steps {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background-image: url('images/home/bg.jpg');
	background-position: center top;
	font-family: Avenir-LT-W01_35-Light, Avenir-LT-W01_85-Heavy;
}
.steps h2 {
	color: #2e2e2e;
	text-align: center;
	font-size: 0.55rem;
	font-weight: 600;
}
.steps h2 a {
	color: #2e2e2e;
	text-decoration: none;
	font-size: 0.55rem
}
.steps h3 {
	color: #232323;
	font-size: 0.4rem;
	text-align: center;
	margin: 12px 0 41px;
	font-weight: 500
}
.steps .wrap {
	height: 480px;
	margin: 40px auto;
	list-style: none;
	padding: 0;
}
.steps .wrap > li {
	float: left;
	height: 100%;
}
.steps .wrap > li.steps-txt {
	width: 340px;
}
.steps .wrap > li.three-line {
	width: 60px;
	background-image: url(images/home/line.png);
	background-repeat: no-repeat;
	background-position: 0 52%;
}
.steps .wrap > li.steps-img {
	position: relative;
	width: 660px;
}
.steps .wrap > li.steps-txt div {
	width: 320px;
	height: 110px;
	background-color: #ffffff;
	border: 2px solid #c2c9d6;
	box-sizing: border-box;
	position: relative;
	padding: 13px 0 7px 20px;
	margin-bottom: 31px;
	margin-left: 20px;
	color: #333;
	cursor: pointer;
	transition: all .3s;
}
.steps .wrap > li.steps-txt div:first-child {
	margin-top: 30px;
}
.steps .wrap > li.steps-txt div:after {
	content: '';
	position: absolute;
	top: 2px;
	right: -1px;
	border-bottom: 8px solid #c2c9d6;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	transform: rotate(45deg);
}
.steps .wrap > li.steps-txt div span {
	font-family: 'Roboto', sans-serif;
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 17px;
}
.steps .wrap > li.steps-txt div p {
	font-family: 'Roboto', sans-serif;
	display: block;
	font-size: 18px;
	line-height: 25px;
	text-align: left;
	margin-top: 10px;
}
.steps .wrap > li.steps-txt div.sel {
	margin-left: 0;
	width: 340px;
	background-color: #1E7FEF;
	color: white;
	border: 2px solid #1E7FEF;
	padding: 13px 16px 7px 23px;
}
.steps .wrap > li.steps-txt div.sel:after {
	border-bottom: 8px solid white;
}
.divide-2 .part {
	width: 45%;
	margin-bottom: 30px;
}
.part .icon {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #00adff;
	color: #ffffff;
	font-size: 40px;
	text-align: center;
	line-height: 110px;
	margin-bottom: 20px;
}
.divide-2 .part p {
	margin: 15px 0;
}
.divide-2 .part h5 {
	position: relative;
	padding-left: 15px;
}
.divide-2 .part h5::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 100%;
	background: #FF5163;
	top: 0px;
	left: 0px;
}
.pricing-table-container {
	margin-top: 30px;
}
.pricing-table {
	display: inline-block;
	width: 33.3%;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 0px;
	padding: 38px;
	background: #fff;
	margin-bottom: 30px;
    transition: all .3s ease-in-out;
    text-align: center;
}
.pricing-table:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.pricing-table .icon {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.pricing-table .icon i {
    font-size: 40px;
    color: #FF5163;
}
.pricing-table .table-title {
	color: #323232;
	font-size: 26px;
    padding-bottom: 10px;
    border-bottom: 1px solid #FF5163;
}
.pricing-table .price {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
}
.pricing-table .price small {
	font-weight: 600;
}
.pricing-table .fa-ul {
	margin-bottom: 30px;
    min-height: 100px;
    margin-left: 0;
}
.pricing-table .fa-ul li {
	line-height: 34px;
}
.pricing-table .fa-ul .fa-li {
	top: 8px;
}
a.pricing-table {
	background: transparent;
	border: none;
}
a.pricing-table .table-title {
	font-size: 55px;
	color: #323232;
	transition: all .3s ease-in-out;
}
a.pricing-table:hover .table-title {
	color: #FF5163;
}
.btn-top {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #00adff;
	color: #fff;
	text-align: center;
	line-height: 40px;
	display: inline-block;
	border: none;
	position: fixed;
	right: 20px;
	bottom: 10px;
	opacity: 0;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .2);
	transition: all .5s ease-in-out;
}
.btn-top:hover {
	box-shadow: 0 0 0 5px rgba(255, 255, 255, .2);
	color: #fff;
}
.ROI {
	position: relative;
}
.ROI .slider-content {
	position: absolute;
	bottom: -30px;
	left: -100px;
	width: 260px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, .2);
	padding: 20px;
	background: white;
	border-radius: 4px;
}
.ROI .slider-content .brand-logo {
	margin: auto;
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	border-radius: 50%;
	display: block;
	overflow: hidden;
	padding: 20px;
	box-sizing: border-box;
	background: #FF4B81;
}
.ROI .slider-content .brand-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 20px;
}
.ROI .slider-content .brand-title span {
	color: #FF4B81;
}
.ROI .slider-content .brand-desc {
	font-size: 14px;
	line-height: 20px;
}
.ROI .slider-content .brand-link {
	display: inline-block;
	color: #464646;
}
.ROI .slider-content .brand-link i {
	font-size: 12px;
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 30px;
	background: #FF4B81;
	color: white;
	border-radius: 50%;
	margin-top: 30px;
}
.explore-links li {
	text-align: center;
	margin: 0 30px;
}
.explore-links li h4 {
	color: #464646;
	font-weight: 700;
	margin-top: 20px;
	font-size: 18px;
}
.explore-links li img {
	max-width: 80px;
}
footer .footer-social {
    list-style: none;
}
footer .footer-social li a {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-block;
    background: white;
    color: #0093E9;
    text-align: center;
    line-height: 3rem;
    margin-right: 30px;
}