html {
	-webkit-text-size-adjust: none; /* Prevent font scaling in landscape */
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased; /*-moz-osx-font-smoothing: grayscale;*/
}
body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.714;
	width: 100%;
	height: 100%;
	color: #03091F;
	background: #ffffff;
}
body.overflow-hidden {
	overflow: hidden;
}
.container {
	width:100% !important;
	max-width:1210px;
	margin:0 auto;
}
.container2 {
	width:100% !important;
	max-width:1000px;
	margin:0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
a {
	-webkit-transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-ms-transition:all 0.3s ease-in-out;
	-o-transition:all 0.3s ease-in-out;
	color: #03091F;
}
a:hover, a:focus, a:active {
	outline:none;
	text-decoration:none;
}
a:hover {
	color: #03091F;
}
ul, ol {
	list-style:none;
	padding:0;
	margin:0;
}
img {
	border: 0;
	vertical-align: top;
	max-width: 100%;
	height: auto;
	width: auto\9;/* ie8 */
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	font-weight: 700;
	line-height: inherit;
}
p {
	margin-bottom: 22px;
}

::-webkit-input-placeholder {
	opacity: 1;
}
::-moz-placeholder {
	opacity: 1;
}
:-ms-input-placeholder {
	opacity: 1;
}
:-moz-placeholder {
	opacity: 1;
}
.rounded2 {
	border-radius: 2px !important;
}
.rounded5 {
	border-radius: 5px !important;
}
.rounded10 {
	border-radius: 10px !important;
}
.box-shadow {
	-webkit-box-shadow: 0px 0px 20px #00000026;
	-moz-box-shadow: 0px 0px 20px #00000026;
	box-shadow: 0px 0px 20px #00000026;
}
input[type="submit"] {
	-webkit-appearance: none;
}
input, textarea, select {
	outline: none;
	resize: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}
input:focus, textarea:focus, select:focus {
	outline: none;
}
button::-moz-focus-inner {
	border: 0;
}

.bg-black {
	background-color: #000;
}
.bg-white {
	background-color: #fff;
}
.bg-light {
	background-color: #F8FDFF !important;
}

.scroll-top {
	bottom: 30px;
	color: #000 !important;
	display: none;
	font-size: 26px;
	padding: 12px 9px;
	position: fixed;
	left: 30px;
	height: 52px;
	text-align: center;
	width: 52px;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 6px 0 rgba(0,0,0,.4);
	box-shadow: 0 2px 6px 0 rgba(0,0,0,.4);
	z-index: 990;
	cursor: pointer;
}
.scroll-top:before {
	-webkit-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	position: relative;
	top: 0;
	left: -1px;
}
.scroll-top:hover {
	-webkit-box-shadow: 0 25px 55px 0 rgba(0,0,0,.21), 0 16px 28px 0 rgba(0,0,0,.22);
	box-shadow: 0 25px 55px 0 rgba(0,0,0,.21), 0 16px 28px 0 rgba(0,0,0,.22);
}

.editor-content p:last-child {
	margin-bottom: 0;
}
.editor-content a {
	color: #3E45FF;
	font-weight: 600;
}
.editor-content a:hover {
	color: #000000;
}

.site-main {
    min-height: calc(100vh - 330px);
}

/********** Form Control **********/
.form-group {
	margin-bottom: 27px;
}
.form-control {
	color: #03091f;
	border: 1px solid #E5E5E5 !important;
	padding: 10px 15px;
	height: 45px;
	outline: none !important;
	font-size: 16px;
	transition: none;
	border-radius: 5px;
	box-shadow: 0px 10px 5px #0000000D !important;
}
.form-control::-webkit-input-placeholder {
	color: #03091f;
	opacity: .5;
}
.form-control::-moz-placeholder {
	color: #03091f;
	opacity: .5;
}
.form-control:-ms-input-placeholder {
	color: #03091f;
	opacity: .5;
}
.form-control:-moz-placeholder {
	color: #03091f;
	opacity: .5;
}
select.form-control {
	padding: 10px 35px 10px 15px;
	background: #ffffff url('../images/select-down-arrow.svg')no-repeat center right 15px;
}
.form-control:disabled {
	background-color: #fff;
}
.form-control:focus {
	color: #03091f;
	border-color: #29c0c5 !important;
}
.form-group label {
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 10px;
}
.form-group .link {
	text-decoration: underline;
}
.form-group.withicon {
	position: relative;
}
.form-group.withicon .form-control {
	padding: 10px 15px 10px 60px;
}
.withicon .icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 45px;
	height: 45px;
	border-radius: 5px;
	background: #29C0C5;
}
.withicon .email-icon {
	background: #29C0C5 url('../images/form-mail.svg')no-repeat center center;
}
.withicon .number-icon {
	background: #29C0C5 url('../images/form-mobile.svg')no-repeat center center;
}
.withicon .location-icon {
	background: #29C0C5 url('../images/form-location.svg')no-repeat center center;
}
.btn {
	font-size: 14px;
	font-weight: 400;
	border-radius: 5px;
	padding: 10px 25px;
	box-shadow: 0px 10px 10px #00000026;
	white-space: normal;
}
.btn.focus, .btn:focus {
	box-shadow: none;
}
.btn img {
	margin-left: 8px;
	vertical-align: middle;
}
.button-primary {
	background-color: #5761B2;
	color: #ffffff;
}
.button-primary:hover,
.button-primary:focus {
	background-color: #6c75b9;
	color: #ffffff;
}
.button-dark {
	background-color: #03091f;
	color: #ffffff;
}
.button-dark:hover,
.button-dark:focus {
	background-color: #0b153a;
	color: #ffffff;
}
.button-border {
	border: 1px solid #0576B0;
	background-color: #F8FDFF;
	color: #0576B0;
}
.button-border:hover,
.button-border:focus {
	background-color: #e5f5fb;
	color: #0576B0;
}
.button-border-dark {
	border: 1px solid #212121;
	background-color: transparent;
	color: #212121;
}
.button-border-dark:hover,
.button-border-dark:focus {
	background-color: #ececec;
	color: #212121;
}

