body {	
	padding: 0px;
	margin: 0px;
	font-family: 'Roboto' !important;
	font-size: 18px;	
	color: #062635;	
}

h1, h2, h3, h4, h5 {
	font-family: 'Roboto';
}

a {
	text-decoration: none;	
	transition: .3s linear;
}
a:hover {
	text-decoration: none !important;
}

ul {
	//list-style-type: none;
}
p {
	//font-size: 18px;
//	font-weight: 400;
}
.content p {
	margin: 15px 0 0 0;
}
.content.white p {
	color: #fff;
}

.sky-link {
	position: relative;
	color: #0074bb;
	font-size: 16px;
	font-weight: 400;
	padding: 0 0 0 25px;
}
.sky-link:before {
	content:"";
	position: absolute;
	top: 50%;
	transform: translateY(-50%); 
	left: 0;
	width: 14px;
	height: 14px;
	background: url('../images/sky-arrow.png');
	background-size: contain;
	background-repeat: no-repeat;
}
.sky-link:hover:before {
	background: url('../images/orange-arrow.png');
	width: 14px;
	height: 14px;	
	background-size: contain;
	background-repeat: no-repeat;
}
.sky-link:hover {
	color: #f58c5d;
}

.container-fluid-xl {
	padding-left: 200px;
	padding-right: 200px;
}

/* Button **/
.btn-sky {
	background: #0074bb;
	border-radius: 6px;
	color: #fff;
	position: relative;
	overflow: hidden;
	height: 50px;
	display: inline-block;
	line-height: 50px;
	padding: 0 30px;
	font-weight: 900;
	text-decoration: none;
	z-index: 2;
}
.btn-sky:before {
	content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #f58c5d;
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
}
.btn-sky:hover:before {
	transform: translateX(0);
}
.btn-sky:hover {
	color: #fff;
	text-decoration: none;
}
.btn-sky.sm {
	font-weight: 400;
}
/* Button **/

/* Common Title */
.title-with-logo {
	position: relative;
	text-align: center;	
	width: 100%;
	display: flex;
    flex-flow: column;
}
.title-with-logo img {
	max-width: 100px;
    margin: 0 auto 20px;
}
.title-with-logo h2 {
	font-size: 44px;
	font-weight: bold;
	color: #062635;
	display: inline-block;
}
.title-with-logo h2:before {
	content:"";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #f58c5d;
	width: 43px;
	height: 2px;
}

.title-white {
	position: relative;
	display: inline-block;
}
.title-white h2 {
	font-size: 50px;
	color: #fff;
	font-weight: 900;
}
.title-white h2:before {
	content:"";
	position: absolute;
	bottom: -15px;
	left: -30px;	
	background: #f58c5d;
	width: 73px;
	height: 2px;
}
/* Common Title */


header.header nav.navbar ul {
	margin-right: 200px;
	margin-top: -10px;
}
.menu-main-menu-container {
	margin-left: auto;
}
header.header .navbar-brand:before {
	content:"";
	position: absolute;
	top: 10px;
    left: -30px;
	width: 161px;
	height: 100px;
	background: url('../images/logo-bg.png');
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 99;
}
header.header .navbar-brand img {
	position: relative;
	z-index: 99;
	margin: 5px 0 0 0;
	max-width: 100px;
}
header.header nav.navbar {
	padding: 0px;
}
header.header nav.navbar ul li {
	margin: 0 20px;
}
header.header nav.navbar ul li a {
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	color: #062635;
	padding: 33px 0;
	position: relative;
}
header.header nav.navbar ul li a:hover:before {
	content: "";
    position: absolute;
    bottom: -4px;
    width: 50px;
    left: 50%;
    transform: translateX(-50%); 
    height: 8px;
    background: #f58c5d;
    border-radius: 20px;
}
header.header nav.navbar ul li a:hover {
	color: #0074bb;
}

.top-search {
	position: relative;
}
.search.float-right {
	top: 0;
    z-index: 99;
    width: 60%;
    margin: 0 0 0 0;
    right: 0;
    position: absolute;
}
header.header nav.navbar .search.float-right form.navbar-form {
	position: relative;
}
.search-box {  
  height: 100px;
  position: relative;
}

.search-box .input {
  position: absolute;
  top: 20px;
  right: 40px;
  box-sizing: border-box;
  width: 0px;
  height: 58px;
  padding: 0 20px;
  outline: none;
  font-size: 14px;
  border-radius: 50px;
  color: #29313a;  
  transition: all 0.8s ease;
  border: none;
  border-left: 1px solid #b2d5ea;
  border-radius: 0;
}


::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #062635;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #062635;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #062635;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #062635;
}

