@charset "UTF-8";
/* DESKTOP CSS START */
/* GLOBAL CSS START */
@font-face {
	font-family: 'ArialRounded';
	src: url('/fonts/ArialRoundedMTLight.eot');
	src: url('/fonts/ArialRoundedMTLight.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/ArialRoundedMTLight.woff2') format('woff2'),
		 url('/fonts/ArialRoundedMTLight.woff') format('woff'),
		 url('/fonts/ArialRoundedMTLight.ttf') format('truetype'),
		 url('/fonts/ArialRoundedMTLight.svg#ArialRounded') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'ArialRoundedBold';
	src: url('/fonts/ArialRoundedMTBold.eot');
	src: url('/fonts/ArialRoundedMTBold.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/ArialRoundedMTBold.woff2') format('woff2'),
		 url('/fonts/ArialRoundedMTBold.woff') format('woff'),
		 url('/fonts/ArialRoundedMTBold.ttf') format('truetype'),
		 url('/fonts/ArialRoundedMTBold.svg#ArialRoundedBold') format('svg');
	font-weight: bold;
	font-style: bold;
}
@font-face {
	font-family: 'ArialRoundedBolder';
	src: url('/fonts/ArialRoundedMTExtraBold.eot');
	src: url('/fonts/ArialRoundedMTExtraBold.eot?#iefix') format('embedded-opentype'),
		 url('/fonts/ArialRoundedMTExtraBold.woff2') format('woff2'),
		 url('/fonts/ArialRoundedMTExtraBold.woff') format('woff'),
		 url('/fonts/ArialRoundedMTExtraBold.ttf') format('truetype'),
		 url('/fonts/ArialRoundedMTExtraBold.svg#ArialRoundedBolder') format('svg');
	font-weight: bolder;
	font-style: bolder;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: none !important;
  scroll-behavior: smooth;
}
body{
  font-family: 'ArialRoundedBold', sans-serif;
  font-weight: bold;
  font-size: 100%;
  line-height: 20px;
  text-align: center;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #fff;
}
h1 { font-family: 'ArialRoundedBolder', sans-serif; font-size: 30px; font-style: normal; font-variant: normal; font-weight: bolder; line-height: 30px; padding: 10px;} 
h2 { font-family: 'ArialRoundedBold', sans-serif; font-size: 27px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 25px; padding: 10px;} 
h3 { font-family: 'ArialRoundedBold', sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 20px; padding: 10px;} 
h4 { font-family: 'ArialRoundedBold', sans-serif; font-size: 21px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 20px; padding: 10px;} 
p { font-family: 'ArialRoundedBold', sans-serif; font-size: 16px; font-style: normal; font-variant: normal;  font-weight: normal; line-height: 20px; padding: 5px 10px;}

section {
  padding: 40px;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
.col-3 {
	float: left;
  	width: 25%;
	padding: 15px;
}
.col-4 {
	float: left;
  	width: 33.33%;
	padding: 15px;

}
.col-6 {
	float: left;
  	width: 50%;
	padding: 15px;
}
.col-9 {
	float: left;
  	width: 75%;
	padding: 15px;
}
.col-12 {
	float: left;
  	width: 100%;
	padding: 15px;
}
/* GLOBAL CSS END */
/* NAVBAR CSS START */
.navbar-area {
	display: contents;
	width: 100vw;
	z-index: 990;
	top: 0;
	position: absolute;
}
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
  margin: auto 25px;
}
.site-logo {
  width: 150px;
}
.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.site-navbar ul li a {
  color: #fff;
  padding: 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
}
.site-navbar ul li a:hover {
  background: rgba(255,255,255,.1);
}
.nav-toggler {
	display: block;
	position: fixed;
	right: 0;
	z-index: 999;
	border: 3px solid #fff;
	padding: 10px;
	background-color: #00aeff;
	cursor: pointer;
	height: 50px;
	border-radius: 50%;
	margin-right: 25px;
}
.nav-toggler span, 
.nav-toggler span:before, 
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  transition: .3s;
}
.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: '';
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
.site-navbar ul {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 60px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #444;
    background-color: rgba(0,7,35,.9);
    max-height: 0;
    overflow: hidden;
    transition: .3s;
	z-index: 999;
  }
.site-navbar ul li {
    width: 100%;
    text-align: center;
	font-family: 'ArialRoundedBold', sans-serif;
	font-weight: bold;
	font-size: 44px;
	margin: auto;
  }
.site-navbar ul li a:hover {
    background-color: rgba(255,255,255,.1);
  }
