@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
html{
	scroll-behavior: smooth;
}
body{
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;

}
p{
	font-size: 14px;
	color: #777;
}
h1{
	
	font-size: 3.0rem;
	font-weight: 600;
}
h2{
	font-weight: 600;
	font-size: 2.5rem;

}
h4{
	font-size: 1.2rem;
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
ul{
	list-style-type: none;
	padding-left: 0px;

}


.container{
	max-width: 1200px;
}
.upper-header{
	background-color: #2f70b4;
	width: 100%;
	height: 45px;
	padding-top: 7px
}
.upper-header-flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.upper-header-flex .left-tiles ul li{
	display: inline-block;
	margin-right: 20px;
}
.upper-header-flex .left-tiles ul li a span{
	font-size: 14px;
	color: #f5f5f5;
	font-weight: 400;
}
.upper-header-flex .left-tiles ul li a img{
	max-width: 25px
}
.upper-header-flex .right-tiles ul li a span{
font-size: 14px;
	color: #f5f5f5;
	font-weight: 600;
}
/*
header*/
header
{
	width: 100%;
	background-color: #fff;
	position: relative;
}
.header-inner{
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	width: 100%;
	z-index: 1000;
}
.navbar-brand img{
	max-width: 200px;
}
.header-inner .nav-item .nav-link{
	color: #101010;
	font-weight: 500;
	margin-left: 20px;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition:.5s;
}
.header-inner .active .nav-link{
	color: #12b6e9;
	font-weight: 500;
	margin-left: 20px;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition:.5s;
}
.header-inner .nav-item .nav-link:hover{
	color: #12b6e9;
}

/*hero area*/
.hero-area{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/banner.jpg);
	height: 100vh;
	background-position: center center;
	position: relative;
}
.banner-caption{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	max-width: 600px
}
.banner-caption span{
	color: #fff;
	letter-spacing: 5px;
	font-weight: 500;
	font-size: 15px;
}
.banner-caption h1{
	color: #fff;
	font-weight: 600;
	line-height: 50px;
	margin-top: 30px;
}
.banner-caption p{
	color: #fff;
	margin-top: 20px;
	line-height: 25px;
}
.banner-btn{
	text-align: center;
	margin-top: 30px;
}
.banner-btn a{
	display: inline-block;
	margin-left: 15px;
	margin-right: 15px;
}
.btn:focus{
	box-shadow: none;
	outline: none;
	border:none;
}
.btn-solid{
	background-color: #fff;
	outline: none;
	border:2px solid #fff;
	color: #777;
	padding: 15px 30px 15px 30px;
	border-radius: 30px;
	font-weight: 500;

}

.btn-outline{
	background-color: transparent;
	outline: none;
	border:2px solid #fff;
	color: #fff;
	padding: 15px 30px 15px 30px;
	border-radius: 30px;
	font-weight: 500;
	

}
.btn-outline:hover{
	background-color: #fff;
	outline: none;
	border:2px solid #fff;
	color: #777;
	padding: 15px 30px 15px 30px;
	border-radius: 30px;
	font-weight: 500;
}
.section-padding{
	padding-top: 40px;
	padding-bottom: 40px;
}
.section-title-small h4{
  color: #777;
  font-size: 14px;
  letter-spacing: 5px;
} 
.section-title-small h4 span{
	background-color: #12b6e9;
	border-radius: 30px;
	padding: 4px 10px 4px 10px;
	color: #fff;
}
.slide-item {
	max-width: 150px;
	max-height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
		padding: 8px 20px 8px 20px;
	text-align: center;
	margin-top: 30px;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition:.5s;
}
.slide-item:hover{
	border-radius: 30px;
	padding: 8px 20px 8px 20px;
	-webkit-box-shadow: 1px 0px 55px 0px rgba(168,228,247,1);
-moz-box-shadow: 1px 0px 55px 0px rgba(168,228,247,1);
box-shadow: 1px 0px 55px 0px rgba(168,228,247,1);
}
.slide-item img{
	opacity: 70%!important;
	 -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
	max-width: 100%;
	max-height: 100%
}

 .slide-company .owl-stage-outer {
    height: calc(100% + 30px);
    margin: -15px;
    padding: 15px;
    width: calc(100% + 0px);
}
.slide-company{
	border-bottom: 1px solid #d2d2d2;
	padding-bottom: 20px;
}
.section-title h2{
	color: #101010;
	font-weight: 400;
	font-size: 25px;
}
.section-title h2 span{
	font-weight: 600;
    color: #101010;
    border-bottom: 1px solid #101010;
    padding-bottom: 5px;
}
.services-container{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    margin-top: 30px;

}
.services-item{
	padding: 25px;
	max-width: 230px;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition: .5s
}

