/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Appiest - App Multiconcept Landing Page
* File          : Main CSS file
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. General css
02. Navigation area css
03. Banner area css
04. Service area css
05. Welcome area css
06. How it work area css
07. Features area css
08. Pricing area css
09. Testimonial area css
10. FAQs area css
11. Version History area css
12. Screenshot area css
13. Download App area css
14. Mega Footer & Footer area css
15. Media Screens
-------------------------------------------------------------------------------------- */

/************************************/
/***** 	   01. General css		 ****/
/************************************/

.bgcolorgra {
	background: linear-gradient(to right, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));
}

.navbar-brand{
	margin-right: auto;
}
@font-face {
	font-family: 'PPTelegraf-Regular';
	src: url('../fonts/pptelegraf/PPTelegraf-Regular.woff') format('opentype');
	font-weight: normal;
	font-style: normal;
	font-display: fallback;
  }

  @font-face {
	font-family: 'PPTelegraf-Regular-ultrabold';
	src: url('../fonts/pptelegraf/PPTelegraf-UltraBold.woff') format('opentype');
	font-weight: bold;
	font-style: normal;
	font-display: fallback;
  }


  
  @font-face {
	font-family: 'PPTelegraf-UltralightSlanted';
	src: url('../fonts/pptelegraf/PPTelegraf-UltralightSlanted.woff2') format('opentype');
	font-weight: bold;
	font-style: normal;
	font-display: fallback;
  }


  @font-face {
	font-family: 'BrownLLAra-Regular';
	src: url('../fonts/brown/BrownLLAra-Regular.woff') format('opentype');
	font-display: fallback;
	
  }

  @font-face {
	font-family: 'BrownLLAra-Light';
	src: url('../fonts/brown/BrownLLAra-Light.woff') format('opentype');
	font-display: fallback;
  }

  @font-face {
	font-family: 'BrownLLAra-Bold';
	src: url('../fonts/brown/BrownLLAra-Bold.woff') format('opentype');
	font-display: fallback;
  }

  @font-face {
	font-family: 'BrownLLAra-Black';
	src: url('../fonts/brown/BrownLLAra-Black.woff') format('opentype');
	font-display: fallback;
  }


body{
	font-size: 16px;
	font-family: 'PPTelegraf-Regular';
	color: #8d97ad;
}

body.on-side{
	margin-left: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

::-moz-selection{
	background: #99D2F7;
	color: #fff;
}

::selection{
	background: #99D2F7;
	color: #fff;
}

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	z-index: 9999;
	text-align: center;
}