form .text-danger {
	font-size: 14px;
}

section {
	overflow: hidden;
}


/********** Title **********/
.title {
	margin-bottom: 40px;
}
.title.title-center {
	text-align: center;
}
.title h2 {
	color: #29c0c5;
	font-size: 30px;
	font-weight: 700;
	position: relative;
	display: inline-block;
	vertical-align: top;
	padding-bottom: 12px;
}
.title h2:before {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	background-color: #5761B2;
	position: absolute;
	left: 0;
	right: inherit;
	bottom: 0;
	margin-left: 0;
}
.title.title-center h2:before {
	left: 50%;
	right: 0;
	bottom: 0;
	margin-left: -50px;
}
.title p {
	font-weight: 500;
	font-style: italic;
	max-width: 970px;
	width: 100%;
	margin: 20px auto 0;
}

/******* Preloader *******/
.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #29C0C5;
    z-index: 1002;
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    -ms-flex-pack: center;
}
@-webkit-keyframes enter {
	 0% {
		 opacity: 0;
		 top: -10px;
	}
	 5% {
		 opacity: 1;
		 top: 0px;
	}
	 50.9% {
		 opacity: 1;
		 top: 0px;
	}
	 55.9% {
		 opacity: 0;
		 top: 10px;
	}
}
 @keyframes enter {
	 0% {
		 opacity: 0;
		 top: -10px;
	}
	 5% {
		 opacity: 1;
		 top: 0px;
	}
	 50.9% {
		 opacity: 1;
		 top: 0px;
	}
	 55.9% {
		 opacity: 0;
		 top: 10px;
	}
}
 @-moz-keyframes enter {
	 0% {
		 opacity: 0;
		 top: -10px;
	}
	 5% {
		 opacity: 1;
		 top: 0px;
	}
	 50.9% {
		 opacity: 1;
		 top: 0px;
	}
	 55.9% {
		 opacity: 0;
		 top: 10px;
	}
}
 .loader {
	 position: absolute;
	 left: 50%;
	 top: 50%;
	 margin-left: -27.5px;
	 margin-top: -27.5px;
}
 .square {
	 background: white;
	 width: 15px;
	 height: 15px;
	 float: left;
	 top: -10px;
	 margin-right: 5px;
	 margin-top: 5px;
	 position: relative;
	 opacity: 0;
	 -webkit-animation: enter 6s infinite;
	 animation: enter 6s infinite;
}
 .enter {
	 top: 0px;
	 opacity: 1;
}
 .square:nth-child(1) {
	 -webkit-animation-delay: 1.8s;
	 -moz-animation-delay: 1.8s;
	 animation-delay: 1.8s;
}
 .square:nth-child(2) {
	 -webkit-animation-delay: 2.1s;
	 -moz-animation-delay: 2.1s;
	 animation-delay: 2.1s;
}
 .square:nth-child(3) {
	 -webkit-animation-delay: 2.4s;
	 -moz-animation-delay: 2.4s;
	 animation-delay: 2.4s;
	 background: #fdc96f;
}
 .square:nth-child(4) {
	 -webkit-animation-delay: 0.9s;
	 -moz-animation-delay: 0.9s;
	 animation-delay: 0.9s;
}
 .square:nth-child(5) {
	 -webkit-animation-delay: 1.2s;
	 -moz-animation-delay: 1.2s;
	 animation-delay: 1.2s;
}
 .square:nth-child(6) {
	 -webkit-animation-delay: 1.5s;
	 -moz-animation-delay: 1.5s;
	 animation-delay: 1.5s;
}
 .square:nth-child(8) {
	 -webkit-animation-delay: 0.3s;
	 -moz-animation-delay: 0.3s;
	 animation-delay: 0.3s;
}
 .square:nth-child(9) {
	 -webkit-animation-delay: 0.6s;
	 -moz-animation-delay: 0.6s;
	 animation-delay: 0.6s;
}
 .clear {
	 clear: both;
}
 .last {
	 margin-right: 0;
}
 