.services-item:hover{
-webkit-box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
-moz-box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
}
.services-item:hover .services-titles-des a{
	border:1px solid #777;
	border-radius: 30px;
	padding: 5px 15px 5px 15px;
	color: #12b6e9;
}
.services-item .services-img{
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
}
.services-item .services-img img{
	max-width: 100%;
	max-height: 100%;
}
.services-item .services-titles-des h4{
  color: #101010;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
}
.services-item .services-titles-des a {
	color: #777;
	font-size: 14px;
	margin-top: 20px;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition: .5s

}
.services-item .services-titles-des p{
	margin-top: 15px;
}

/*profession*/
.bg-gray-area{
	background-color: #f4f7f6;
}
.middle-left{
	max-width: 800px;
	margin-right: auto;
}
.section-title p{
	margin-top: 20px;
	font-size: 14px;

}
.port-filio-item{
  -webkit-transition:.5s;
  -moz-transition:.5s;
  transition:.5s;
  margin-top: 30px;
}
.port-filio-item:hover{
	-webkit-box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
-moz-box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
box-shadow: 1px 0px 34px 0px rgba(168,228,247,1);
}
.port-filio-item img{
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center center;
}
.port-filio-item .portfolio-details {
	background-color: #fff;
	padding:10px;
}
.port-filio-item .portfolio-details  span{
	color: #777;
	font-size: 14px;
}
.btn-sloid-theme-redius{
	background-color: #12b6e9;
	border-radius: 30px;
	padding: 10px 15px 10px 15px;
	color: #fff;
	font-size: 14px;
	outline: none;
	border:none;
	width: 150px;

}
.btn-sloid-theme-redius:hover{
	background-color: #0f9ecb;
	color: #fff;
}
.btn-area{
	margin-top: 30px;
}
.section-title-side h2{
	line-height: 40px;
	margin-top: 30px;
}
.section-title-side span{
	color: #777;
	
}
.testimonials-item{
	margin-top: 30px;
	background-color: #fff;
-webkit-box-shadow: -3px 12px 16px 0px rgba(227,248,255,1);
-moz-box-shadow: -3px 12px 16px 0px rgba(227,248,255,1);
box-shadow: -3px 12px 16px 0px rgba(227,248,255,1);

padding: 20px;
}

 .testimonials-slider .owl-stage-outer {
    height: calc(100% + 30px);
    margin: -15px;
    padding: 15px;
    width: calc(100% + 0px);
}
.testimonials-author {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 25px;
}
.testimonials-img img{
	border-radius: 50%;
	object-fit: cover;
	object-position: center center;
	width: 50px!important;
	height: 50px!important;
}
.testimonial-txt{
	margin-left: 20px;
}
.testimonial-txt span{
	display: block;
	line-height: 20px;
}
.testimonial-txt span:first-child {
	color: #12b6e9!important;
	font-size: 14px;
}
.testimonial-txt span:nth-child(2){
	color: #777;
	font-size: 14px;
}

