	*{
		box-sizing: border-box;
		-webkit-box-sizing:border-box;
		margin: 0; padding: 0; outline: none;
	}
	a{text-decoration: none;}
	table{border-collapse: collapse; border-spacing: none;}
	ul{list-style: none;}
	body{line-height: normal; overflow-x: hidden;}
	html{background: #fff;}
	.container{
		width: 900px;
		margin: 0 auto 0 auto;
	}
	/* BREAK */



	header{
		position: absolute;
		width: 100%;
		left: 0; top: 0;
		z-index: 20;
		padding: 20px 0;
	}
	header a.logo{
		float: left;
	}
	header a.logo img{
		float: left;
		width: 140px; height: auto;
	}

	.menu{
		float: right;
	}
	a.showmenu, a.hidemenu{
		display: none;
	}
	nav{}
	nav ul{}
	nav ul li{
		float: left;
		margin-right: 20px;
	}
	nav ul li:last-child{
		margin-right: 0;
	}
	nav ul li a{
		float: left;
		text-align:left;
		color:#000;
		font-size:13px;
		font-family:'Inter';
		text-transform: uppercase;
		margin:0 0 0 0;
		padding: 8px 20px;
		border-radius:25px; -webkit-border-radius:25px;
		transition:0.3s; -webkit-transition:0.3s;
	}
	nav ul li:hover a{
		background: #0d90f5;
		color: #fff;
	}
	header .container{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	/* BREAK */



	.banner{
		float:left;
		width:100%;
		margin:80px 0 0 0;
		padding:0 0 0 0;
	}
	.bannerbox{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:150px 60px;
		background: url(images/bannerbg.jpg) no-repeat center;
		background-size: cover;
		border-radius:15px; -webkit-border-radius:15px;
		position: relative;
		z-index: 1;
		overflow: hidden;
	}
	.bannerbox:before{
		position: absolute;
		width: 100%; height: 100%;
		z-index: -1;
		content: '';
		left: 0; top: 0;
		background: linear-gradient(to right, rgba(13,144,245,0.7), rgba(0,0,0,0));
	}
	.bannerbox .text{
		float: left;
		width: 70%;
		margin: 0 0 0 0;
	}
	.bannerbox .text h2{
		text-align:left;
		color:#fff;
		font-size:48px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}
	.bannerbox .text h3{
		text-align:left;
		color:#fff;
		font-size:24px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 0 0;
	}
	/* BREAK */




	.services{
		float:left;
		width:100%;
		margin:30px 0;
		padding:0 0 0 0;
	}
	.services h2{
		text-align:left;
		color:#000;
		font-size:48px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}
	.servicesitems{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:0 0 0 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 5%;
	}
	.servicesitems .item{
		float: left;
		width: 30%;
		margin: 0 0 45px 0;
		overflow: hidden;
		border-radius:15px; -webkit-border-radius:15px;
		position: relative;
		z-index: 1;
	}
	.servicesitems .item:before{
		position: absolute;
		width: 100%; height: 100%;
		left: 0; top: 0;
		background: linear-gradient(to top, rgba(13,144,245,0.7), rgba(0,0,0,0.3));
		/*background:rgba(0,0,0,0.5);*/
		content:'';
		z-index:1;
	}
	.servicesitems .item:hover:before{
		background: linear-gradient(to top, rgba(13,144,245,0.7), rgba(0,0,0,0.3));
	}
	.servicesitems .item img{
		float: left;
		width: 100%; height: auto;
		margin: 0 0 0 0;
		aspect-ratio: 2/2.5;
		object-fit: cover;
		object-position: center;
		position: relative;
		z-index: -1;
	}
	.servicesitems .item .text{
		position: absolute;
		left: 0; bottom: 0;
		width: 100%;
		z-index: 5;
		padding:30px;
	}
	.servicesitems .item .text h3{
		text-align:left;
		color:#fff;
		font-size:24px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}
	.servicesitems .item .text p{
		text-align:left;
		color:#fff;
		font-size:13px; line-height: 130%;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 0 0;
	}
	/* BREAK */





	.about{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:0 0 0 0;
	}
	.aboutbox{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:30px;
		background: #0d90f5;
		border-radius:15px; -webkit-border-radius:15px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.aboutbox .text{
		float: left;
		width: 45%;
		margin: 0 0 0 0;
	}
	.aboutbox .text h2{
		text-align:left;
		color:#fff;
		font-size:48px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 30px 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #fff;
	}
	.aboutbox .text h3{
		text-align:left;
		color:#fff;
		font-size:21px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}
	.aboutbox .text p{
		text-align:left;
		color:#fff;
		font-size:14px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}
	.aboutbox .image{
		float: left;
		width: 45%;
		margin: 0 0 0 0;
		position: relative;
		z-index: 1;
	}
	.aboutbox .image:before{
		position: absolute;
		width: 100%; height: 100%;
		left: 0; top: 0;
		background: linear-gradient(to left, rgba(13,144,245,0.7), rgba(0,0,0,0));
		/*background:rgba(0,0,0,0.5);*/
		content:'';
		z-index:1;
	}
	.aboutbox .image img{
		float: left;
		width: 100%; height: auto;
		margin: 0 0 0 0;
		border-radius:15px; -webkit-border-radius:15px;
		aspect-ratio: 2/2;
		object-fit: cover;
		object-position: center;
	}
	/* BREAK */






	.testimonials{
		float:left;
		width:100%;
		margin:50px 0;
		padding:0 0 0 0;
	}
	.testimonials h2{
		text-align:left;
		color:#000;
		font-size:48px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 20px 0;
	}


	
	.tsliderwrap{
		float:left;
		width:100%;
		position: relative;
	}
	.tslider{}
	.tslide{}
	.tslidecontent{
		float:left;
		width:100%;
		padding: 0 100px;
	}
	.tslidecontent img{
		display: table;
		width: 100px; height: auto;
		aspect-ratio: 1/1;
		object-fit: cover;
		object-position: center;
		margin: 0 auto 30px auto;
		border-radius:50%; -webkit-border-radius:50%;
	}
	.tslidecontent p{
		text-align:center;
		color:#000;
		font-size:14px;
		font-family:'Inter';
		margin:0 0 30px 0;
	}
	.tslidecontent p strong{
		font-weight: bold;
	}


	.tsliderwrap .bx-wrapper {
	  border:none !important;
	  background: none !important;
	}
	.arrowleft, .arrowright{
		position: absolute;
		width: 42px; height: 42px;
		line-height: 42px;
		text-align:center;
		color:#fff;
		font-size:24px;
		margin:0 0 0 0;
		background:rgba(0,0,0,0.9);
		border-radius:50%; -webkit-border-radius:50%;
		z-index: 3;
	}
	.arrowleft{
		left: 0; top: 0; bottom: 0; margin: auto;
	}
	.arrowright{
		right: 0; top: 0; bottom: 0; margin: auto;
	}
	/* BREAK */






	.contact{
		float:left;
		width:100%;
		margin: 0 0 0 0;
		padding: 0 0 0 0;
	}
	.contactbox{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:80px 40px;
		background: #a1c9e7;
		border-radius:15px; -webkit-border-radius:15px;
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		align-items: center;
		gap: 10%;
	}
	.contactbox .image{
		float: right;
		width: 45%;
		position: relative;
		z-index: 1;
		overflow: hidden;
		border-radius:15px; -webkit-border-radius:15px;
	}
	.contactbox .image img{
		float: right;
		width: 100%;
		height: auto;
		aspect-ratio: 4/4;
		object-fit: cover;
		object-position: center;
	}
	.contactbox .image:before{
		position: absolute;
		width: 100%; height: 100%;
		left: 0; top: 0;
		background: linear-gradient(to left, rgba(13,144,245,0.7), rgba(0,0,0,0));
		/*background:rgba(0,0,0,0.5);*/
		content:'';
		z-index:1;
	}
	.contactbox .text{
		float: left;
		width: 45%;
	}
	.contactbox .text h2{
		text-align:left;
		color:#000;
		font-size:48px;
		font-family:'Inter';
		font-weight: normal;
		margin:0 0 30px 0;
		padding-bottom: 30px;
		border-bottom: 1px solid #000;
	}
	.contactbox .text p{
		text-align:left;
		color:#111;
		font-size:14px;
		font-family:'Inter';
		margin:0 0 10px 0;
	}
	/* BREAK */






	footer{
		float:left;
		width:100%;
		margin:0 0 0 0;
		padding:40px 0;
	}
	footer .copyright{
		float: left;
		text-align:left;
		color:#000;
		font-size:14px;
		font-family:'Inter';
		margin:0 0 0 0;
	}
	footer .copyright a{
		color: #000;
		border-bottom: 1px solid #000;
	}
	footer .social{
		float: right;
		margin:0 0 0 0;
	}
	footer .social a{
		float: left;
		text-align:left;
		color:#000;
		font-size:16px;
		margin:0 10px 0 0;
	}
	footer .social a:last-of-type{
		margin-right: 0;
	}
	footer .social a:hover{
		color: #000;
		border-bottom: 1px solid #000;
	}
	/* BREAK */