/******* Header *******/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 100;
}
.main-header-bar {
	padding: 0;
	box-shadow: 0px 3px 6px #00000029;
}
.site-branding {
	width: 200px;
	height: 70px;
	overflow: hidden;
}
.site-branding img {
	margin: 5px 0 0 -15px;
}
.head-highlight {
	font-size: 14px;
	color: #0576B0;
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
	padding: 8px 15px 0;
}
.main-header-btn {
	margin-left: 16px;
}
.header-btn-box .btn {
	padding: 8px 15px;
}

/******* Mobile Menu Button *******/
.mobile-menu-button .menu-toggle {
	all: unset;
	width: 30px;
	height: 30px;
	cursor: pointer;
	vertical-align: middle;
}
.mobile-menu-button .menu-toggle span {
	background-color: #03091F;
	height: 2px;
	width: 100%;
	display: block;
}
.mobile-menu-button .menu-toggle span:nth-child(2) {
	margin: 5px 0 5px auto;
	width: 75%;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}
.mobile-menu-button .menu-toggle span:nth-child(3) {
	margin-left: auto;
	width: 45%;
	-webkit-transition: 0.6s all;
	-moz-transition: 0.6s all;
	-o-transition: 0.6s all;
	transition: 0.6s all;
}
.mobile-menu-button .menu-toggle:hover span:nth-child(2),
.mobile-menu-button .menu-toggle:hover span:nth-child(3){
	width: 100%;
}

/******* Desktop Menu *******/
.main-header-right {
	display: -ms-flexbox;
	display: flex;
}
.main-header-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.main-header-menu > .menu-item {
	position: relative;
	padding: 22px 0;
}
.main-header-menu > .menu-item:not(:first-child) {
	margin-left: 20px;
}
.main-header-menu > .menu-item > a {
	display: block;
	font-size: 15px;
	font-weight: 600;
	padding: 0 4px;
	text-decoration: none;
	position: relative;
}
.main-header-menu > .menu-item > a:before,
.side-nav-menu > .menu-item > .menu-link:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 0;
	width: 100%;
	background-color: #A3E8DC;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.main-header-menu > .menu-item > a:hover:before,
.main-header-menu > .menu-item:hover > a:before,
.main-header-menu > .menu-item a.active:before,
.side-nav-menu > .menu-item > .menu-link:hover:before,
.side-nav-menu > .menu-item > .menu-link.active:before {
	height: 9px;
}
.main-header-menu > .menu-item > .sub-menu {
	opacity: 0;
	visibility: hidden;
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: block;
	position: absolute;
	top: 100%;
	width: 200px;
	padding: 17px 20px;
	background-color: #ffffff;
	transform: scale(1, 0);
	transform-origin: 0 0;
	transition: all .2s ease-in-out;
	box-shadow: 0px 5px 6px #00000029;
	border-radius: 0 0 5px 5px;
}
.main-header-menu > .menu-item:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}
.main-header-menu > .menu-item > .sub-menu > .menu-item:not(:last-child) {
	margin-bottom: 13px;
}
.main-header-menu > .menu-item > .sub-menu > .menu-item > a {
	display: block;
	color: #03091F;
	text-decoration: none;
	padding: 0;
	background-color: transparent:
}
.main-header-menu > .menu-item > .sub-menu > .menu-item > a:hover {
	color: #29c0c5;
}
.main-header-menu > .custom-menu-item {
	margin-left: 35px;
	padding: 10px 0;
}