.search-box .btn {
  position: absolute; 
  right: 20px;
  top: 0;
  cursor: pointer;
  text-align: center;
  line-height: 80px;
  font-size: 20px;
  color: #fff;
  transition: all 0.8s ease;
}

.input.active {
  width: 100px;
  right: 100px;
}


section.banner {
	width: 100%;
	float: left;
	padding: 0px;
	margin: -10px 0 0 0;
	position: relative;
	z-index: 9;
}
section.banner img {
	width: 100%;
	height: 800px;
	object-fit: cover;
}
section.banner .banner-info .banner-info-in {
	position: absolute;
	top: 50%;
	left: 200px;
	transform: translateY(-50%);
	width: 40%;
}
section.banner .banner-info .banner-info-in h1 {
	font-weight: 900;
	color: #fff;
	font-size: 66px;	
	position: relative;
}
section.banner .banner-info .banner-info-in h1:before {
	content: "";
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #f58c5d;
    width: 100px;
    height: 2px;
}
section.banner .banner-info .banner-info-in p {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	margin: 40px 0 0 0;
}
section.banner .banner-info .banner-info-in .btn-custom {
	margin: 30px 0 0 0;
}
section.banner .video-icon {
	position: absolute;
	top: 50%;
	right: 500px;
	transform: translateY(-50%);
}
section.banner .video-icon img {
	height: auto;
}

section.ps-wrapper {
	width: 100%;
	float: left;
	padding: 50px 0 200px;
	background: #f2fafe;
	position: relative;
}
section.ps-wrapper:before {
	content:"";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background: url('../images/pr-bg.png');
	background-size: cover;
	background-repeat: no-repeat;
}
section.ps-wrapper .pr-grid-info {
	position: relative;
}
section.ps-wrapper .pr-grid-info .product-icon {
	position: absolute;
	right: 30px;
    top: -20px;
	width: 87px;
	height: 87px;
	background: #0074bb;
	border-radius: 8px;
	text-align: center;
	padding: 18px;
}
section.ps-wrapper .content {
	width: 40%;
	margin: 30px auto;	
}
section.ps-wrapper .ps-grid {
	margin: 50px 0 0 0;
}
section.ps-wrapper .ps-grid .ps-grid-box {
	display: flex;
	flex-flow: column;
}
section.ps-wrapper .ps-grid .ps-grid-box .ps-grid-img {
	width: 60%;
}
section.ps-wrapper .ps-grid .ps-grid-box .ps-grid-img img {
	width: 100%;
	height: 300px;
	border-radius: 10px;
	object-fit: cover;
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info {
	width: 50%;
    position: absolute;
    top: 30px;
    right: 40px;
    background: #fff;
    z-index: 9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 3px 9px 0px rgba(0,0,0,0.25);
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info .content {
	float: left;
	width: 100%;
	margin: 20px 0 0 0;
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info .content p {
	font-size: 15px;
	font-weight: 400;
	line-height: 25px;
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info .content .r-more {
	margin: 30px 0 0 0;
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info h3 {
	position: relative;
	font-size: 36px;
}
section.ps-wrapper .ps-grid .ps-grid-box .pr-grid-info h3:before {
	content: "";
    position: absolute;
    bottom: -20px;
    left: 0;    
    background: #f58c5d;
    width: 30px;
    height: 2px;
}

section.tryandbuy {
	width: 100%;
	float: left;
	padding: 60px 0;
	background: #062635;
	position: relative;
}
section.tryandbuy:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/trybuy-bg.png');
	background-size: 111%;
    background-repeat: no-repeat;
    background-position: -4px;
}
section.tryandbuy .content {
	margin: 50px 0 0 0;
	width: 90%;
}
section.tryandbuy .content p {
	font-weight: 300;
}
section.tryandbuy .content .btn-custom {
	margin: 30px 0 0 0;
}
section.tryandbuy .try-buy-img {
	margin: 70px 0 0 0;
}
section.tryandbuy .try-buy-img img {
	width: 100%;
	height: 580px;
	object-fit: contain;
}

section.data-marketplace {
	width: 100%;
	float: left;
	padding: 80px 0;
	background: #f2fafe;
}
section.data-marketplace .data-marketplace-top .content {
	width: 40%;
    margin: 30px auto;
}
section.data-marketplace #data-slider {
	margin: 120px 0 80px;
}
section.data-marketplace .owl-stage-outer {
	padding: 20px 0;
}
section.data-marketplace .item {
	background: #152127;
    border-radius: 30px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 2px 10px 0px rgba(0,0,0,0.40);
}
section.data-marketplace .item img {
	max-width: 80px;
	object-fit: contain;
}

section.testimonials {
	width: 100%;
	float: left;
	padding: 0px;
	position: relative;
	height: 570px;
}
section.testimonials:before {
	content:"";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 570px;
	background: url('../images/testimonials-bg.jpg');
	background-size: cover;
	background-repeat: no-repeat;
}
section.testimonials .testimonials-bx {
	background: #f2fafe;
	box-shadow: -1px 2px 10px 0px rgba(0,0,0,0.40);
	padding: 40px;
	border-radius: 20px;
	margin: -50px 0 0 0;
	float: left;
	width: 100%;
}
section.testimonials .testimonials-bx .testimonials-bx-top {
	padding: 0 0 0 60px;
}
section.testimonials .testimonials-bx span {
	text-align: center;
	color: #f08042;
	font-style: italic;
	width: 100%;
    display: inline-block;
}
section.testimonials .testimonials-bx h2 {
	font-size: 40px;
	font-weight: bold;
	margin: 10px 0 0 0;
}
section.testimonials .testimonials-bx .item {
	display: flex;
	align-items: center;
	margin: 50px 0 0 0;
	padding: 0 10px 0 50px;
}
section.testimonials .testimonials-bx .item .item-logo {
	position: relative;	
	padding: 20px 40px;
}
section.testimonials .testimonials-bx .item .item-logo:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: #f58c5d;
}
section.testimonials .testimonials-bx .item .item-logo img {
	width: 130px;
}
section.testimonials .testimonials-bx .item .item-info {
	padding: 0 70px 0 50px;
}
section.testimonials #testimonials-slider .owl-nav button {
	border: none;
	outline: none;
}
section.testimonials #testimonials-slider .owl-nav button span {
	display: none;
}
section.testimonials #testimonials-slider .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	background: url('../images/owl-prev.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}
section.testimonials #testimonials-slider .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background: url('../images/owl-next.png');
	background-size: contain;
	background-repeat: no-repeat;
	width: 20px;
	height: 20px;
}