.site-navbar ul.open {
	min-height: 100vh;
	overflow: visible;
	top: 0;
	padding-top: 5%;
	position: fixed;
  }
.sm-icon {
	width: 100px;
	margin-top: 10px;
    margin-left: auto;
	margin-right: auto;
    display: inline-flex !important;
}
.nav-icons {
	width: 60px;
	margin-top: 10px;
    margin-left: auto;
	margin-right: auto;
    display: inline-flex !important;
}
/* NAVBAR CSS END */
/* HERO CSS START */
#hero {
	position: relative;
}
.overlay {
	width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	position: relative;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.landing-img {
	width: 330px;
	z-index: 900;
}
@media only screen and (max-width: 600px) {
.landing-img {
	width: 200px !important;
}
}
@media only screen and (max-width: 1000px) and (max-height: 800px) {
.landing-img {
	width: 180px !important;
}
}
#hero .container {
	position: absolute;
	z-index: 2;
	top: 0;
	padding-top: 40vh;
}
@media only screen and (min-width: 800px) {

#hero .container {
	position: absolute;
	height: 50%;
}
}
@media only screen and (min-width: 800px) and (max-height: 1200px) {

#hero .container {
	padding-top: 35vh;
}
}
.wall {
	z-index: -100;
	position: absolute;
	width: 100vw;
	height: 50vh;
	background-color: #fff;
	overflow-x: hidden;
}
 .hero-row {
	 z-index: -99;
	 display: flex;
	 animation: 20s linear ticker-to-left infinite;
	 padding: 4px 0px;
}
@media only screen and (max-width:600px) {
	 .hero-row {
	 animation: 5s linear ticker-to-left infinite;
}
}
 .hero-row:nth-child(even) {
	 animation: 30s linear ticker-to-right infinite;
	 justify-content: flex-end;
}
 .hero-row span {
	 margin-right: 0.2em;
	 font-family: 'ArialRoundedBold', sans-serif;
	 color: transparent;
	 font-size: 5vh;
	 font-weight: bold;
	 line-height: 1;
	 text-transform: uppercase;
	 -webkit-text-stroke-width: 2px;
	 text-stroke-width: 2px;
	 -webkit-text-stroke-color: #eee;
	 text-stroke-color: #eee;
}
 @keyframes ticker-to-left {
	 0% {
		 transform: translate3d(0, 0, 0);
	}
	 100% {
		 transform: translate3d(-50%, 0, 0);
	}
}
 @keyframes ticker-to-right {
	 0% {
		 transform: translate3d(0, 0, 0);
	}
	 100% {
		 transform: translate3d(50%, 0, 0);
	}
}
/* HERO CSS END */
/* CUSTOMER HALF CSS START */
#customer-half {
	text-align: left;
	color: #000723;
}
.customer-btn {
  background-color: #00aeff;
  color: #fff;
  align-items: center;
  border-radius: 100px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}
.customer-btn:hover,
.customer-btn:focus { 
  background-color: #f4f4f4;
  color: #000723;
}
.customer-btn:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}
.customer-btn:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}
/* CUSTOMER HALF CSS END */
/* BUILDER HALF CSS START */
#builder-half {
	text-align: right;
	color: #000723;
}
.builder-btn {
  background-color: #f4f4f4;
  color: #000723;
  align-items: center;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}
.builder-btn:hover,
.builder-btn:focus { 
  background-color: #00aeff;
  color: #f4f4f4;
}
.builder-btn:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7); 
}
.builder-btn:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}
/* BUILDER HALF CSS END */
/* HERO CSS END */
/* APP BUTTONS */
.app-btns {
	position: absolute;
	width: 50px;
	right: 0;
	z-index: 950;
	margin-right: 25px;
}
/* COUNTER SECTION CSS START */
#counter {
	display: flex;
}
.counter {
	font-family: 'ArialRoundedBolder', sans-serif;
	font-size: 40px;
	font-weight: bolder;
}
.counters {
	padding: 0px;
}
.counters .container {
	padding: 0px;
	border-radius: 20px;
}
.counters .container h3 {
	padding-bottom: 0px;		
}
.counters .container .col-4 {
	color: #000723;
	background: #f4f4f4;	
}
.counters .container .col-4:nth-child(2) {
	color: #fff;
    background: #00aeff;
}
/* COUNTER SECTION CSS END */
/* MISSION SECTION CSS START */
#mission {
	background-color: #F4F4F4;
}
.mission-img {
	max-height: 250px;
	min-width: 250px;
}
/* MISSION SECTION CSS END */
/* HOW IT WORKS SECTION CSS START */
.circle {
	color: #fff;
	background-color: #00aeff;
	width: 50px;
	height: 50px;
	padding: 50px;
	border-radius: 50px;
	display: flex;
  	align-items: center;
  	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}