/******* Mobile Menu *******/
.side-menu {
	width: 80%;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1610;
	/*height: 100vh;*/
	background-color: #ffffff;
	overflow-y: auto;
	transform: scale(0);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.side-menu.side-menu-active {
	transform: scale(1);
	opacity: 1;
	visibility: visible;
}
/*.inner-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}*/
.inner-wrapper {
	min-height: 100%;
	position: relative;
}
.side-nav-menu-wrap {
	padding: 30px 0 50px;
	flex: 1;
}
.side-menu .btn-close {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.side-menu .btn-close:before {
	content: "";
	height: 30px;
	width: 2px;
	background-color: #03091F;
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: rotate(40deg);
}
.side-menu .btn-close:after {
	content: "";
	height: 30px;
	width: 2px;
	background-color: #03091F;
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	transform: rotate(-40deg);
}
.side-menu-active.side-menu .btn-close {
	opacity: 1;
}
.side-nav {
	padding: 20px 30px 30px;
	min-height: 100vh;
}
.side-nav-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}
.side-nav-menu > .menu-item {
	position: relative;
	padding: 0 10px;
	opacity: 0;
	transition: all 400ms 510ms;
}
.side-nav-menu > .menu-item:not(:last-child) {
	margin-bottom: 15px;
}
.side-nav-menu > .menu-item:nth-child(odd) {
	transform: translateX(30%);
}
.side-nav-menu > .menu-item:nth-child(even) {
	transform: translateX(-30%);
}
.side-menu.side-menu-active .side-nav-menu > .menu-item {
	opacity: 1;
	transform: translateX(0);
}
.side-nav-menu > .menu-item > .arrow {
	position: relative;
	right: -12px;
	top: -4px;
	width: 15px;
	height: 15px;
	border-top: 1px solid transparent;
	border-left: 1px solid transparent;
	border-bottom: 1px solid #555555;
	border-right: 1px solid #555555;
	transform: rotate(45deg);
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
}
.side-nav-menu > .menu-item > .arrow.open {
	transform: rotate(225deg);
	top: 3px;
}
.side-nav-menu > .menu-item > .menu-link {
	color: #03091F;
	font-size: 16px;
}
.side-nav-menu > .menu-item > .menu-link:hover {
	color: #03091F;
	text-decoration: none;
}
.side-nav-menu > .menu-item > .sub-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: none;
}
.side-nav-menu > .menu-item > .sub-menu > .menu-item:not(:last-child) {
	margin-bottom: 5px;
}
.side-nav-menu > .menu-item > .sub-menu > .menu-item > .menu-link {
	color: #03091F;
	font-size: 16px;
}
.side-nav-menu > .menu-item > .sub-menu > .menu-item > .menu-link:hover {
	color: #03091F;
	text-decoration: none;
}
.side-nav-menu > .custom-menu-item .button.custom-button-link {
	display: inline-block;
}
.side-nav-menu > .menu-item.has-submenu > .menu-link:before {
	display: none;
}
.side-nav-menu > .menu-item > .sub-menu {
	padding-top: 15px;
}
.side-menu .header-btn-box {
	padding: 0 0 20px;
	text-align: center;
}
.side-nav-logo {
	width: 220px;
	margin: 20px auto 0;
}
.side-nav-logo img {
	margin-left: -10px;
}
.side-menu-bg {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: none;
	z-index: 1031;
	opacity: 0.5;
	cursor: pointer;
}