/*mid banner*/
.mid-banner-area{
	background-image: url(../images/mid-banner.jpg);
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.banner-side-txt{
	max-width: 200px;
}
.banner-side-txt h2{
	color: #fff;
	font-weight: 600;
	font-size: 50px;
	margin-top: 25px;

}
.banner-side-txt a{
   margin-top:25px;
}
.btn-outline-radius{
	border:1px solid #fff;
	border-radius: 30px;
	padding: 10px 30px 10px 30px;
	color: #fff;
	font-size: 14px;
}
.btn-outline-radius:hover{
	background-color: #fff;
	color: #12b6e9;
}
.banner-side-txt span{
	color: #fff;
	font-size: 14px;
}
.parent div img{
	width: 100%;
}
.parent {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(3, 1fr);
grid-column-gap: 20px;
grid-row-gap: 20px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 4 / 2 / 5; }
.div3 { grid-area: 2 / 1 / 4 / 2; }
.div4 { grid-area: 3 / 2 / 4 / 3; }
.div5 { grid-area: 3 / 3 / 4 / 4; }
.div6 { grid-area: 3 / 4 / 4 / 5; }
.div7 { grid-area: 2 / 4 / 3 / 5; }
.div8 { grid-area: 1 / 2 / 3 / 4; }

.div-gallery{
	position: relative;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition:.5s;
}
.div-gallery .gallery-overly{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(111, 205, 215, 0.5); 
	opacity: 0;
	-webkit-transition:.5s;
	-moz-transition:.5s;
	transition:.5s;
}
.div-gallery:hover .gallery-overly{
  opacity: 1;
}
.div-gallery .gallery-overly a{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	text-align: center;
	font-size: 18px;
}
/*footer*/
footer{

	background-color: #32323b;
	width: 100%;
}
.title-light h2,
.title-light span{
	color: #fff!important;
	border-color: #fff!important;
}
.title-width{
	max-width: 350px;
}
.title-light p{
	color: #fff;
	font-size: 14px;
}
.upper-footer-flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #777;
	padding-bottom: 30px;
}
.footer-form{
	min-width: 350px;
	position: relative;
}
.footer-form input[type="email"]{
  width: 100%;
  border-radius: 30px;
  padding: 15px 20px 15px 20px;
  border:none;
  outline: none;
  background-color: #fff;
}
.footer-form input::focus{
	outline: none;
	box-shadow: none;
}
.footer-form button{
   background-color: transparent;
   outline: none;
   border:none;
   position: absolute;
   right: 10px;
   top: 6px
}
.footer-form button img{
	max-width: 60px;
}
.main-footer{
	padding-top: 30px;
}
.footer-img img{
	max-width: 220px;
}
.footer-content{
	margin-top: 20px;
}
.footer-content p{
	color: #777;
	font-size: 14px;
}
.copy-wright-area {
	margin-top: 20px;
}
.copy-wright-area span{
	color: #fff;
	font-weight: 500;
	font-size: 14px;
}
.copy-wright-area a{
	color: #fff;
}
.footer-item .footer-header h4{
	color: #fff;
	font-weight: 500;
	letter-spacing: 4px;
	text-transform: uppercase;
	font-size: 15px;
}
.footer-item .footer-header{
	position: relative;
}
.footer-item .footer-header::after{
	position: absolute;
	content: "";
	width: 40px;
	height: 1px;
	background-color: #fff;
	bottom: -15px;
}
.footer-item .footer-content ul{
	list-style-type: none;
	padding-left: 0px;
	margin-top: 30px;
}
.footer-item .footer-content ul li{
	display: block;
	line-height: 30px;
}
.footer-item .footer-content ul li a{
	color: #f5f5f5;
	font-size: 14px;
	text-transform: uppercase;
}
/*
about*/
.about-inner-banner{
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 80vh;
}
.about-banner-caption{
	max-width: 400px;
	position: absolute;
	top: 30%;
}
.about-banner-caption h1{
	color: #ffffff;
	font-weight: 600;

}
.about-banner-caption p{
	color: #fff;
	font-size: 14px;
	margin-top: 20px;
}
.about-banner-caption .btn-flex{
	display: flex;
	justify-content: flex-start;
	margin-top: 20px;
}
.about-banner-caption .btn-flex a{
	margin-right: 15px;
}
.btn-solid-sm{
    background-color: #fff;
	outline: none;
	border:2px solid #fff;
	color: #777;
	padding: 8px 20px 8px 20px;
	border-radius: 30px;
	font-weight: 500;
}