.loader{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 120px;
	display: flex;
	flex-flow: column nowrap;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .diamond{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    background: #fff;
    -webkit-transform: translateY(0) rotate(45deg) scale(0);
    transform: translateY(0) rotate(45deg) scale(0);
    -webkit-animation: diamonds 1500ms linear infinite;
    animation: diamonds 1500ms linear infinite;
}

.preloader .diamond:nth-child(1) {
    -webkit-animation-delay: -1000ms;
    animation-delay: -1000ms;
}

.preloader .diamond:nth-child(2) {
    -webkit-animation-delay: -2000ms;
    animation-delay: -2000ms;
}

.preloader .diamond:nth-child(3) {
    -webkit-animation-delay: -3000ms;
    animation-delay: -3000ms;
}

.preloader .diamond:nth-child(4) {
    -webkit-animation-delay: -4000ms;
    animation-delay: -4000ms;
}

@-webkit-keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

@keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

.row.no-gutters{
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.btn-custom{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	/* background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5); */
	background-color: #81DDCE;
	padding: 6px 50px;
	border-radius: 24px;
	width: 290px;
	border: solid 3px #81DDCE;
}

.downloadbtnguide{
	width: 312px;
	/* padding-top: 12px;
    padding-bottom: 12px; */
	padding:12px
}

.successpagetext {
	color: #000 !important;
    font-size: 32px !important;
    line-height: 0.4em !important;
    margin-bottom: 1.7em !important;
}

.btn-custom2{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	/* background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5); */
	background-color: #81DDCE;
	padding: 6px 50px;
	border-radius: 24px;
	
}

.btncustomleft{
	/* padding: 6px 75px; 
	 */
	color: #07524D; 
}
.btncustomright{
	margin-left: 80px; 
	color: #07524D; 
	background: transparent; 
	border: solid 3px #81DDCE;
}


.btn-custom:hover{
	background: #99D2F7;
	color: #fff;
}

/************************************/
/***** 02. Navigation area css  *****/
/************************************/

.header-layout-1 .navbar-nav {
    flex-wrap: wrap;
}

.header-layout-1 .navbar{
	padding: 0;
	background: #fff;
	transition: all 0.3s;
}

.header-layout-1 .navbar .container{
	position: relative;
}

.header-layout-1 .navbar-brand img{
	height: 44px;
	transition: all 0.3s;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item{
	position: relative;
	padding: 34px 0;
	transition: all 0.3s;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item ul{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 200px;
	padding: 6px 0;
	margin: 0;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
}

.header-layout-1 .navbar-light .navbar-nav .nav-item ul li{
	display: block;
	width: 100%;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item ul li a{
	display: block;
	color: #fff;
	font-size: 14px;
	padding: 6px 16px;
	transition: all 0.3s;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item ul li a:hover{
	background: rgba(255,255,255,0.2);
	color: #fff;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item:hover ul{
	display: block;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link{
	color: #07524D;
	font-size: 14px;
	text-transform: capitalize;
	padding: 8px 10px;
	font-weight: bold;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link.download-link{
	/* background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5); */
	
	padding: 8px 20px;
	vertical-align: middle;
	border-radius: 20px;
	margin-left: 10px;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link.download-link:hover{
	background: #99D2F7 !important;
	color: #fff !important;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link.download-link:focus{
	color: #fff !important;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link:hover{
	color: #99D2F7;
}

.header-layout-1 .navbar-light .navbar-nav .nav-link:focus{
	color: #99D2F7;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item .active.nav-link{
	color: #99D2F7;
}

.header-layout-1 .navbar-light .navbar-nav .nav-item .active.nav-link.download-link{
	color: #fff;
}

.header-layout-1 .sticky-header .navbar-brand img{
	height: 44px;
}

.header-layout-1 .navbar-toggle{
	display: none;
	position: absolute;
	right: 15px;
	top: 10px;
	transition: all 0.3s;
}

.header-layout-1 .sticky-header .navbar-toggle{
	top: 10px;
}

.header-layout-1 .sticky-header.navbar-light .navbar-nav .nav-item{
	padding: 17px 0;
}

#responsive-menu{
	display: none;
	width: 100%;
}

.header-layout-1 .slicknav_menu{
	padding: 0;
	background: none;
}

.header-layout-1 .slicknav_btn{
	padding: 8px;
	border: 3px solid #07524D;
	border-radius: 10px;
	margin: 0;
	background: none;
}

.header-layout-1 .slicknav_icon-bar{
	box-shadow: none;
	height: 1px;
	margin-top: 1px;
	margin-bottom: 5px;
	background: #3e4555;
}

.header-layout-1 .slicknav_nav{
	padding: 10px 0;
}

.header-layout-1 .slicknav_nav a{
	color: #000;
	margin: 0;
	padding: 6px 2px;
}

.header-layout-1 .slicknav_nav a.active{
	color: #99D2F7;
}

.header-layout-1 .slicknav_nav a:hover{
	background: none;
	color: #99D2F7;
}

/************************************/
/*****   03. Banner area css    *****/
/************************************/

.banner-layout-1{
	position: relative;
	top: 0px;
	left: 0;
	width: 100%;
	background: #fff;
	background-size: cover;
	padding: 130px 0 50px 0px;
}

.banner-layout-1 .row{
	position: relative;
	z-index: 1;
}

.banner-layout-1 .header-content{
	margin-top: 60px;
}

.thankyouleap{
	margin-top: -70px !important;
}

.banner-layout-1 .header-content h2{
	

	color: #07524D ; 
	text-align: center ; 
	/* font-size: 70px; */
	line-height: initial ;

	
	font-weight: 500;
	font-family: 'PPTelegraf-Regular-ultrabold';
	margin-bottom: 0.6em;
	
}

.banner-layout-1 .header-content p{
	color: #000;
	font-size: 20px;
	line-height: 1.4em;
	margin-bottom: 1.7em;
}

.banner-layout-1 .header-img{
	text-align: center;
}

.banner-layout-1 .btn-video-play{
	margin-top: 40px;
}

.banner-layout-1 .btn-play{
	display: inline-block;
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	vertical-align: middle;
}

.banner-layout-1 .btn-play figure{
	margin: 0;
}

.banner-layout-1 .btn-play i{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	font-size: 50px;
	color: #fff;
	text-align: center;
	line-height: 1em;
	transform: translate(0,-50%);
}

.banner-layout-1 .btn-video-play span{
	display: inline-block;
	color: #8d97ad;
	font-size: 20px;
	font-weight: 500;
	margin-left: 20px;
}

/*************************************/
/*****   04. Service area css    *****/
/*************************************/

.service-layout-1{
	margin-top: -100px;
	padding: 0 0 50px;
}

.service-layout-1 .service-single{
	background: #fff;
	padding: 30px 20px;
	text-align: center;
	box-shadow: 0px 1px 65px 0px rgba(0, 0, 0, 0.08);
}

.service-layout-1 .service-single .icon-box{
	display: inline-block;
	font-size: 80px;
	line-height: 1em;
	margin-bottom: 20px;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.service-layout-1 .service-single h3{
	font-size: 18px;
	color: #3e4555;
	font-weight: 500;
}

.service-layout-1 .btn-seemore{
	display: inline-block;
	text-transform: uppercase;
	color: #8d97ad;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	margin-top: 4px;
	transition: all 0.3s;
}

.service-layout-1 .btn-seemore:after{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #8d97ad;
	transition: all 0.3s;
}

.service-layout-1 .btn-seemore:hover{
	color: #3e4555;
}

.service-layout-1 .btn-seemore:hover:after{
	background: #3e4555;
}

/*************************************/
/*****   05. Welcome area css    *****/
/*************************************/

.welcome-layout-1{
	padding: 50px 0;
}

.welcome-layout-1 .welcome-box{
	text-align: center;
}

.welcome-layout-1 .welcome-box h2{
	color: #8d97ad;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
}

.welcome-layout-1 .welcome-box p{
	color: #3e4555;
	font-size: 25px;
	font-weight: 500;
	margin: 0;
}

/**************************************/
/*****  06. How it work area css  *****/
/**************************************/

.how-it-work-layout-1{
	padding: 50px 0;
}

.section-title{
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2{
	color: #3e4555;
	font-size: 30px;
	padding-bottom: 20px;
	background: url(../images/title-bg.png) no-repeat bottom center;
}

.how-it-work-tab .nav-tabs {
	display:none;
	justify-content: center;
}

.how-it-work-layout-1 .how-it-work-tab .nav-tabs .nav-link{
	border: none;
	color: #8d97ad;
}

.how-it-work-layout-1 .how-it-work-tab .nav-tabs .nav-link i{
	font-size: 30px;
	vertical-align: middle;
	margin-right: 10px;
}

.how-it-work-layout-1 .how-it-work-tab .nav-tabs .nav-link.active{
	border: none;
	color: #fff;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
}

.how-it-work-layout-1 .how-it-work-tab .nav-tabs .nav-item{
	margin-bottom: 0;
}

.how-it-work-layout-1 .how-it-work-tab .card-body{
	padding: 20px 0;
}

.how-it-work-layout-1 .how-it-work-tab .how-it-image{
	padding: 30px;
}

.how-it-work-layout-1 .how-it-work-tab .how-it-image img{
	box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.17);
}

.how-it-work-layout-1 .how-it-work-tab .how-it-content{
	padding-top: 40px;
}

.how-it-work-layout-1 .how-it-work-tab .how-it-content h3{
	font-size: 20px;
	color: #3e4555;
	font-weight: 600;
	margin-bottom: 1.5em;
}

.how-it-work-layout-1 .how-it-work-tab .how-it-content p{
	color: #8d97ad;
	font-size: 14px;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.how-it-work-layout-1 .how-it-work-tab .card .card-header{
	padding: 0;
}

.how-it-work-layout-1 .how-it-work-tab .card .card-header h5 a{
	display: block;
	padding: 10px 14px;
	font-size: 16px;
	font-weight: 500;
	color: #000;
}

.how-it-work-layout-1 .how-it-work-tab .card .card-header h5 a i{
	font-size: 20px;
	margin-right: 6px;
	vertical-align: middle;
}

/**************************************/
/*****   07. Features area css    *****/
/**************************************/

.features-layout-1{
	padding: 50px 0;
	background: url(../images/feature-bg.png) no-repeat right center;
	background-size: auto 100%;
}

.features-layout-1 .feature-content{
	padding-top: 30px;
}

.features-layout-1 .feature-content h2{
	font-size: 30px;
	color: #3e4555;
	font-weight: 600;
	margin-bottom: 1.5em;
}

.features-layout-1 .feature-content p{
	color: #8d97ad;
	font-size: 14px;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.features-layout-1 .feature-image{
	text-align: center;
}

/**************************************/
/*****    08. Pricing area css    *****/
/**************************************/

.pricing-layout-1{
	padding: 50px 0;
}

.pricing-layout-1 .pricing-title{
	padding-top: 80px;
}

.pricing-layout-1 .pricing-title h3{
	font-size: 24px;
	color: #3e4555;
	font-weight: 600;
	margin-bottom: 1em;
}

.pricing-layout-1 .pricing-title p{
	color: #8d97ad;
	font-size: 14px;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.pricing-layout-1 .pricing-tab .nav-tabs{
	border: 1px solid #00c9ff;
	display: inline-flex;
	border-radius: 20px;
	overflow: hidden;
}

.pricing-layout-1 .pricing-tab .nav-item{
	display: inline-block;
	min-width: 90px;
	text-align: center;
	border-left: 1px solid #00c9ff;
}

.pricing-layout-1 .pricing-tab .nav-link{
	border: none;
	color: #3e4555;
	font-size: 14px;
	font-weight: 500;
	border-radius: 0;
	padding: 10px 20px;
}

.pricing-layout-1 .pricing-tab .nav-link.active{
	border: none;
	color: #fff;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
}

.pricing-layout-1 .pricing-box-wrapper{
	/* background: #3e4555; */
	text-align: center;
	/* margin-left: 40px;
	margin-top: 20px;
	padding: 1px; */

	border-radius: 50px;
	border: 3px solid #81DDCE;
}

.pricing-layout-1 .pricing-box{
	/* padding: 40px 20px; */
	/* margin-left: -40px;
	margin-right: 40px;
	margin-top: -20px; */
	/* background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5); */
}

.pricing-layout-1 .pricing-header{
	/* margin-bottom: 30px; */
	background: #7BC0FF;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
	padding-top: 12px;
	padding-bottom: 1px;
	height: 100px;
}

.pricing-layout-1 .pricing-header .icon-box{
	color: #fff;
	font-size: 80px;
	line-height: 1em;
	margin-bottom: 20px;
}

.pricing-layout-1 .pricing-header h3{
	color: #07524D;
	font-size: 34px;
	color: #07524D;
    text-align: center;
    font-family: 'PPTelegraf-Regular-ultrabold';
    font-size: 30px;
    line-height: initial;
	margin-top: 11px;
	
}

.pricing-layout-1 .pricing-header p{
	color: #07524D;
}

.pricing-layout-1 .pricing-body ul{
	/* list-style: none;
	padding: 0;
	margin: 0 0 20px; */
	padding: 12px 20px 12px 20px;
	list-style: none;
    padding: 0;
    margin: 40px 20px 20px;
    text-align: left;
}

.pricing-layout-1 .pricing-body ul li{
	color: #07524D;
	/* padding: 6px 0; */
}
.pricing-layout-1 .pricing-body ul li .fa {
	margin-right: 16px !important;
}


.pricing-layout-1 .pricing-body h4{
	font-size: 28px;
	color: #07524D;
	font-weight: 600;
	margin: 0; 
}

.pricing-layout-1 .btn-buynow{
	padding: 30px 0;
    border-bottom: 3px solid #81DDCE;
}

.pricing-layout-1 .btn-buynow a{
	display: inline-block;
	/* font-size: 20px; */
	font-weight: 500;
	color: #fff;
	position: relative;
	/* padding-bottom: 2px; */

	padding: 10px 90px;
    background: #81DDCE;
    border-radius: 12px;
	padding: 10px 5px;
	width: 88%;
	cursor: grab;
	
}

.pricing-layout-1 .btn-buynow a:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: #fff;
}

/******************************************/
/*****    09. Testimonial area css    *****/
/******************************************/

.testimonial-layout-1{
	padding: 50px 0;
}

.testimonial-layout-1 .testimonial-slider-wrapper{
	padding-left: 100px;
	position: relative;
}

.testimonial-layout-1 .testimonial-slide{
	border-radius: 20px;
	overflow: hidden;
	/* background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5); */
	/* background: #07524D; */
	transition: all 0.3s;
}

.testimonial-layout-1 .swiper-slide .testimonial-slide{
	opacity: 0.4;
	transition: all 0.3s;
}

.testimonial-layout-1 .swiper-slide .testimonial-slide:hover{
	opacity: 1;
}

.testimonial-layout-1 .swiper-slide-active .testimonial-slide{
	opacity: 1;
}

.testimonial-layout-1 .testimonial-slide figure{
	margin: 0;
}

.testimonial-layout-1 .testimonial-slide figure img{
	width: 100%;
	object-fit: cover;
    /* height: 637px; */
}

.testimonial-layout-1 .testimonial-slide .testimonial-entry{
	padding: 20px 10px;
	text-align: center;
}

.testimonial-layout-1 .testimonial-slide .testimonial-entry p{
	color: #fff;
	font-size: 14px;
	font-style: normal;
	line-height: 1.5em;
	margin: 0;
}

.testimonial-layout-1 .testimonial-pagination{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
}

.testimonial-layout-1 .testimonial-pagination .testimonial-prev,
.testimonial-layout-1 .testimonial-pagination .testimonial-next{
	/* font-size: 40px;
	cursor: pointer;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

.testimonial-layout-1 .testimonial-pagination .testimonial-prev:hover,
.testimonial-layout-1 .testimonial-pagination .testimonial-next:hover{
	/* background: #9daa08; */
	/* -webkit-background-clip: text;
	-webkit-text-fill-color: transparent; */
}

/**************************************/
/*****     10. FAQs area css      *****/
/**************************************/

.faq-layout-1{
	padding: 50px 0;
}

.faq-layout-1 .faq-tabs:after{
	content: '';
	display: block;
	clear: both;
}

.faq-layout-1 .faq-tabs .nav-tabs{
	width: 25%;
	float: left;
	display: block;
	border: none;
}

.faq-layout-1 .faq-tabs .nav-tabs .nav-link,
.faq-layout-1 .faq-tabs .card-header a{
	background: #f5f7fa;
	border: none;
	display: block;
	font-size: 20px;
	color: #3e4555;
	font-weight: 600;
	border-radius: 4px;
	margin-bottom: 20px;
	padding: 12px 20px;
	cursor: pointer;
}

.faq-layout-1 .faq-tabs .card-header a{
	margin-bottom: 0;
}

.faq-layout-1 .faq-tabs .nav-tabs .nav-link i,
.faq-layout-1 .faq-tabs .card-header a i{
	font-weight: 400;
	font-size: 30px;
	vertical-align: middle;
	display: inline-block;
	margin-right: 10px;
}

.faq-layout-1 .faq-tabs .nav-tabs .nav-link.active,
.faq-layout-1 .faq-tabs .card-header a.active{
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	color: #fff;
}

.faq-layout-1 .faq-tabs .tab-content{
	width: 70%;
	float: right;
}

.faq-layout-1 .faq-tabs .card-block{
	padding: 20px 0;
}

.faq-layout-1 .faq-tabs .card{
	border: none;
	margin-bottom: 20px;
}

.faq-layout-1 .faq-tabs .card-header{
	border: none;
	padding: 0;
}

.faq-layout-1 .faq-tabs .faq-accordion .card-header a{
	font-size: 18px;
	font-weight: 500;
	padding: 20px;
	position: relative;
}

.faq-layout-1 .faq-tabs .faq-accordion .card-header a:hover{
	color: #3e4555;
}

.faq-layout-1 .faq-tabs .faq-accordion  .card-header a:after{
	content: '\f107';
	font-family: FontAwesome;
	color: #3e4555;
	font-weight: 600;
	width: 26px;
	height: 26px;
	display: block;
	border: 1px solid #3e4555;
	border-radius: 50%;
	text-align: center;
	line-height: 26px;
	position: absolute;
	right: 20px;
	top: 16px;
	transition: all 0.6s;
}

.faq-layout-1 .faq-tabs .card.active .card-header a:after{
	transform: rotate(180deg);
}

.faq-layout-1 .faq-tabs .card-body{
	padding: 20px 20px 0;
}

.faq-layout-1 .faq-tabs .card-body p,
.faq-layout-1 .faq-tabs .tab-pane .card-body p{
	font-size: 14px;
	color: #8d97ad;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

/********************************************/
/*****   11. Version History area css   *****/
/********************************************/

.version-history-layout-1{
	padding: 50px 0;
}

.version-history-layout-1 .version-history-slider{
	padding: 0 80px;
	position: relative;
}

.version-history-layout-1 .version-image{
	width: 48%;
	float: left;
	text-align: center;
}

.version-history-layout-1 .version-entry{
	width: 48%;
	float: right;
	margin-top: 26px;
}

.version-history-layout-1 .version-entry h3{
	font-size: 18px;
	color: #3e4555;
	font-weight: 600;
	margin-bottom: 1.2em;
}

.version-history-layout-1 .version-entry p{
	font-size: 14px;
	color: #8d98ae;
	line-height: 1.7em;
	margin-bottom: 1.7em;
}

.version-history-layout-1 .version-entry ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.version-history-layout-1 .version-entry ul:after{
	content: '';
	display: block;
	clear: both;
}

.version-history-layout-1 .version-entry ul li{
	font-size: 14px;
	color: #8d98ae;
	width: 48%;
	margin-right: 4%;
	float: left;
	padding: 6px 0;
}

.version-history-layout-1 .version-entry ul li:nth-of-type(2n + 2){
	margin-right: 0;
}

.version-history-layout-1 .version-entry ul li:before{
	content: '\f058';
	font-family: FontAwesome;
	margin-right: 8px;
}

.version-history-layout-1 .version-history{
	text-align: center;
}

.version-history-layout-1 .history-item{
	display: inline-block;
	text-align: center;
	padding: 4px 20px;
	margin: 20px 0;
	cursor: pointer;
}

.version-history-layout-1 .history-item .version{
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #8d98ae;
}

.version-history-layout-1 .history-item .date{
	display: block;
	font-size: 14px;
	color: #d6d9e1;
}

.version-history-layout-1 .history-item.active-version{
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	position: relative;
}

.version-history-layout-1 .history-item.active-version:before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-bottom: 10px solid #36dddb;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	position: absolute;
	top: -10px;
	left: 50%;
	margin-left: -10px;
}

.version-history-layout-1 .history-item.active-version .version,
.version-history-layout-1 .history-item.active-version .date{
	color: #fff;
}

.version-history-layout-1 .version-navigation .version-prev,
.version-history-layout-1 .version-navigation .version-next{
	font-size: 50px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.version-history-layout-1 .version-navigation .version-prev:hover,
.version-history-layout-1 .version-navigation .version-next:hover{
	background: #99D2F7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.version-history-layout-1 .version-navigation .version-prev{
	left: 0;
}

.version-history-layout-1 .version-navigation .version-next{
	right: 0;
}

/********************************************/
/*****     12. Screenshot area css      *****/
/********************************************/

.screenshot-layout-1{
	padding: 50px 0 100px;
}

.screenshot-layout-1 .screenshot-slider-wrapper{
	padding: 0 100px;
	position: relative;
}

.screenshot-layout-1 .screenshot-slide{
	text-align: center;
	padding: 30px 20px;
}

.screenshot-layout-1 .screenshot-slide img{
	box-shadow: 0px 0px 25.9px 5.1px rgba(0, 0, 0, 0.05);
}

.screenshot-layout-1 .screenshot-pagination .screenshot-prev,
.screenshot-layout-1 .screenshot-pagination .screenshot-next{
	font-size: 50px;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	position: absolute;
	top: 50%;
	cursor: pointer;
	transform: translate(0,-50%);
}

.screenshot-layout-1 .screenshot-pagination .screenshot-prev{
	left: 0;
}

.screenshot-layout-1 .screenshot-pagination .screenshot-next{
	right: 0;
}

.screenshot-layout-1 .screenshot-pagination .screenshot-prev:hover,
.screenshot-layout-1 .screenshot-pagination .screenshot-next:hover{
	background: #99D2F7;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/********************************************/
/*****    13. Download App area css     *****/
/********************************************/

.download-app-layout-1{
	 background: #f5f7fa url(../images/bgimagebanner-min.webp) no-repeat right 14% bottom; 
	
	
	background-size: auto 100%; 
	background-size: cover;
    background-position: bottom;
    padding-top: 136px;
    padding-bottom: 136px;
	/* background: #f5f7fa; */
	/* background: #f5f7fa url(../images/bgimage.png) no-repeat ; */
}




.download-app-layout-1 .download-entry{
	padding: 80px 0;
}

.download-app-layout-1 .download-entry h2{
	font-size: 40px;
	color: #3e4555;
	margin-bottom: 30px;
	line-height: normal;
	font-family: 'PPTelegraf-Regular-ultrabold';
}

.download-app-layout-1 .download-entry p{
	font-size: 20px;
	color: #8d97ad;
	line-height: normal;
}

.download-app-layout-1 .app-download{
	margin-top: 30px;
}

.download-app-layout-1 .btn-download{
    position: relative;
    display: inline-block;
	background: linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -webkit-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -moz-linear-gradient(to right, #99D2F7, #6ff1b5);
	background: -o-linear-gradient(to right, #99D2F7, #6ff1b5);
    color: #fff;
	padding: 6px 20px 6px 52px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    text-align: left;
    border-radius: 40px;
}

.download-app-layout-1 .btn-download i{
    font-size: 28px;
    position: absolute;
    top: 10px;
    left: 16px;
}

.download-app-layout-1 .btn-download span{
    font-size: 10px;
    display: block;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.download-app-layout-1 .btn-download:hover,
.download-app-layout-1 .btn-download:focus{
	background: #99D2F7;
	color: #fff;
}

/*********************************************/
/***** 14. Mega Footer & Footer area css *****/
/*********************************************/

.mega-footer-layout-1{
	padding: 100px 0;
}

.mega-footer-layout-1 .footer-link h3,
.mega-footer-layout-1 .footer-info h3,
.mega-footer-layout-1 .footer-payment h3{
	color: #07524D;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
}

.mega-footer-layout-1 .footer-link ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.mega-footer-layout-1 .footer-link ul li{
	padding: 2px 0;
}

.mega-footer-layout-1 .footer-link ul li a{
	font-size: 16px;
	color: #07524D;
	transition: all 0.3s;
	/* text-decoration: underline; */
	border-bottom: 1px solid #07524d;
}

.mega-footer-layout-1 .footer-link ul li a:hover{
	color: #99D2F7;
}

.mega-footer-layout-1 .footer-info p{
	font-size: 14px;
	color: #8d97ad;
}

.mega-footer-layout-1 .footer-info p:last-child{
	margin-bottom: 0;
}

.mega-footer-layout-1 .footer-payment-box i{
	display: inline-block;
	font-size: 30px;
	color: #8d97ad;
	margin-right: 8px;
	margin-bottom: 8px;
}

footer.footer-layout-1{
	/* padding: 30px 0; */
	border-top: 1px solid #dce3e9;

}

.subscribeheading{
	color: #07524D !important; 
	font-family: 'PPTelegraf-Regular-ultrabold' !important;
	 font-size: 25px !important;
	  line-height: normal !important;
	  display: flex;
	  margin-top: 10px !important;
}

.Subscribeemail{
	height: 50px ;
	border-radius: 12px; 
	display: flex;
	margin-top: 4px !important;; 
	margin-left: -67px; 
	width: 600px;
}

.subscribepara{
	color: #07524D !important;
	font-size: 17px !important;
	line-height: 1.4em !important;;
	 display: flex !important;;
	 margin-top: 12px !important;
}

.btnsubscribe{
	color: #fff;
    position: absolute;
    right: 23px;
    top: 53%;
    transform: translateY(-50%);
    background: #07524D;
    border: none;
    cursor: pointer;
	
}




@media only screen and (max-width: 767px){

	.mobilewhatsapplin{
		display: block !important;
	}
	.whatsapplinkdesktop{
		display: none !important;
	}

	.btnsubscribe{
		
		top: 53%;

	}

	.subscribeheading{
          font-size: 32px !important;
	}

	.subscribepara{
		margin-top: 25px !important;
	}
	.subscribeheading{
		margin-top: 0px !important;
		display: block;
	}
	.Subscribeemail{
		margin-left: 0px !important; 
	width: -webkit-fill-available !important;
	}

	.bottomfooter{
		border-radius: 0px !important;
		border-top-left-radius: 26px !important;
		border-top-right-radius: 26px !important;
	
	}

	.btn-custom{
		width: 65%;
	}

	.btncustomleft{
		width: 75%;
	}
	.btncustomright{
		width: 75%;
	}

	.successpagetext {
		color: #000 !important;
		font-size: 32px !important;
		line-height: 0.9em !important;
		margin-bottom: 1.7em !important;
	}
}



.footer-layout-1 .footer-copyright p{
	margin: 0;
	font-size: 18px;
	color: #8d97ad;
	line-height: 1.7em;
}

.footer-layout-1 .footer-copyright a{
	color: #8d97ad;
	text-decoration: underline;
}

.footer-layout-1 .footer-copyright a:hover{
	color: #99D2F7;
}

.footer-layout-1 .footer-social{
	text-align: right;
}

.footer-layout-1 .footer-social h3{
	font-size: 14px;
	color: #8d97ad;
	font-weight: 400;
}

.footer-layout-1 .footer-social a{
	display: inline-block;
	font-size: 14px;
	color: #8d97ad;
	margin-left: 10px;
}

.footer-layout-1 .footer-social a:hover{
	color: #99D2F7;
}

/************************************/
/*****    15. Media Screens     *****/
/************************************/

@media only screen and (min-width: 1700px){
	.download-app-layout-1{
		padding-top: 200px;
		padding-bottom: 200px;
	}
}


@media only screen and (max-width: 1200px){
	.header-layout-1 .navbar-light .navbar-nav .nav-link{
		padding: 8px 6px;
	}
	
	.testimonial-layout-1 .testimonial-slider-wrapper{
		padding-left: 60px;
	}
	
	.version-history-layout-1 .history-item{
		padding: 4px 14px;
	}
}

@media only screen and (max-width: 991px){
	.header-layout-1 .navbar-nav{
		display: none;
	}
	
	.header-layout-1 .navbar{
		padding: 10px 0;
		overflow: auto;
		max-height: 100%;
		align-items: flex-start;
	}

	.header-layout-1 .navbar .container{
		flex-wrap: wrap;
	}
	
	.header-layout-1 .navbar-toggle,
	#responsive-menu{
		display: block;
	}
	
	.banner-layout-1 .header-img{
		margin-top: 50px;
	}
	
	.service-layout-1 .service-single{
		margin-bottom: 30px;
	}
	
	.faq-layout-1 .faq-tabs .card-header a.active{
		background: #f5f7fa;
		color: #3e4555;
	}
	
	.features-layout-1{
		background: none;
	}
	
	.features-layout-1 .feature-content{
		padding-top: 0;
	}
	
	.pricing-layout-1 .pricing-title{
		padding-top: 0;
	}
	
	.pricing-layout-1 .tab-content{
		padding-top: 40px;
	}
	
	.screenshot-layout-1 .screenshot-slider-wrapper{
		padding: 0 60px;
	}
	
	.download-app-layout-1{
		

		background: #f5f7fa url(../images/bgimagebanner.jpg) no-repeat right 14% bottom; 
	
	
	background-size: auto 100%; 
	background-size: cover;
    background-position: bottom;
    padding-top: 151px;
    padding-bottom: 151px;
	}
	
	.mega-footer-layout-1 .footer-link,
	.mega-footer-layout-1 .footer-info{
		margin-bottom: 30px;
	}
	
	.version-history-layout-1 .version-history-slider{
		padding: 0;
	}
	
	.version-history-layout-1 .version-history{
		display: none;
	}
	
	.version-history-layout-1 .version-image{
		float: none;
		width: 100%;
	}
	
	.version-history-layout-1 .version-entry{
		float: none;
		width: 100%;
	}
	
	.version-history-layout-1 .version-navigation{
		text-align: center;
		margin-top: 30px;
	}
	
	.version-history-layout-1 .version-navigation .version-prev,
	.version-history-layout-1 .version-navigation .version-next{
		font-size: 30px;
		display: inline-block;
		position: static;
		margin: 0 10px;
	}
	
	.version-history-layout-1 .version-entry ul li{
		width: 100%;
		float: none;
	}

	.version-history-layout-1 .version-entry ul li:nth-of-type(2n + 2){
		margin-right: 0;
	}
}

.powerfullheading{
	color: #07524D; 
	font-size: 70px;
	font-family: 'PPTelegraf-Regular-ultrabold';
	line-height: initial;
}

.planparentdiv{
	margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding-top: 5%;
    padding-bottom: 5%;
    z-index: 1;
}

.calclass{
	position: absolute;
}

.mobilepricing{
	display: none;
}
/* Mobile Layout */
@media only screen and (max-width: 767px){

.desktoppricing{
	display: none !important;
}

.mobilepricing{
	display: block;
}
	
.manageyourproperty{
	font-size: 32px !important;
	text-align: left;
	margin-left: 15px !important;
}
	
	.colmobile{
		margin-top: 25px;
	}

	.calclass{
		position: relative ;
	}


	.titlelist{
		font-size: 32px !important;
	}

	.pricemobilelayout{
		display: block !important;
	}
	.pricedesktoplayout{
		display: none;
	}


	

	.taba h3 {
	
		font-size: 17px !important;
		
	}

	.taba p {
	
		font-size: 13px !important;
		margin-left: 23px !important;
		
	}

	.ListingLabh3{
		margin-left: 14px !important;
	}

	.guestguruh3{
		margin-left: 7px !important;
	}
	.PropertyCaretakerh3{
		margin-left: 12px !important;
	}
	
	.listing-icon{
		height: 38px !important;
		margin-left: 10px !important;
	}

	.listing-icon2{
		height: 38px !important;
	}

	.listing-icon3{
		height: 38px !important;
		margin-left: 7px;
	}


	.download-app-layout-1{
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.btncustomleft{
		/* width: 65%; */
	}
	.btncustomright{
		/* width: 65%; */
	}

.lastdivplan{
	margin-left: auto;
    margin-top: 25px;
    margin-right: auto;
    padding-bottom: 10%;

}
	
	.footer-text{
		font-size: 13px !important;
	}
	.powerfullheading{
		color: #07524D; 
		font-size: 38px;
		text-align: left;
	}
	.globaltouchtxt{
		font-size: 38px !important;
	}

	.testimonial-pagination h5{
		font-size: 30px !important;
	}

.bookingimg{
	margin-left: auto;
}
.image-container img{
	height: 95px !important;
    width: 120px !important;
}
.gifdiv {
    flex: auto !important;
}

	.linkdownload{
		padding: 8px 30px !important;
        border-radius: 24px;
        width: 184px;
		margin-top: 3px !important;
		text-align: center;
		width: 184px;
	}

	.btncustomright{
		margin-left: 0px !important; 
		margin-top: 5px !important;
	}

	.banner-layout-1{
		/* padding: 100px 0 160px; */
		padding: 80px 0 20px;
	}
	
	.service-layout-1{
		padding: 0 0 10px;
	}
	
	.welcome-layout-1,
	.how-it-work-layout-1,
	.features-layout-1,
	.testimonial-layout-1,
	.faq-layout-1{
		padding: 0px 0;
	}
	
	.pricing-layout-1{
		padding: 40px 0 0;
	}
	
	.download-app-layout-1 .download-entry{
		padding: 60px 0 50px;
	}
	
	.mega-footer-layout-1{
		padding: 60px 0;
	}
	
	.screenshot-layout-1{
		padding: 40px 0 80px;
	}
	
	.section-title{
		margin-bottom: 40px;
	}
	
	.section-title h2{
		font-size: 22px;
		background-size: 80px auto;
	}
	
	.features-layout-1 .feature-image{
		margin-top: 40px;
	}
	
	.features-layout-1 .feature-content h2{
		font-size: 22px;
	}
	
	.banner-layout-1 .header-content h2{
		/* font-size: 38px; */
	}
	
	.features-layout-1 .feature-image img{
		max-width: 200px;
	}
	
	.pricing-layout-1 .pricing-box-wrapper{
		margin-bottom: 40px;
	}
	
	.screenshot-layout-1 .screenshot-pagination{
		text-align: center;
	}
	
	.screenshot-layout-1 .screenshot-slider-wrapper{
		padding: 0;
	}
	
	.screenshot-layout-1 .screenshot-pagination .screenshot-prev,
	.screenshot-layout-1 .screenshot-pagination .screenshot-next{
		position: relative;
		display: inline-block;
		font-size: 30px;
		margin: 0 6px;
		transform: translate(0);
	}
	
	.download-app-layout-1 .download-entry h2{
		font-size: 26px;
	}
	
	.footer-layout-1 .footer-copyright{
		text-align: center;
		/* margin-bottom: 30px; */
	}
	
	.swiper-slide {
		width: 80% !important;
		
	}

	.textslide{
		margin-top: auto;
		margin-bottom: auto;
		 width: 200.25px !important; 
		 
		 margin-left: auto; 
		 margin-right: 20px !important;
	}

	.footer-layout-1 .footer-social{
		text-align: center;
	}
	
	.footer-layout-1 .footer-social a{
		margin: 0 5px;
	}
	
	.how-it-work-layout-1 .tab-pane {
		display: block !important;
		opacity: 1;
	}
  
	.how-it-work-layout-1 .how-it-work-tab .card{
		margin-bottom: 10px;
	}
	
	.how-it-work-layout-1 .how-it-work-tab .how-it-content{
		padding: 10px 20px 0;
	}
	
	.how-it-work-layout-1 .how-it-work-tab .how-it-image{
		padding: 20px;
	}
	
	.how-it-work-layout-1 .how-it-work-tab .card-body{
		padding: 0;
	}
	
	.how-it-work-layout-1 .how-it-work-tab .how-it-content h3{
		font-size: 18px;
		margin-bottom: 1em;
	}
	
	.how-it-work-layout-1 .how-it-work-tab .how-it-content p{
		font-size: 14px;
	}
	
	.pricing-layout-1 .pricing-header .icon-box{
		font-size: 60px;
	}
	
	.pricing-layout-1 .pricing-header h3{
		/* font-size: 24px; */
	}
	
	.pricing-layout-1 .pricing-body h4{
		font-size: 22px;
	}
	
	.pricing-layout-1 .pricing-box-wrapper{
		/* margin-left: 20px; */
		height: 590px;
	}
	
	.pricing-layout-1 .pricing-box{
		/* margin-left: -20px;
		margin-right: 20px; */
	}
	
	.pricediv{
		max-width: 80% !important;
    margin-right: auto;
	margin-left: auto;
		
	}
	.d-flex{
		display: block !important;
	}

	.faq-layout-1 .faq-tabs .faq-accordion .card-header a{
		font-size: 14px;
		line-height: 1.7em;
		padding-right: 48px;
	}
	
	.download-app-layout-1 .download-entry h2{
		font-size: 22px;
		font-size: 32px;
    font-family: 'PPTelegraf-Regular-ultrabold';

	}

	.download-app-layout-1 .download-entry p{
		font-size: 20px;
		color: #8d97ad;
		line-height: normal;
	}


	
}


@media(min-width:1000px)
{
	.btncustomright{
		margin-left: 0px !important; 
		margin-top: 5px !important;
	}

	.btncustomleft {
		/* padding: 6px 70px !important; */
		color: #07524D;
	}
}

@media(min-width:768px) {
	
	

	.how-it-work-layout-1 .how-it-work-tab .nav-tabs{
		display: flex;
	}

	.how-it-work-layout-1 .how-it-work-tab .card{
		border: none;
	}

	.how-it-work-layout-1 .how-it-work-tab .card .card-header{
		display:none;
		
	}  

	.how-it-work-layout-1 .how-it-work-tab .card .collapse{
		display:block;
	}
}

@media only screen and (max-width: 575px){
	



	.header-layout-1 .container{
		width: 100%;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	.banner-layout-1 .btn-play img{
		max-width: 70px;
	}
	
	.banner-layout-1 .btn-video-play span{
		font-size: 16px;
		margin-left: 10px;
	}
	
	.welcome-layout-1 .welcome-box p{
		font-size: 20px;
	}
	
	.testimonial-layout-1 .testimonial-slider-wrapper{
		padding: 0;
	}
	
	.testimonial-layout-1 .testimonial-pagination{
		position: relative;
		transform: translate(0);
	}
	
	.testimonial-layout-1 .testimonial-pagination{
		text-align: center;
		margin-top: 20px;
	}
	
	.testimonial-layout-1 .testimonial-pagination .testimonial-prev,
	.testimonial-layout-1 .testimonial-pagination .testimonial-next{
		display: inline-block;
		font-size: 30px;
		margin: 0 6px;
	}
	
	.download-app-layout-1 .btn-download{
		margin-bottom: 10px;
	}
}

.pricing-body ul li{
	font-size: 16px;
}

@media only screen and (max-width: 380px){
.pricing-body ul li{
	font-size: 15px !important;
}
.SocialTrust_titleArea__K1INE h5{
	font-size: 35px !important;
}

}

.app-images-container {
    display: flex;
    justify-content: space-between;
}

.app-images-container img {
    max-width: 50%; /* Set the max width for the images */
	margin-left: 5px;
}



  .rowgif {
    display: flex !important;
    flex-wrap: wrap !important;
}

.gifdiv {
    flex: 1 ;
    display: flex ;
    flex-direction: column !important;
}



.image-container {
    flex: 1; /* Take up remaining space */
}

.image-container img {
    /* width: 100%;
    height: auto; */
    display: block;
	margin-left: auto !important;
    margin-right: auto !important;
    width: 175px;
    height: 139px;
}

.footer-text {
    text-align: center; /* Center align the text */
    margin-top: 16px; /* Push text to the bottom */
	font-size: 16px;
	color:#07524D;  line-height: normal;
}

.urbanefootertext{
	flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}






.customdtext {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.description {
    margin-left: auto;
    text-align: right;
}

.customdtext h2 {
    margin: 0; /* Remove default margin */
}


.taba{
	color: #07524D;
    padding: 20px;
    /* text-align: center; */
    /* background: aqua; */
     border-radius: 50px; 
    /* display: inline-block; */
    display: flex;
}

.taba h3{
 margin-left: 23px;
 margin-top: auto;
 margin-bottom: inherit;
 font-size: 20px;

 font-weight: bold;
    line-height: normal;
	font-family: 'PPTelegraf-Regular-ultrabold';
}

.taba p{
	margin-left: 26px;	
	margin-top: auto;
	margin-bottom: inherit;
	font-size: 13px;
	line-height: normal;
}


.customcol{
	padding-left: 0;
	padding-right: 0;
}

.carousel-nav a.active{
	background: #07524D;
	color:#81DDCE;
	
}
.carousel-nav .listingtab  .listinglablightgreen a.active {
   display: block;
}

.carousel-nav .listingtab  .listinglabdarkgreen  {
	display: none;
 }

.owl-carousel .owl-item img {
    display: block;
    width: 66px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pricediv{
	max-width: 28.333333%;
}

.pricing-layout-1 .btn-buynow2 a {
    display: inline-block;
    /* font-size: 20px; */
    font-weight: 500;
    color: #fff;
    position: relative;
    /* padding-bottom: 2px; */
    /* padding: 10px 90px; */
    background: #81DDCE;
    border-radius: 50px;
    /* padding: 15px 5px; */
	padding-top: 15px;
	padding-bottom: 15px;
	/* padding: 12px 9px 12px 9px; */
    width: 88%;
	background-image: url(../images/btnbackground.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
	background-position-y: 6px;
}



.home-apps__section .btn-buynow2 a {
    display: inline-block;
    /* font-size: 20px; */
    font-weight: 500;
    color: #fff;
	
    position: relative;
    /* padding-bottom: 2px; */
    /* padding: 10px 90px; */
    background: #81DDCE;
    border-radius: 50px;
    /* padding: 15px 5px; */
	padding-top: 15px;
	padding-bottom: 15px;
	 padding: 9px 9px 9px 9px; 
    
	background-image: url(../images/btnbackground.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
	background-position-y: 6px;
}

.pricing-layout-1 .btn-buynow2{
	padding: 30px 0;
  
}

.pricing-layout-1 .btn-buynow2 a span {
	font-size: 26px;
    margin-right: 100px;
}


.home-apps__section .btn-buynow2 a span {
	font-size: 26px;
    margin-right: 100px;
	padding-left: 20px;
}


.testimonialcontainer{
	/* max-width: 80%; */
}



@media (min-width: 1200px)
{



}

/* @media (min-width: 768px )
{
	.testimonialcontainer{
		padding-left: 7%;
	}
} */

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .testimonialcontainer {
        padding-left: 5%; /* Adjust this value for smaller screens */
    }

	.mobpriceheading{
		font-size: 32px;
	}
}

/* Media query for even smaller screens, like mobile devices */
@media screen and (max-width: 480px) {
    .testimonialcontainer {
        padding-left: 3%; /* Adjust this value for smaller screens */
    }


	
}



.newsletter-form {
    position: relative;
    display: inline-block; /* Ensures the button and input are on the same line */
}

.input-group {
    position: relative;
}

input[type="email"] {
    /* padding-right: 40px; 
	border-radius: 52px;
    border: 1px solid #07524D;
	padding: 5px 89px 5px 10px; */
}

input::placeholder {
	color: #000 !important;
	
  }

.icon-button {
    position: absolute;
    right: 5px; /* Adjust as needed */
    top: 50%; /* Position the button vertically in the middle */
    transform: translateY(-50%); /* Align the button vertically in the middle */
    background: transparent;
    border: none;
    cursor: pointer;
}

.icons {
    font-size: 15px; /* Adjust as needed */
}

input[type="email"]::placeholder {
    color: #000; /* Placeholder color */
    font-size: 14px; /* Placeholder font size */
}

input[type="text"]::placeholder {
    color: #07524D !important; /* Placeholder color */
    
}

.pricing-body ul li{
	text-decoration: none;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   
    /* line-height: normal; */
    
    -ms-flex-align: center;
    align-items: center;
   
    -o-transition: color .1s ease .1s;
    transition: color .1s ease .1s;
   

}




@media (min-width: 576px) {
	.pricing-layout-1 .container {
		 max-width:540px 
	 }
 }
 
 @media (min-width: 768px) {

	

	

	 .pricing-layout-1 .container {
		 max-width:720px 
	 }
	 .swiper-container{
		margin-left: 310px;
	}
	.textslide{
		
		margin-bottom: auto;
		 width: 200.25px !important; 
		 
		 margin-left: auto; 
		 margin-right: 20px !important;
	}

	.slidecustom{
		width: 38% !important;  
	 margin-right: 20px !important;
  }

  

 }
 
 @media (min-width: 992px) {

	.bannerimg{
		margin-bottom: -240px;  z-index: 9;
	}

	 .pricing-layout-1 .container {
		 max-width:960px !important
	 }

	 .swiper-container{
		margin-left: 310px;
	}
	.textslide{
		
		margin-bottom: auto;
		 width: 200.25px !important; 
		 
		 margin-left: auto; 
		 margin-right: 20px !important;
	}
	.slidecustom{
		width: 38% !important;  
	 margin-right: 20px !important;
  }

  .testimonialcontainer {
		
	
	position: relative;
   width: 100%;
   min-height: 1px;
   padding-right: 0px;
   padding-left: 9% !important;
}
	
 }
 
 @media (min-width: 1200px) {
	 .pricing-layout-1 .container {
		 max-width:65%
	 }



	 .swiper-container{
		margin-left: 310px;
	}
	
	.textslide{
		margin-top: auto;
		margin-bottom: auto;
		 width: 200.25px !important; 
		 
		 margin-left: auto; 
		 margin-right: 20px !important;
	}
	
	
	.testimonialcontainer {
		
	
		position: relative;
	   width: 100%;
	   min-height: 1px;
	   padding-right: 0px;
	   padding-left: 14% !important;
	}
	
	
	
	.slidecustom{
		  width: 38% !important;  
	   margin-right: 20px !important;
	}
 }
 

 @media (min-width: 480px){
	
 }

 @media only screen and (max-width: 575px){
	.bannerimg{
		margin-bottom: -115px;  z-index: 9;
	}

	.Subscribewaitlist{
		margin-top: 1rem !important;
	}
	.btnsubscribe{
		padding: 6px 20px;
	}
	.footer-layout-1 .footer-copyright p{
		font-size: 17px;
	}
	.mega-footer-layout-1 .footer-link ul li a{
		font-size: 16px;
	}
	.home-apps__content-stores{
		margin:0 !important; 
	}
 }

/* Add this CSS to your stylesheet */
.pricing-box-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-body {
    flex-grow: 1;
}

.btn-buynow {
   
    text-align: center;
}

.tailoredplan{
	margin: 40px 20px 20px;
    text-align: center;
	color: #07524D;
}

.pricemobilelayout{
	display: none;
}

html {
	scroll-behavior: smooth;
  }

  td{
	vertical-align: middle;
  }

  a:hover{
	color: #198880;
  }

.tabdiv{
	padding-left: 0;
	padding-right: 0;
}
  

@media only screen and (min-width: 1320px) and (max-width: 1380px)
{
.testimonialcontainer {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 0px;
    padding-left: 9% !important;
}
}

.swiper-button-disabled .circle{
	/* background-color: #0000001c; */
}

.w-100{
  
	height: 310px !important;
	
  }
  
  
  @media(max-width: 768px){
     .w-100{
		  height: 1015px !important;
	   }    

	   #howitwork{
		padding: 0px 0;
	   }

	   .testimonital{
		padding: 0px 0 !important;
	   }
	   .multiplatformdiv{
		padding-right: 24px;
		padding-left: 24PX;
	   }

	   .reportingformdiv
	   {
		padding-right: 35px;
		padding-left: 35PX;
	   }
	   .home-apps__section{
		margin-bottom: 0px !important;
	   }
.Featurestabs-English{
	   padding: 28px 0;
	}

	.mobilefollowbutton{
		margin-top:-24px;
		
	}

	.desktopmegafooter{
		display: none !important;
	}
	.mobilemegafooter{
		display: block !important;
	}
  }
  

.container img {
	object-fit: contain;
  /* or
	object-fit: cover; */
  } 
  
.footer-layout-1 .container .row{
	background: linear-gradient(to right, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));
	padding-top: 25px;
	padding-bottom: 25px;
	border-radius: 26px;

	margin-right: 0px;
    margin-left: 0px;
}

.megafooter{
	background: linear-gradient(to right, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));
	padding: 25px;
	
	border-radius: 26px;
}



.single-image {
    display: block;
    width: var(--width);
    height: var(--height);
    margin-bottom: 30px;
    --width: 100%;
    --height: auto;
    --mobileWidth: 100%;
    --mobileHeight: auto;
}
.has-parallax {
    will-change: transform;
}

@media  screen and (max-width: 1200px){
.wrapper-small {
    width: 950px !important;
}
}
@media  screen and (max-width: 992px){
.wrapper-small {
    width: 790px !important;
}
}
@media  screen and (max-width: 768px){
.wrapper-small {
   width: 88% !important;
}
}
@media  screen and (max-width: 576px){
.wrapper-small {
	width: 88% !important;
}
}

.wrapper-small {
    width: 65%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 100px;
}

.slideUp {
    will-change: transform;
}

/* arabic css */

:root {
	--arabic-regular:BrownLLAra-Regular;
	--arabic-light: BrownLLAra-light;
	--arabic-bold: BrownLLAra-Bold;
	--arabic-black: BrownLLAra-Black;
  }

  .arabicbtnfont{
	font-family: var(--arabic-bold) !important;
	
}

  .arabicbannerbtnfont{
	font-family: var(--arabic-bold) !important;
	padding: 6px 40px !important;
}


.arabiclanguageh2{
	font-family: var(--arabic-black) !important;
	font-size: 78px !important;
	direction: rtl;
}

.arabiclanguagepara{
	font-family: var(--arabic-regular) !important;
	font-size: 28px !important;
	direction: rtl;
}

.arabiccalh2{
    font-family: var(--arabic-regular) !important;
    font-size: 40px !important;
    text-align: right;
	direction: rtl;
}

.arabicdropdown{
	font-family: var(--arabic-regular) !important;
    font-size: 15px !important;
    max-width: 250px;
    text-align: right;
    margin-left: auto;
	direction: rtl !important;
    margin-right: 16px;
}

.emailplaceholderarabic{
	font-family: var(--arabic-regular) !important;
	font-size: 15px !important;
	 direction: rtl !important; 
	text-align: right;
	margin-left: auto;
}


.arabiccalpara{
	font-family: var(--arabic-regular) !important;
    font-size: 22px !important;
    max-width: 250px;
    text-align: right;
    margin-left: auto;
	direction: rtl;
}

.arabicbtngetstarted
{
	
    font-family: var(--arabic-bold);
	float: inline-end;
}

.arabictitlelist{
	font-family: var(--arabic-bold) !important;
	font-size: 40px !important;
}

.arabicofferings{
	font-family: var(--arabic-regular) !important;
	font-size: 25px !important;
	direction: rtl;
}

.arabicfeatures{
	font-size: 22px !important;
    font-family: var(--arabic-bold) !important;
	direction: rtl;

}

.arabichelpingmanage{
	font-family: var(--arabic-regular) !important;
	font-size: 28px !important;
	direction: rtl;
}

.arabicpowerfullheading{
	font-family: var(--arabic-regular) !important;
    text-align: right;
    margin-bottom: revert;
	direction :rtl;

}

.arabicpricingheading{
	font-family: var(--arabic-bold) !important;
	font-size: 48px !important;
	direction: rtl;
}

.arabicliteh2{
	font-family: var(--arabic-bold) !important;
}

.arabicrentalrev{
	font-family: var(--arabic-regular) !important;
	direction: rtl;
}


.arabicmobapp{
	font-family: var(--arabic-regular) !important;
	direction: rtl;
}

.arabicfeaturelist1{
	font-family: var(--arabic-regular) !important;
	float: right;
	margin: 40px 18px 20px !important;
	
}

.arabicfeaturelist1 li{
	float: inline-end !important;
}

.arabicfeaturelist1btn{
	background-image: url(../images/btnbackground-02.webp) !important;
	background-position: left !important;
	font-family: var(--arabic-bold) !important;
	background-position-y: 6px !important;
}

.arabicfeaturelist1btn span{
	margin-right: auto !important;
	margin-left: 78px !important;
}


.arabictaba {
    color: #07524D;
    padding: 20px;
    /* text-align: center; */
    /* background: aqua; */
    border-radius: 50px;
    /* display: inline-block; */
    display: flex;
}

.arabictaba p{
    margin-right: 25px;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 13px;
    line-height: normal;
    width: 350px;
    text-align: right;
	font-family: var(--arabic-light) !important;
	
}

.arabictaba h3{
    margin-right: 15px;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 20px;
    font-weight: bold;
    line-height: normal;
	font-family: var(--arabic-bold) !important;
	text-align: right;
}

.arabicfeaturesheading{
	font-family: var(--arabic-bold) !important;
}

.arabicfeaturesdescription{
	font-family: var(--arabic-regular) !important;
	direction: rtl;
}

.arabicglobaltouchtxt{
	font-family: var(--arabic-black) !important;
	text-align: right;
	direction: rtl;
}

.arabictestimonialtxt{
	font-family: var(--arabic-regular) !important;
	font-size: 14px !important;
	direction: rtl;

}

.arabictestimonialtxtnobody{
	font-family: var(--arabic-regular) !important;
	text-align: right !important;
	direction: rtl;

}

.downloadmodal
{
	max-width: 32% !important;
}

.arabictestimonialheadingnobody{
	font-family: var(--arabic-bold) !important;
	float: inline-end;
}

.arabictestimonialheading{
	font-family: var(--arabic-bold) !important;
	

}

.arabicdownloadsectiontxt{
	font-family: var(--arabic-regular) !important;
	text-align: right;
	direction: rtl;
}

.arabicdownloadseamless{
	font-family: var(--arabic-bold) !important;
	font-size: 17px !important;
	direction: rtl;

}

.arabicmanageyourproperty{
	font-family: var(--arabic-bold) !important;
	direction:rtl;
}

.arabictabfont{
	font-family: var(--arabic-regular) !important;
}

.arabicsubscribeheading{
	font-family: var(--arabic-black) !important;
    font-size: 15px !important;
    text-align: right;
	direction: rtl;
	padding-top: 10px;
}

.Subscribeemailarabic{
	margin-left : 37px !important;
}
.btnsubscribearabic{
	right: -77px !important;
} 

.arabicsubscribepara{
	font-family: var(--arabic-regular);
    font-size: 16px !important;
    text-align: right;
    width: 210px;
    margin-top: 12px !important;
    
    padding-right: 20px;
	direction: rtl;
}

.arabicbtnsubscribe{
	font-family: var(--arabic-regular);
}

.arabicfooterfont{
	font-family: var(--arabic-regular);
}

.arabicchangerow{
	text-align: right;
}

.arabicbtnngetesitimate{
	font-family: var(--arabic-bold);
	direction: rtl;
}
.arabicyouwillearn{
	font-family: var(--arabic-light);
	text-align: right;
}

.arabiccalculateemail{
	font-family: var(--arabic-regular);
	text-align: right;
}

.arabicdropdown{
	direction: ltr;
    background-image: url(./images/downarrowicon.webp);
    background-repeat: no-repeat;
    background-position: left center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* padding-left: 56px; */
    text-align: right;
    background-position-x: 2% !important;
	font-family: var(--arabic-regular);
}

.arabictitlelist{
 direction: rtl;
}

@media only screen and (max-width: 767px) {


	.arabictitlelist{
		font-size: 36px !important;
	}


	.arabicsubscribepara{
		font-family: var(--arabic-regular);
		font-size: 16px !important;
		text-align: center !important;
		display: contents !important;
		width: fit-content;
		margin-top: 0px !important;
		
		padding-right: 0px ;
	}

	.arabicfooterfont{
		font-family: var(--arabic-regular);
		font-size: 16px !important;
	}

	.arabicsubscribeheading{
		

		margin-top: 25px !important;
		text-align: center;
		padding-top: 0px;
	}

	.arabicglobaltouchtxt{
		margin-left: auto !important;
	}
	.arabicmanageyourproperty{
		font-family: var(--arabic-bold) !important;
		text-align: right !important;
		font-size: 27px !important;
		margin-right: 12px;
		direction:rtl;
	}

	.downloadmodal
{
	max-width: 80% !important;
}
	.arabicdownloadseamless{
		font-size: 15px !important;
		text-align: right !important;
		direction:rtl;
	}

	.arabiclisting-icon3{
		margin-left: 0px !important;
		margin-right: 7px !important;
	}
	.arabictaba p{
		width: auto;
	}

	.arabicbannerbtnfont{
		
		padding: 8px 30px !important;
	}

	
.arabiclanguageh2{
	
	font-size: 32px !important;
}

.arabiclanguagepara{
	
	font-size: 20px !important;
}

.arabiccalh2{
    
    font-size: auto !important;
    direction: rtl;
}

.arabiccalpara{
	
    font-size: auto !important;
    direction: rtl;
}

.arabicbtngetstarted
{
	font-size: auto !important;
	direction: rtl;
    
}

.arabictitlelist{
	
	font-size: auto !important;
}

.arabicofferings{
	
	font-size: auto !important;
	direction: rtl;
}

.arabicfeatures{
	font-size: 15px !important;
   
}

.arabicpowerfullheading{
	margin-top: 32px;
}

.arabichelpingmanage{
	
	font-size: auto !important;
}



.arabicpricingheading{
	
	font-size: 33px !important;
	direction: rtl !important;
}









.arabictaba p{
   
    font-size: auto;
    
}

.arabictaba h3{
  
    font-size: auto;
   
}

.pricing-body ul li{
	font-size: 16px ;
}
}


.invalid{
	border: 3px solid red !important;
}

.successerrormsg{
	text-align: center;
    background-color: #07524D;
    color: #fff;
    padding: 25px;
    border-radius: 26px;
    font-size: 16px;
    font-weight: bolder;
}


#investorplan .row{


	max-width: 100%;
    margin: 0 auto;
	background: linear-gradient(to right, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));
    height: auto;
    padding: 30px;
    position: relative;
	border-radius: 25px;
}

#signup{
 max-width: 800px !important;
}

.gradient-box {
	
	align-items: center;
	
  
	position: relative;
	
	box-sizing: border-box;
  
	border: 5px;
	color: inherit;
	background: #fff;
	background-clip: padding-box; 
	border: 5px solid transparent; 
	border-radius: 1em;
  
	&:before {
	  content: '';
	  position: absolute;
	  top: 0; right: 0; bottom: 0; left: 0;
	  z-index: -1;
	  margin: -5px; 
	  border-radius: inherit; 
	  background: linear-gradient(to right,rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));
	}
  }
  

  .vr-blurry {
    /* --mdb-divider-blurry-vr-bg-image: linear-gradient(to bottom, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20));; */
    --mdb-divider-blurry-vr-width: 1px;
    --mdb-divider-blurry-opacity: 0.25;
    /* background-image: var(--mdb-divider-blurry-vr-bg-image); */
	background-color: #00c9ff;
    width: 1px;
    opacity: 1;
}
.vr {
    --mdb-divider-width: 2px;
    --mdb-divider-bg: #f5f5f5;
    --mdb-divider-opacity: 1;
    width: 1px;
    background-color: #f5f5f5;
    opacity: var(--mdb-divider-opacity);
}
@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.h-100 {
    height: 100% !important;
}
.end-0 {
    right: 0 !important;
}
.top-0 {
    top: 0 !important;
}
.position-absolute {
    position: absolute !important;
}
.d-none {
    display: none !important;
}
.vr {
	display: inline-block;
    align-self: stretch;
    width: 4px;
    min-height: 1em;
    background-color: #81DDCE;
    opacity: .65;
    border-radius: 101px;
}

.position-relative {
    position: relative !important;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}


.fadetab{
	transition: opacity .25s ease-in;
}

input[type="email"]::placeholder{
	color: #07524D !important;
}

#signup .mfp-close {
    
    right: 25px !important;
    
}

#signup {
    
    padding: 0px !important;
    
}

#signup .myaccount-form{
	/* position: absolute; */
    margin-top: 25px;
	padding-left: 15px;
    padding-right: 15px;
}

.signupfield{
	 background: linear-gradient(to right, rgba(231, 154, 148, 0.20), rgba(129, 221, 206, 0.20)) !important;
	 border-radius: 12px;
	 color: #07524D !important;
	 font-size: 14px !important;
}

.signupimg{
	background: #f5f7fa url(../images/bgimagebanner-min.webp) no-repeat right 14% bottom;
    background-size: auto 100%;
    background-size: cover;
    background-position: bottom;
	-webkit-border-radius: 41px;
	-moz-border-radius: 41px;
	border-radius: 41px;
}

@media screen and (max-width: 768px) {
   .signupimg{
	display: none;
   }
   .signupbtn{
	margin-left: auto;
	margin-right: auto;
   }
   .livedincustombtn span {
	font-size: 26px;
    margin-right: 40px !important;
    padding-left: 12px !important;
}
.appfeaturess{
	font-size: 16px !important;
}

}



.livedincustombtn{
    display: inline-block;
    /* font-size: 20px; */
    font-weight: 500;
    color: #fff;
    position: relative;
    /* padding-bottom: 2px; */
    /* padding: 10px 90px; */
    background: #81DDCE;
    border-radius: 50px;
    /* padding: 15px 5px; */
    padding-top: 15px;
    padding-bottom: 15px;
	padding: 5px;
    border: 0px;
    background-image: url(../images/btnbackground.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    background-position-y: 6px;
    background-color: #EB9481;

	
}

.livedincustombtn span {
	font-size: 26px;
	margin-right: 100px;
	padding-left: 20px;
}


@media only screen and (max-width: 380px){
	.banner-layout-1 .header-content h2
	{
		/* font-size: 32px !important; */
	}
	.download-app-layout-1 .download-entry h2
	{
		font-size: 32px !important;
	}
	.titlelist{
		font-size:  32px !important;
	}
	.powerfullheading
	{
		font-size:  32px !important;
	}
	.mobpriceheading{
		font-size:  32px !important;
	}
	.SocialTrust_titleArea__K1INE h5{
		font-size:  32px !important;
	}
	.manageyourproperty{
		font-size:  32px !important;
		text-align: center;
	}
	.subscribeheading{
		font-size:  32px !important;
	}
}


.textprivacypolicy p{
	color: #07524D;
	text-align: justify;
}

.textprivacypolicy h5{
	color: #07524D;
}

.textprivacypolicy  li{
	color: #07524D;
}

.whatsappbtn{
	margin-left: 36px;
}