/********** Top Banner Section **********/
.top-banner {
	min-height: 970px;
	padding: 70px 0 80px;
	background-color: #29C0C5;
	position: relative;
	overflow: hidden;
}
.top-banner .container {
	position: relative;
	z-index: 1;
}
.top-banner h1 {
	color: #ffffff;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.22;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 20px;
}
.top-banner h1:before {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	background-color: #5761B2;
	position: absolute;
	left: 0;
	right: inherit;
	bottom: 0;
	margin-left: 0;
}
.top-banner p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 20px;
}
.top-banner .btn-custom {
	margin-top: 30px;
}
.top-banner-img {
	position: relative;
	text-align: center;
}
.top-banner-img .banner-mobile {
	position: absolute;
	left: 0;
	right: -30px;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 1;
}
.top-banner-img .banner-mobile img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-right: 0;
	float: right;
}
.top-banner-img .banner-mobile .play-btn {
	position: absolute;
	left: 74px;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 70px;
	height: 70px;
	cursor: pointer;
}
.top-banner-img .banner-mobile .play-btn .far {
	color: #ffffff;
	font-size: 70px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 100%;
	z-index: 10;
	position: relative;
	animation: ripple_shadow 1s linear infinite;
}
@keyframes ripple_shadow {
    0% {
		-webkit-box-shadow: 
			0 0 0 0 rgba(255, 255, 255, 0.3),
			0 0 0 10px rgba(255, 255, 255, 0.3),
			0 0 0 20px rgba(255, 255, 255, 0.3);
		box-shadow:
			0 0 0 0 rgba(255, 255, 255, 0.3),
			0 0 0 10px rgba(255, 255, 255, 0.3),
			0 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        -webkit-box-shadow:
        	0 0 0 10px rgba(255, 255, 255, 0.3),
        	0 0 0 20px rgba(255, 255, 255, 0.3),
        	0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow:
        	0 0 0 10px rgba(255, 255, 255, 0.3),
        	0 0 0 20px rgba(255, 255, 255, 0.3),
        	0 0 0 30px rgba(255, 255, 255, 0);
    }
}
.top-banner-img .banner-blob {
	display: block;
	margin: 0 auto;
	margin-right: 0;
}
.top-banner-img .banner-blob.aos-animate {
	-webkit-animation: webkit-rotation 10s infinite linear;
	animation: rotation 10s infinite linear;
	animation-delay: 5s;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}
@-webkit-keyframes webkit-rotation {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
	}
}
.top-banner-bottom-pattern {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -50px;
	width: 100%;
}
.banner-bottom-curve {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}
.banner-bottom-curve svg {
	height: 170px;
	display: block;
	width: calc(100% + 1.3px);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.banner-bottom-curve svg {
	background-color: #ffffff;
}
.white-popup-block {
	background: #ffffff;
	padding: 0;
	max-width: 900px;
	margin: 40px auto;
	box-shadow: 0px 10px 10px #00000029;
	border-radius: 10px;
	text-align: left;
	position: relative;
}
.banner-video-popup video {
	width: 100%;
	vertical-align: top;
}
.mfp-close-btn-in .mfp-close {
	color: #ffffff;
	top: -45px;
	opacity: 1;
	font-size: 50px;
}


/********** About Section **********/
.about-us {
	padding: 40px 0 0;
	background-image: url('../images/city-background.svg');
	background-position: center bottom;
	background-repeat: repeat-x;
}
.about-img img {
	display: block;
	margin-left: auto;
	margin-right: 105px;
}
.about-content-main {
	padding: 30px;
	border-radius: 20px 0 0 20px;
}
.about-content-inner {
	max-width: 540px;
	width: 100%;
}
.about-content-inner p:last-child {
	margin-bottom: 0;
}
.about-us .container {
	margin-top: 60px;
}
.vision-mission {
	padding: 30px 30px;
	border-radius: 20px;
	background-color: #5761B2;
	margin-bottom: 30px;
}
.vision-mission h3 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}
.vision-mission p {
	color: #ffffff;
	margin: 0;
}