.btn-outline-sm{
	background-color: transparent;
	outline: none;
	border:2px solid #fff;
	color: #fff;
	padding: 8px 20px 8px 20px;
	border-radius: 30px;
	font-weight: 500;
	

}
.btn-outline-sm:hover{
	background-color: #fff;
	outline: none;
	border:2px solid #fff;
	color: #777;
	padding: 8px 20px 8px 20px;
	border-radius: 30px;
	font-weight: 500;
}
.color-text h2,
.color-text span{
	color: #12b6e9!important;
}
.color-text h2 span{
	
    border-bottom: 1px solid #12b6e9!important;
}
.section-title-heading {
	margin-top: 20px;
}
.section-title-heading p{
	color: #101010;
	font-weight:500;
	font-size: 25px;
	line-height: 30px;
}
.middle-width{
	max-width: 800px;
	margin: auto;
}
.about-content-area{
	max-width: 900px;
	margin: 30px auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}
.year-area{
	width: 100px;
	text-align: center;
}
.about-content-area .year-area h1{
	color: #12b6e9;
	font-size: 60px;

}
.about-content-area .year-area span{
	color: #12b6e9;
	font-size: 14px;
	text-transform: uppercase;
}
.about-content-area .content{
	max-width: 700px;
	margin-left: 20px;
}
.features-tiles{
	margin-top: 40px;
}
.features-tiles:first-child{
		margin-top: 0px;
}
.features-tiles h4{
	color: #2f70b4;
	font-weight: 500;
	font-size: 25px;

}
.features-tiles p{
	margin-top: 15px;
}
.parent-abt-grid{
	display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-column-gap: 5px;
grid-row-gap: 5px;
position: relative;
z-index: 100;
}

.parent-abt-grid .div1 { grid-area: 1 / 2 / 2 / 3; }
.parent-abt-grid .div2 { grid-area: 2 / 1 / 3 / 2; }
.parent-abt-grid .div3 { grid-area: 2 / 2 / 3 / 3; }
.parent-abt-grid .div4 { grid-area: 2 / 3 / 3 / 4; }