footer.footer {
	width: 100%;
	float: left;
	padding: 0 0 20px 0;
	background: #062635;
	margin: 50px 0 0 0;
}
footer.footer .footer-logo {
	position: relative;
	display: inline-block;
}
footer.footer .footer-logo:before {
	content: "";
    position: absolute;
    bottom: 1px;
    width: 117px;
    height: 40px;
    background: #062635;
    border-radius: 10px;
    display: inline-block;
    left: -7px;
}
footer.footer .footer-logo img {
	position: relative;
	z-index: 9;
}
footer.footer .footer-btm .footer-left.b-add:before {
	content: "";
    position: absolute;
    right: 100px;
    bottom: 5px;
    width: 1px;
    height: 30px;
    background: #6dcff6;
}
footer.footer .footer-btm .footer-left {
	display: flex;
	align-items: center;
	margin: 40px 0 0 0;
}
footer.footer .footer-btm .footer-left h3 {
	color: #c6c6c6;
	font-weight: 500;
	font-size: 24px;
}
footer.footer .footer-btm .footer-left ul {
	margin: 0px;
}
footer.footer .footer-btm .footer-left ul li {
	display: inline-block;
	margin: 0 20px 0 0;
}
footer.footer .footer-btm .footer-left ul li a {
	color: #c6c6c6;
}
footer.footer .footer-btm .footer-left ul li a:hover {
	color: #f58c5d;
}
footer.footer .footer-btm .footer-left span {
	font-size: 11px;
    color: #c6c6c6;
    margin: 0 0 0 30px;
    width: 25%;
}
footer.footer .footer-btm .footer-left .footer-input {
	position: relative;
	margin: 0 0 0 30px;
}
footer.footer .footer-btm .footer-left .footer-input input {
	border-bottom: 1px solid #425a65 !important;
	background: none;
	box-shadow: none;
	border: none;
	outline: none;
	box-shadow: none;
	color: #c6c6c6;
}
footer.footer .footer-btm .footer-left .footer-input input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #cccccc;
  font-style: italic;
  font-size: 12px;
}
footer.footer .footer-btm .footer-left .footer-input input::-moz-placeholder { /* Firefox 19+ */
  color: #cccccc;
  font-style: italic;
  font-size: 12px;
}
footer.footer .footer-btm .footer-left .footer-input input:-ms-input-placeholder { /* IE 10+ */
  color: #cccccc;
  font-style: italic;
  font-size: 12px;
}
footer.footer .footer-btm .footer-left .footer-input input:-moz-placeholder { /* Firefox 18- */
  color: #cccccc;
  font-style: italic;
  font-size: 12px;
}
footer.footer .footer-btm .footer-left .footer-input .btn-arrow {
	position: absolute;
	right: 0;
	top: 0;	
}
footer.footer .footer-btm .footer-left .footer-input .btn-arrow button {
	background: none;
	border: none;
}