/********** Why Us Section **********/
.why-us {
	padding: 40px 0 0;
}
.why-us-box {
	background-color: #F4F5F9;
	border-radius: 20px;
	padding: 40px 30px 30px;
	margin-bottom: 30px;
	-webkit-transform: translate(0px, 0px);
	-moz-transform: translate(0px, 0px);
	-o-transform: translate(0px, 0px);
	-ms-transform: translate(0px, 0px);
	transform: translate(0px, 0px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.why-us-box:hover {
	-webkit-transform: translate(0px, -3px);
	-moz-transform: translate(0px, -3px);
	-o-transform: translate(0px, -3px);
	-ms-transform: translate(0px, -3px);
	transform: translate(0px, -3px);
}
.why-us-box img {
	margin-bottom: 30px;
}
.why-us-box h3 {
	color: #5761B2;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
}
.why-us-box p {
	margin-bottom: 10px;
}
.why-us-box p:last-child {
	margin-bottom: 0;
}
.why-us-box:hover {
	background-color: #ffffff;
	box-shadow: 0px 0px 20px #00000026;
}


/********** Our Services Section **********/
.our-services {
	padding: 40px 0;
}
.our-services .col-md-4 {
	margin-right: -25%;
	z-index: 1;
}
.our-services .row {
	position: relative;
	padding: 30px 0;
	-ms-flex-align: center!important;
	align-items: center!important;
}
.our-services .row > .col-lg-6 {
	position: relative;
	z-index: 1;
}
.tab-titles-box {
	max-width: 370px;
	width: 100%;
	display: block;
	margin-left: auto;
	margin-right: 205px;
}
.our-services .tab-title:not(:last-child) {
	margin-bottom: 30px;
}
.our-services .tab-title a {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 500;
	display: block;
	border-radius: 5px;
	padding: 14px 10px;
	text-align: center;
	background-color: #ffffff;
	box-shadow: 0px 10px 20px #00000029;
}
.our-services .tab-title.active a {
	color: #ffffff;
	background-color: #5761B2;
}
.our-services .tab-content-image {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	max-width: 970px;
	width: 100%;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.our-services .tab-content-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.our-services .row {
	min-height: 560px;
}
.our-services .tab-content-box {
	padding: 30px;
	border-radius: 20px 0 0 20px;
	background-color: #ffffff;
	display: none;
}
.our-services .tab-content-box.active {
	display: block;
}
.our-services .tab-content-box img {
	display: none;
}
.our-services .tab-description-box {
	max-width: 540px;
	width: 100%;
}
.our-services .tab-description-box h3 {
	color: #5761B2;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}
.our-services .tab-description-box p a {
	text-decoration: underline;
	word-break: break-all;
}
.our-services .tab-description-box p a:hover {
	color: #5761B2;
}
.our-services .tab-description-box p:last-child {
	margin-bottom: 0;
}


/********** Applications Section **********/
.applications {
	padding: 30px 0;
}
.tab-panel .nav {
	display: flex;
	border-radius: 5px;
	border: 1px solid #d1d1d1;
	margin-bottom: 30px;
}
.tab-panel .nav-tabs .nav-link {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	width: 270px;
	text-align: center;
	transition: none;
	padding: 14px 10px;
	border: 0;
	border-radius: 5px;
}
.tab-panel .nav-tabs .nav-item.show .nav-link,
.tab-panel .nav-tabs .nav-link.active {
	color: #ffffff;
	background-color: #5761B2;
	margin: -1px;
}
.left-feature-col {
	-ms-flex: 0 0 35.5%;
	flex: 0 0 35.5%;
	max-width: 35.5%;
}
.feature-list {
	max-width: 270px;
	width: 100%;
}
.feature-item:not(:last-child) {
	margin-bottom: 50px;
}
.feature-item {
	font-size: 16px;
	line-height: 1.18;
	font-weight: 500;
	padding: 15px;
	border-radius: 5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	background-color: #ffffff;
	color: #03091F;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.feature-item:hover,
.feature-item.active {
	color: #ffffff;
	background-color: #29C0C5;
}
.feature-item:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0px 10px 20px #00000029;
	z-index: 1;
}
.feature-item svg {
	height: 20px;
	width: 20px;
}
.feature-item svg path,
.feature-item svg rect,
.feature-item svg circle,
.feature-item svg polygon,
.feature-item svg ellipse,
.feature-item svg line {
	fill: #29C0C5;
	stroke: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}
.feature-item:hover svg path,
.feature-item:hover svg rect,
.feature-item:hover svg circle,
.feature-item:hover svg polygon,
.feature-item:hover svg ellipse,
.feature-item:hover svg line,
.feature-item.active svg path,
.feature-item.active svg rect,
.feature-item.active svg circle,
.feature-item.active svg polygon,
.feature-item.active svg ellipse,
.feature-item.active svg line {
	fill: #ffffff;
}
.left-feature-col .feature-item > svg {
	margin-right: 10px;
}
.feature-item .arrow-icon {
	position: absolute;
	width: 115px;
	font-size: 0;
	pointer-events: none;
}
.feature-item .arrow-icon img {
	vertical-align: top;
}
.left-feature-col .feature-item .arrow-icon {
	left: 100%;
}
.feature-item .arrow-icon:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	transition: all 1s linear;
	width: 0;
	right: 0;
}
.right-feature-col .feature-item .arrow-icon:before {
	left: 0;
}
.left-feature-col .feature-item:nth-child(1) .arrow-icon {
	top: 24px;
}
.left-feature-col .feature-item:nth-child(3) .arrow-icon {
	top: -16px;
}
.center-iphone-col {
	-ms-flex: 0 0 29%;
	flex: 0 0 29%;
	max-width: 29%;
	position: relative;
	z-index: 1;
	text-align: center;
}
.center-iphone-wrap {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}
.option2 .center-iphone-wrap {
	display: block;
}
.center-iphone-wrap .iphone {
	position: relative;
	z-index: 1;
}
.option2 .center-iphone-wrap .iphone {
	width: 100%;
}
.center-iphone-gif-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	padding: 10px 12px 0px 11px;
}
.option2 .center-iphone-gif-wrap {
	padding: 13px 17px 0px 15px;
}
.center-iphone-gif-wrap img {
	display: none;
	border-radius: 15px;
}
.center-iphone-gif-wrap .active img {
	display: block;
}
.right-feature-col {
	-ms-flex: 0 0 35.5%;
	flex: 0 0 35.5%;
	max-width: 35.5%;
}
.right-feature-col .feature-list {
	margin-left: auto;
}
.right-feature-col .feature-item {
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.right-feature-col .feature-item > svg {
	margin-left: 10px;
}
.right-feature-col .feature-item .arrow-icon {
	right: 100%;
}
.right-feature-col .feature-item:nth-child(1) .arrow-icon {
	top: 24px;
}
.right-feature-col .feature-item:nth-child(3) .arrow-icon {
	top: -16px;
}
#parking-owners .feature-item:nth-child(2) .arrow-icon {
	top: -16px;
}
.center-iphone-col .play-btn {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	cursor: pointer;
}
.center-iphone-col .play-btn .far {
	color: #ffffff;
	font-size: 60px;
	background-color: rgba(255, 255, 255, .1);
	border-radius: 100%;
	z-index: 10;
	position: relative;
	animation: ripple_shadow 1s linear infinite;
}
@keyframes ripple_shadow {
    0% {
	-webkit-box-shadow: 
		0 0 0 0 rgba(255, 255, 255, 0.3),
		0 0 0 10px rgba(255, 255, 255, 0.3),
		0 0 0 20px rgba(255, 255, 255, 0.3);
	box-shadow:
		0 0 0 0 rgba(255, 255, 255, 0.3),
		0 0 0 10px rgba(255, 255, 255, 0.3),
		0 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
	-webkit-box-shadow:
		0 0 0 10px rgba(255, 255, 255, 0.3),
		0 0 0 20px rgba(255, 255, 255, 0.3),
		0 0 0 30px rgba(255, 255, 255, 0);
	box-shadow:
		0 0 0 10px rgba(255, 255, 255, 0.3),
		0 0 0 20px rgba(255, 255, 255, 0.3),
		0 0 0 30px rgba(255, 255, 255, 0);
    }
}


/********** Download App Section **********/
.download-app {
	padding: 0;
	background-color: #29C0C5;
}
.download-app h2 {
	color: #ffffff;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.22;
	margin-bottom: 40px;
}
.download-link a {
	display: inline-block;
	vertical-align: top;
	box-shadow: 0px 10px 20px #00000029;
}
.download-link a + a {
	margin-left: 30px;
}


/********** FAQ Section **********/
.accordion {
	padding: 40px 0;
}
.accordion__item:not(:last-child) {
	margin-bottom: 20px;
}
.accordion__title {
	position: relative;
	box-shadow: 0px 10px 20px #00000029;
	border-radius: 5px;
}
.accordion__title:before {
	content: "";
	display: block;
	position: absolute;
	right: 25px;
	top: 50%;
	width: 14px;
	height: 8px;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid #5761B2;
	background: transparent;
	pointer-events: none;
	margin-top: -4px;
}
.accordion__title a {
	font-size: 15px;
	font-weight: 600;
	padding: 15px 50px 15px 15px;
	display: block;
	text-decoration: none;
}
.accordion__content {
	display: none;
	background-color: #F4F5F9;
	padding: 20px;
}
.accordion__content p:last-child {
	margin-bottom: 0;
}
.accordion__content ol {
	margin-bottom: 22px;
	list-style-type: decimal;
	padding-left: 29px;
}
.accordion__content ol li {
	margin-bottom: 5px;
}
.accordion__title.active:before {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 8px solid #5761B2;
	border-top: 0;
}
.width-770 {
	max-width: 770px;
	width: 100%;
}

.contact-us {
	padding: 30px 0;
	background-image: url('../images/city-background-light.svg');
	background-position: center bottom;
	background-repeat: repeat-x;
}

/********** Footer **********/
footer h3 {
	color: #5761B2;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 25px;
}
.footer-top {
	padding: 40px 0;
	background-color: #f2f8f8;
}
.footer-info-box {
	padding: 25px;
	max-width: 380px;
	width: 100%;
}
.footer-info-box img {
	height: 90px;
	margin-left: -16px;
}
.footer-info-box h3 {
	color: #0576B0;
	font-size: 24px;
	font-weight: 500;
	font-style: italic;
	margin-bottom: 15px;
}
.footer-info-box p {
	font-weight: 500;
	margin: 0;
}
.foot-menu li:not(:last-child) {
	margin-bottom: 8px;
}
.foot-menu li a {
	font-weight: 500;
}
.foot-menu li a:hover {
	color: #29c0c5;
}
.foot-contact-box {
	margin-bottom: 25px;
}
.foot-contact-icon {
	background-color: #29c0c5;
	width: 40px;
	height: 40px;
	text-align: center;
	flex: 0 0 auto;
	margin-right: 10px;
	border-radius: 100%;
}
.foot-contact-icon img {
	padding: 7px 7px;
	width: 30px;
	height: 40px;
	object-fit: contain;
}
.foot-contact-info p {
	font-weight: 500;
	margin: 0;
}
.foot-contact-info a:hover {
	color: #29c0c5;
}
footer .social {
	margin-top: 10px;
}
.social li {
	margin-right: 10px;
	display: inline-block;
	vertical-align: top;
}
.social li:last-child {
	margin-right: 0;
}
.social li a {
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background-color: #fff;
	display: block;
	text-align: center;
	position: relative;
	-webkit-box-shadow: 0px 5px 5px #cecece;
	-moz-box-shadow: 0px 5px 5px #cecece;
	box-shadow: 0px 5px 5px #cecece;
}
.social li a.facebook {
	background-color: #3b5998;
}
.social li a.twitter {
	background-color: #55acee;
}
.social li a.instagram {
	background-color: #ffffff;
}
.social li a img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 20px;
	height: 20px;
	margin: auto;
}
.footer-copy {
	background-color: #E4F1F1;
	padding: 12px 0;
}
.footer-copy p {
	color: #638F8F;
	font-size: 16px;
	margin: 0;
}


.terms-and-conditions {
	padding: 100px 0 50px;
}
.terms-and-conditions .editor-content .border-box {
	padding: 22px 22px;
	border: 1px solid #000000;
	margin-bottom: 22px;
}
.terms-and-conditions .editor-content .border-box p {
	margin-bottom: 10px;
}
.terms-and-conditions .editor-content .border-box p:last-child {
	margin-bottom: 0;
}
.editor-content > ul {
	list-style-type: disc;
	margin-bottom: 22px;
	padding-left: 19px;
}
.editor-content > ul > li {
	margin-bottom: 8px;
}
.editor-content > ul > li > ul {
	list-style-type: disc;
	margin-bottom: 15px;
	margin-top: 15px;
	padding-left: 19px;
}
.editor-content > ul > li > ul > li {
	margin-bottom: 8px;
}
.editor-content > ul > li > ul > li::marker {
	content: "- ";
}
.editor-content ol {
	counter-reset: item;
}
.editor-content ol li {
	display: block;
	margin-bottom: 8px;
}
.editor-content ol li:before {
	content: counters(item, ".") "  ";
	counter-increment: item;
	font-weight: bold;
	font-size: 26px;
	line-height: 1.2;
	color: #29c0c5;
}
.editor-content ol ol {
	margin-bottom: 15px;
	margin-top: 15px;
	padding-left: 19px;
}
.editor-content > ol > li > ol li::before {
	font-weight: 600;
	color: inherit;
	font-size: 14px;
}


.editor-content > ol > li h2 {
	display: inline;
	vertical-align: top;
	font-size: 26px;
	line-height: 1.2;
	color: #29c0c5;
}
.editor-content > ol > li h3 {
	display: inline;
	vertical-align: top;
	font-size: 24px;
	line-height: 1.2;
	color: #29c0c5;
}
.mark, mark {
	background-color: yellow;
}


.privacy-policy .editor-content ol li:before {
	font-size: 20px;
	font-weight: 500;
}
.privacy-policy .editor-content > ol > li > ol li::before {
	font-size: 14px;
}
.privacy-policy .editor-content > ol > li h2 {
	font-size: 20px;
	font-weight: 500;
}
.privacy-policy .editor-content > ol > li p {
	margin-top: 12px;
}

/********** FAQ **********/
.faq-wrap {
	padding: 100px 0 40px;
}
.faq-wrap .accordion {
	padding: 0 0 30px;
}

ul.unorder-list {
	list-style-type: disc;
	padding-left: 30px;
}
ul.unorder-list > li {
	display: list-item;
}
ul.unorder-list > li:before {
	display: none;
}