.parent-abt-grid .tiles-img img{
	width: 100%;
	
}
.parent-text-area {
	background-color: #13b6e9;
	padding: 30px;
	text-align: center;
	position: relative;
	margin-top: -10px;
}
.parent-text-area p{
	color: #fff;
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
}
.count-banner-area{
	background-image: url(../images/count-banner.jpg);
	width: 100%;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	padding-top: 100px;
	padding-bottom: 100px;
	background-size: cover;
}
.count-flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.count-box{
	text-align: center;
}
.count-box h1,
.count-box span{
	display: block;
	line-height: 50px;
}
.count-box span{
	color: #fff;
	font-size: 18px;
	text-transform: uppercase;
}
.count-box h1 {
	color: #fff;
	font-weight: 600;
	font-size: 80px;
}
.team-tiles{
	margin-top: 30px;
	position: relative;
}
.team-tiles img{
	width: 100%;
}
.team-tiles:hover .team-tiles-details{
    position: relative;
	top: -50px;
	right: -20px;
	-webkit-transition:.5s;
	-moz-transition:5s;
	transition: .5s;
}
.team-tiles .team-tiles-details{
	position: relative;
	top: -40px;
	right: -20px;
	-webkit-transition:.5s;
	-moz-transition:5s;
	transition: .5s;
}
.team-tiles .team-tiles-details h4{
	color: #101010;
}
.team-tiles .team-tiles-details img{
	width: 100%;
	  filter: brightness(120%);
   filter: contrast(120%);
   filter: drop-shadow(10px 10px 10px #d2d2d2);
}
.team-tiles .team-tiles-details .team-txt{
	position: absolute;
	top: 20px;
	left: 20px;
}
.team-tiles .team-tiles-details .team-txt h4,
.team-tiles .team-tiles-details .team-txt span{
	display: block;
	line-height: 15px;
}
.team-tiles .team-tiles-details .team-txt h4 {
	color: #13b6e9;
	font-weight: 600;
	font-size: 18px;
}
.team-tiles .team-tiles-details .team-txt span{
	color: #777;
	font-size: 14px;
}
.blue-area{
	background-color: #285b9a;
}
.blue-area-content{
	max-width: 900px;
	margin: auto;
	text-align: center;
}
.blue-area-content h4{
	color: #fff;
	font-weight: 600;

}
.blue-area-content h2{
	margin-top: 50px;
	color: #fff;
	font-size: 40px;
}
.blue-area-content a{
	margin-top: 30px;
}
.btn-solid-white{
	background-color: #fff;
	outline: none;
	border:none;
	border-radius: 30px;
	padding: 15px 30px 15px 30px;
    text-transform: uppercase;
    font-size: 15px;
    color: #101010;
    font-weight: 500;
}
.btn-solid-white:hover{
	background-color: #f5f5f5;
	outline: none;
	border:none;
	border-radius: 30px;
	padding: 15px 30px 15px 30px;
    text-transform: uppercase;
    font-size: 15px;
    color: #101010;
    font-weight: 500;
}



.we-do-details-bold h4{
	color: #0797b9;
	font-size:18px ;
}









.template-tiles img{
	width: 100%;
}
.template-tiles{
	margin-top: 30px;
	position: relative;
}
.template-tiles:hover .template-tiles-overly{
	opacity: 1;
}
.template-tiles-overly{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(2px);
      filter: blur(2px);
      transition: 0.5s ease;
	 /* Add the blur effect */
	 opacity: 0;
	 background-color: rgba(0,0,0,0.4);

}
 .templte-tiles-txt{
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	width: 250px;
	margin: auto;
	text-align: center;
	z-index: 100;
	 transition: 0.5s ease;
 }
 
 .template-tiles .templte-tiles-txt h4{
 	color: #fff;
 	font-weight: 600;
 	font-size: 25px;
 	margin-bottom: 30px;
 }
  .template-tiles .templte-tiles-txt {
  	opacity: 0;
  	transition: 0.5s ease;
  }

  .btn-solid-blue{
  	background:#13b6e9;
  	padding: 10px 20px 10px 20px;
  	border-radius: 30px;
  	outline: none;
  	border:none;
  	color: #fff;
  	font-size: 14px;
  	text-transform: uppercase;
  }
    .btn-solid-blue:hover{
    	background-color: #285b9a;
    	color: #fff;
    }
  .template-tiles:hover .templte-tiles-txt{
  	opacity: 1;
  }

  .we-do-txt h4{
  	color: #101010;
  	font-weight: 500;
  	font-size: 25px;
  }
  .we-do-txt .coloe-theme-txt p{
  	 color: #0797b9;
  	 font-size: 18px;
  	 font-weight: 500;
  	 margin-top: 25px;
  	 margin-bottom: 25px;
  }
  .btn-till-blue{
  	background-color: #0797b9;
  	color: #fff;
  	font-size: 15px;
  	outline: none;
  	border:none;
  	border-radius: 30px;
  	padding: 15px 50px 15px 50px;
  	text-transform: uppercase;
  	font-weight: 500;
  }

    .btn-till-blue:hover{
  	background-color: #0984a1;
  	color: #fff;
  
  }

  .wedo-banner{
  	width: 100%;
  	background-size: cover;
  	padding-top: 150px;
  	padding-bottom: 100px;
  	background-repeat: no-repeat;
  	background-position: center center;
  }
  .inner-banner-txt h1{
  	color: #fff;
  	font-weight: 600;
  	font-size: 40px;
  }
  .we-do-details-bold p{
  	color: #101010;
  	font-weight: 500;
  	font-size: 16px;
  }
  .wedo-manual{
  	margin-top: 30px;
  }
   .wedo-manual h4{
   	color: #0797b9;
   	font-size: 16px;

   }
   .we-do-list h4{
   	color: #0797b9;
   	 	font-size: 16px;
   }
   .wedo-manual i{
   	margin-top: 20px;
   }
   .wedo-manual p{
   	margin-top: 10px;
   }
    .wedo-manual i{
    	color: #777;
    }


   .we-do-listul{
	list-style: none;
     padding-left: 0;
}
.we-do-list ul li{
  color: #101010;	
  position: relative;
  padding-left: 1.5em;  /* space to preserve indentation on wrap */
  margin: 20px 0px 20px 0px;
  font-weight: 600;

}
.we-do-list ul :before{
	content: ' \2713'; 
  position: absolute;
  left: 0;  /* place the SVG at the start of the padding */
  width: 1em;
  height: 1em;
  font-weight: bold;
  color: #0797b9;
  top: 2px;
}

.collapse-accordian .card{
	margin-top: 20px;
} 
.collapse-accordian .card::first-child{
	margin-top: 0px
}

.collapse-accordian .card .card-header{
	background-color: #fff;

}
.collapse-accordian .card .card-header button{
	color: #101010;
	font-weight: 500;
	font-size: 15px;
	position: relative;
}
.collapse-accordian .card .card-header button:focus{
	outline: none!important;
	border:none!important;
}
.collapse-accordian .card .card-header .btn-block::after{
 position: absolute;
   content: "-";
   right: 10px;
   font-size: 18px;
}
.collapse-accordian .card .card-header .collapsed::after{
   position: absolute;
   content: "+";
   right: 10px;
   font-size: 18px;
}

.collapse-accordian .card .card-header 
.details-white-area{
	background-color: #fff;
	padding: 25px;
	margin-top: 30px;
}
.sub-body{
	margin-top: 15px;
}
.sub-body h4{
	color: #101010;
	font-weight: 500;
	font-size: 15px;
}
.collapse-accordian .card .card-body ul li{
  color: #101010;	
  position: relative;
  padding-left: 1.5em;  /* space to preserve indentation on wrap */
  margin: 20px 0px 20px 0px;
  font-weight: 400;
}

.collapse-accordian .card .card-body ul :before{
	content: ' \2713'; 
  position: absolute;
  left: 0;  /* place the SVG at the start of the padding */
  width: 1em;
  height: 1em;
  font-weight: bold;
  color: #0797b9;
  top: 2px;
}
.sub-body i{
	color: #777;
	font-size: 15px;

}
.sub-body p{
	margin-top: 15px;
}
.tes-txt{
	position: relative;
	margin-top: 20px;
}
.tes-txt img{
	position: absolute;
	left: 0px;
	top: -80px;
}
.tes-txt p{
	font-style: italic;
	font-size: 22px;
	font-weight: 500;
	color: #101010;
	margin-bottom: 20px;
}
.tes-txt .post h4{
	font-size: 14px;
	color: #101010;
}
.tes-txt .post h4 span{
	color: #e68a46;
}
.tes-img-tiles img{
	max-width: 100%;
}
.contact-form h4{
	color: #101010;
	font-weight: 500;
}
.contact-form label{
	color: #101010;
	font-weight: 500;
	font-size: 15px;
}
.contact-form .form-group{
	margin-top: 20px;
}
.contact-form input[type="text"],.contact-form input[type="email"]{
	width: 100%;
	outline: none;
	border:none;
	padding: 15px;
	border:1px solid #777;
	border-radius: 0px;
}
.contact-form  textarea{
	width: 100%;
	outline: none;
	border:none;
	padding: 15px;
	border:1px solid #777;
	border-radius: 0px;
}
.tiles-address{
	display: flex;
	justify-content: flex-start;
	align-items:  center;
	margin-top: 25px;
}
.tiles-address:first-child{
margin-top: 60px;
}
.tiles-address .tiles-icon{
	width: 60px;
	height: 60px;
	border:2px solid #285b9a;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	padding: 15px;
}
.tiles-address .tiles-icon img{
	max-width: 100%;
	max-height: 100%;
}
.tiles-text{
	margin-left: 20px;
}

.details-txt{
	margin-top: 25px;
}
.details-txt {
	max-width: 500px;
	margin: auto;
}
.details-txt  p{
	color: #000000;
	font-weight: 600;
}