.circle h1 {
	font-family: 'ArialRoundedBolder';
	font-weight: bolder;
	font-size: 60px;
}
.text {
	padding: 25px;
}
/* HOW IT WORKS SECTION CSS END */
/* REVIEWS SECTION CSS START */
#reviews {
	background-color: #F4F4F4;
}
#wrap {
	position: relative;
}
.contents {
	 overflow-x: hidden;
}
 .contents__txt {
	 position: fixed;
	 top: 30px;
	 left: 50%;
	 transform: translate(-50%);
	 font-size: 24px;
	 font-weight: 600;
	 z-index: 200;
}
 .slide__wrap {
	 display: inline-flex;
	 scrollbar-width: none;
	 overflow: hidden;
	 transform: translateX(0);
	 will-change: transform;
	 transition: transform 0.3s ease-out;
	 cursor: grab;
}
@media only screen and (min-width: 450px) {
	.slide__wrap {
		margin-left: -50px;
		overflow-x: hidden;
	}
}
 .slide__frame {
	 max-height: 100vh;
	 width: 100vw;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: #fff;
}
 .slide__img {
	 width: 80%;
	 align-items: center;
	 justify-content: center;
	 border-radius: 20px;
	 transition: transform 0.2s ease-in-out;
	 display: block;
	 text-align: center;
	 padding: 100px;
}
@media only screen and (max-width: 600px) {
	.slide__img { 
		padding: 50px;
}
}
.review-img {
	border-radius: 50%;
	width: 100px;
	height: 100px;
}
 .slide__img--1 {
	 background-color: #f2a400;
}
 .slide__img--2 {
	 background-color: #f2a400;
}
 .slide__img--3 {
	 background-color: #f2a400;
}
 .grabbing {
	 cursor: grabbing;
}
 .grabbing .slide__img {
	 transform: scale(0.95);
}
 .dot__wrap {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 position: relative;
	 left: 50%;
	 margin-top: 20px;
	 transform: translateX(-50%);
	 font-size: 0;
}
 .dot__item {
	 width: 10px;
	 height: 10px;
	 background-color: #ccc;
	 border-radius: 50%;
}
 .dot__item + .dot__item {
	 margin-left: 10px;
}
 .dot__item.is-active {
	 background-color: #023047;
}
.review-img {
	border-radius: 50%;
	width: 100px;
	height: 100px;
}
/* REVIEWS SECTION CSS END */
/* SERVICES SLIDER CSS START */
@keyframes scroll {
	 0% {
		 transform: translateX(0);
	}
	 100% {
		 transform: translateX(calc(-250px * 9.5));
	} 
}
.slider {
	 background: white;
	 height: 150px;
	 margin: auto;
	 position: relative;
	 width: 100%;
	 overflow: hidden;
}
.slider::before, .slider::after {
	 background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	 content: "";
	 height: 140px;
	 position: absolute;
	 width: 100px;
	 z-index: 2;
}
.slider::after {
	 right: 0;
	 top: 0;
	 transform: rotateZ(180deg);
}
.slider::before {
	 left: 0;
	 top: 0;
}
.slider .slide-track {
	 animation: scroll 20s linear infinite;
	 display: flex;
	 width: calc(250px * 14);
}
.slider .slide {
	 height: 100px;
	 width: 250px;
}
.slider .slide-track .slide img {
	 height: 100px;
	 width: 250px;
}
/* SERVICES SLIDER CSS END */
/* NEWS SECTION CSS START */
#news {
	background-color: #F4F4F4;
	padding-left: 100px;
	padding-right: 100px;
}
.news-img {
	border-radius: 50%;
	max-height: 150px;
	max-width: 150px;
}
/* NEWS SECTION CSS END */
/* FAQs SECTION CSS START */
.faqs {
	padding-left: 100px;
	padding-right: 100px;
}
.accordion-header {
  background-color: rgb(235, 235, 235);
  cursor: pointer;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  transition: all 0.4s ease-in-out;
}
.accordion-header h4 {
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}
.accordion-body {
  transition: all 0.35s ease-in-out;
  max-height: 0;
  overflow: hidden;
  background-color: rgb(252, 252, 252);
}
.accordion-body p {
  text-align: left;
  padding: 1rem 1.5rem;
  line-height: 1.8;
}
.accordion + .accordion {
  margin-top: 1rem;
}
.accordion-icon {
  transition: transform 0.4s ease-in-out;
}
.accordion.active .accordion-header {
  background-color: #00aeff;
  color: #fff;
}
.accordion.active .accordion-icon {
  transform: rotate(-180deg);
}
/* FAQs SECTION CSS START */
/* FOOTER SECTION CSS START */
footer {
	background-color: #000723;
	text-align: left;
	color: #fff;
}
footer .container {
	padding-bottom: 0;
}
.footer-logo {
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.footer-img {
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}
.footer-icon-left {
	display: flex;
	margin-top: 15px;
	margin-left: auto;
	width: 50px;
}
.footer-icon-right {
	display: flex;
	margin-top: 15px;
	margin-right: auto;
	width: 50px;
}
.footer-icon-left img {
	width: 50px;
	height: 50px;
}
.footer-icon-right img {
	width: 50px;
	height: 50px;
}
footer .row .col-12 {
	text-align: center;
}
/* FOOTER SECTION CSS END */
/* DESKTOP CSS END */
/* MAX-WIDTH: 450PX CSS START */
@media only screen and (max-width: 450px) {
section {
	padding-left: 0px !important;
	padding-right: 0px !important;
}
	.customer-btn {
	font-size: 10px !important;	
}
	.builder-btn {
	font-size: 10px !important;
}
@keyframes scroll {
	 0% {
		 transform: translateX(0);
	}
	 100% {
		 transform: translateX(calc(-125px * 11));
	}
}
.slider .slide-track {
	 animation: scroll 10s linear infinite;
	 display: flex;
	 width: calc(125px * 14);
}
.slider .slide {
	 height: 50px;
	 width: 125px;
}
.slider .slide-track .slide img {
	 height: 50px;
	 width: 125px;
}
	
}
/* MAX-WIDTH: 450PX CSS END */
/* MAX-WIDTH: 800PX CSS START */
/* GLOBAL CSS START */
@media only screen and (max-width: 800px) {

h1 { font-family: 'ArialRoundedBolder', sans-serif; font-size: 27px; font-style: normal; font-variant: normal; font-weight: bolder; line-height: 30px; padding: 10px;} 
h2 { font-family: 'ArialRoundedBold' sans-serif; font-size: 24px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 25px; padding: 10px;} 
h3 { font-family: 'ArialRoundedBold', sans-serif; font-size: 21px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 20px; padding: 10px;} 
h4 { font-family: 'ArialRoundedBold', sans-serif; font-size: 18px; font-style: normal; font-variant: normal; font-weight: bold; line-height: 20px; padding: 10px;} 
p { font-family: 'ArialRoundedBold', sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; line-height: 20px; padding: 5px 10px} 
	
.col-3 {
  	width: 100%;
	padding: 15px;
}
.col-4 {
  	width: 100%;
	padding: 15px;
}
.col-6 {
  	width: 50%;
	padding: 15px;
}
.col-9 {
  	width: 100%;
	padding: 15px;
}
/* GLOBAL CSS END */
/* HERO CSS START */
#hero .container {
	display: contents;
}
#customer-half h2 {
	display: none;
}
#builder-half h2 {
	display: none;
}
#customer-half h4 {
	display: none;
}
#builder-half h4 {
	display: none;
}
#customer-half p {
	display: none;
}
#builder-half p {
	display: none;
}
.customer-btn {
	font-size: 14px;	
}
.builder-btn {
	font-size: 14px;
}
/* HERO CSS END */
/* COUNTER SECTION CSS START */
#counter {
	padding: 0px;	
}

.counters .container {
	padding: 0px;		
}
.counters .container h3 {
	padding-bottom: 0px;		
}
/* COUNTER SECTION CSS END */
/* REVIEWS SECTION CSS START */
.reviews {
	padding-left: 20px;
	padding-right: 20px;
}
/* REVIEWS SECTION CSS END */
/* NEWS SECTION CSS START */
#news {
	padding-left: 10px;
	padding-right: 10px;
}
/* FAQs SECTION CSS START */
.faqs {
	padding-left: 5px;
	padding-right: 5px;
}
/* FAQs SECTION CSS END */
}
/* MAX-WIDTH: 800PX CSS END */
@media only screen and (min-width: 650px) {
	#mission .container p {
	padding-left: 200px;
	padding-right: 200px;
	padding-bottom: 50px;
}
}
@media only screen and (max-width: 1050px) {
	
	#hero .container {
		display: contents;
	}
	#customer-half h2 {
		display: none;
	}
	#builder-half h2 {
		display: none;
	}
	#customer-half h4 {
		display: none;
	}
	#builder-half h4 {
		display: none;
	}
	#customer-half p {
		display: none;
	}
	#builder-half p {
		display: none;
	}
}