body, html, h1, h2, h3, h4, h5, h6, p, a, ul, li{
	font-family: "Poppins", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}
header{
    padding: 15px !important;
	background: #fff;
	
}

.bnr-txt-safe{
	background: #e5f6f7;
	padding: 0 0 0 115px;
}

.hdr-tp-ctct{
	font-size: 18px;
	 font-weight: 700;
	color: #000;
	text-decoration: none;
	padding-right: 15px;
}

.hdr-tp-ctct img{
	width: 25px;
	margin-right: 10px;
	vertical-align: middle;
}

.hdr-tp-ctct:hover, .hdr-tp-ctct:focus{
	color: #0e426a;
	text-decoration: none;
}

.mrgtp{
	margin-top: 30px;
}

 .lgo img{
    height: 35px;
}





.icn-bx{
	text-align: left !important;
	margin: 10px 0 25px 0;
}  

.icn-bx p{
	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 25px !important;
}

.icn-bx span{
	font-size: 40px !important;
	color: #10acb8;
}

.icn{
	margin-bottom: 10px;
}

.icn-tit{
	font-size: 20px;
	font-weight: 600;
	color: #005181;
	padding-bottom: 5px;
}


.ctct-btn{
	float: right;
}

/* Bounce To Right */
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
	background: #005181;
	padding: 10px 35px;
	color: #fff;
	font-family: "Poppins", sans-serif !important;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.45px;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #10acb8;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  color: white;
	text-decoration: none;
}
.hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}




.bnr-min-txt{
	font-size: 40px;
	font-weight: 400;
	color: #005181;
	line-height: 50px;
	letter-spacing: 0.25px;
	padding-bottom: 10px;
}

.bnr-min-txt span{
	font-weight: 800;
	color: #10acb8;
	display: block;
}

.bnr-txt-safe p{
	font-size: 18px;
	font-weight: 400;
	color: #000;
	line-height: 30px;
}

.midile{
	padding: 70px 0 0px 0;
}

.abt-section{
	text-align: center;
	padding-bottom: 70px;
}

.abt-section h1{
	padding: 0 0 0 0;
	margin: 0 0 15px 0;
	font-size: 50px;
	font-weight: 700;
	color: #0e426a;
	
}

.abt-section h1 span{
	display: block;
	text-transform: uppercase;
	font-size: 20px;
	color: #10acb8;
	font-weight: 600;
	letter-spacing: 5px;
}

.abt-section p{
	font-size: 17px;
	font-weight: 500;
	color: #000;
	letter-spacing: 0.25px;
	margin: 0 0 20px 0;
	line-height: 30px;
}



.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
	width:100%;
}

.accordion .accordion-item {
  background-color: #e5f6f7;
  border: 1px solid #c4e9eb;
  border-radius: 5px;
}

.accordion .accordion-item .accordion-item-description-wrapper hr {
  border: none;
  border-top: 1px solid var(--border-color);
  visibility: visible;
}

.accordion .accordion-item.open .accordion-item-description-wrapper hr {
  visibility: visible;
}

.accordion .accordion-item .accordion-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  cursor: pointer;
	font-size: 18px;
	color: #0e426a;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-title {
  font-weight: 600;
}

.accordion .accordion-item .accordion-item-header .accordion-item-header-icon {
  transition: var(--transition);
}

.accordion
  .accordion-item.open
  .accordion-item-header
  .accordion-item-header-icon {
  transform: rotate(-180deg);
}

.accordion .accordion-item .accordion-item-description-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: var(--transition);
}

.accordion .accordion-item.open .accordion-item-description-wrapper {
  grid-template-rows: 1fr;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description {
  min-height: 0;
}

.accordion
  .accordion-item
  .accordion-item-description-wrapper
  .accordion-item-description
  p {
  padding: 10px;
  line-height: 1.5;
}

.accordion-item-description ul{
	list-style-type: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

.accordion-item-description ul li{
	font-size: 17px;
	font-weight: 500;
	color: #000;
	line-height: 27px;
	margin-bottom: 15px;
	margin-left: 40px;
}

.accordion-item-description ul li:before{
	content: "";
	width: 10px;
	height: 10px;
	border: 2px solid #f28f21;
	margin: 9px 0 0 -25px;
	border-radius: 100px;
	display: block;
	float: left;
}


.accordion-item-description p{
	font-size: 17px;
	font-weight: 400;
	color: #000;
}

.srv-sec{
	background: #e5f6f7;
	padding: 70px 0 70px 0;
}

.srv-sec h2{
	text-align: center;
	color: #005181;
	font-size: 45px;
	font-weight: 700;
}

.srv-sec p{
	text-align: center;
	font-size: 18px;
	color: #000;
	margin: 0 0 0 0;
}

.srv-sec p span{
	font-weight: 600;
}






.cl-out-sec{
	background: url("../images/cl-out-bg.jpg") repeat-x center center;
	padding: 100px 0 100px 0;
}

.hd4-tp{
	font-size: 17px;
	font-weight: 500;
	color: #fff;
}

.cl-out-sec h4{
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	line-height: 45px;
}

.cl-btn-safe{
	/*float: right;*/
	margin-top: 25px;
}


.cl-btn-safe a span{
    vertical-align: middle;
}




.faq-sec{
	padding: 70px 0 70px 0;
}

.faq-sec h2{
	font-size: 35px;
	font-weight: 700;
	color: #005181;
	padding: 0 0 15px 0
}


.srv-txt{
	font-size: 20px;
	padding: 20px 0 10px 0;
	font-weight: 600;
	color: #005181 !important;
	line-height: 25px;
}

.srv-bx-safe p{
	font-size: 15px;
	text-align: left;
	padding: 0 0 25px 0;
	min-height: 150px;
}



.cpy-rit{
	padding: 20px 0 15px 0;
}
.cpy-rit p{
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #404040;
	margin: 0 0 0 0;
}

.ftr-sec{
	padding: 70px 0 70px 0;
	background: #005181;
}

.ftr-sec h2{
	font-size: 45px;
	font-weight: 600;
	color: #fff;
	line-height: 55px;
}

.ftr-sec p{
	font-size: 17px;
	font-weight: 400;
	color: #fff;
	line-height: 30px;
}


/*right bottom whatsapp button*/

button.wh-ap-btn {
	outline: none;
	width: 60px;
	height: 60px;
	border: 0;
	background-color: #2ecc71;
	padding: 0;
	border-radius: 100%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
	content: "";
	background-image: url("//i.imgur.com/cAS6qqn.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 60%;
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
}

button.wh-ap-btn:hover {
	opacity: 1;
	background-color: #20bf6b;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 999;
}

.wh-fixed {
	margin-right: 15px;
	margin-bottom: 15px;
}

.wh-fixed > a {
	display: block;
	text-decoration: none;
}


/* animacion pulse */

.whatsapp-pulse {
	width: 60px;
	height: 60px;
	right: 10px;
	bottom: 10px;
	background: #10b418;
	position: fixed;
	text-align: center;
	color: #ffffff;
	cursor: pointer;
	border-radius: 50%;
	z-index: 99;
	display: inline-block;
	line-height: 65px;
}

.whatsapp-pulse:before {
	position: absolute;
	content: " ";
	z-index: -1;
	bottom: -15px;
	right: -15px;
	background-color: #10b418;
	width: 90px;
	height: 90px;
	border-radius: 100%;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	opacity: 0.6;
	-webkit-animation: pulse 1s ease-out;
	animation: pulse 1.8s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: scale(0.3);
		opacity: 1;
	}
	50% {
		-webkit-transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		-webkit-transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	25% {
		transform: scale(0.3);
		opacity: 1;
	}
	50% {
		transform: scale(0.6);
		opacity: 0.6;
	}
	75% {
		transform: scale(0.9);
		opacity: 0.3;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}



/*Contact us form start*/


.conttact-form-safe{
	padding: 15px;
	border: 1px solid #eaf0f6;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
-moz-box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
	width:100%;
	background: #fff;
}

.frm-titile{
	background: #10acb8;
	text-align: center;
	padding: 10px 10px;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

/*form {
  max-width: 550px;
  padding: 1rem;
  margin: 0 auto;
}*/

input, textarea {
  width: 100%;
  padding: .5rem;
  border: 1px solid silver;
	  font-family: "Poppins", sans-serif !important;
	font-size: 15px !important;
	font-weight: 400 !important;
}
input[type=submit] {
  padding: .5rem;
  border-radius: 0;
  background-color: #005181;
  cursor: pointer;
	color: #fff !important;
	font-weight: 600 !important;
	border: none !important;
	transition: all 0.2s ease-in-out;

}

input[type=submit]:hover, input[type=submit]:focus{
	background: #10acb8;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

label, small {
  font-size: 15px;
	font-weight: 400;
	color: #404040;
	margin-bottom: 0px !important;
}

/* ---------------- For Animation on Scroll ---------------- */
.slideanim {
    visibility:hidden;
    visibility:visible\9;/*For old IE browsers IE6-8 */
}
.slideanim.slide {visibility: visible; animation:slide 1s;}
.slideanim::after {
    /* useful when its child elements are float:left; */
    content: "";
    display: table;
    clear: both;
}

@keyframes slide {
    0% {
        opacity: 0;
        transform: translateY(50%);
    } 
    100% {
        opacity: 1;
        transform: translateY(0);
    } 
}


@media all and (max-width: 480px) {
    #phoneContent {display:none;}
}



.relatd-sec{
	padding: 70px 0 70px 0;
}

.relatd-sec h2{
	text-align: center;
	font-size: 40px;
	color: #005181;
	line-height: 45px;
	font-weight: 600;
	padding-bottom: 15px;
}



.prjct-bx-safe{
	padding: 15px 15px 25px 15px;
	border: 1px solid #eaf0f6;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
	margin-top: 25px;
	/*min-height: 665px;
	background: #fff;*/
}


.prjct-bx-safe p{
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	text-align:left;
	margin-bottom: 25px;
	min-height: 130px;
}

.prjct-bx-safe a{
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
}

.prjct-bx-safe a span{
	vertical-align: middle;
	padding-right: 10px;
}

.prjct-bx-safe a:hover, .prjct-bx-safe a:focus{
	color: #fff;
	text-decoration: none;
	
}





.prjct-bx-safe:hover{
-webkit-box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
-moz-box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
box-shadow: 0px 0px 36px 2px rgba(0,0,0,0.12);
	transition: all 0.2s ease-in-out;
	background: #fff;
}

.pjct-nm{
	font-size: 20px;
	font-weight: 700;
	color: #0e426a;
	line-height: 24px;
	padding: 25px 0 10px 0;
}

.wy-ussec{
	background: #fff;
	padding: 70px 0 70px 0;
}

.wy-ussec h2{
	font-size: 40px;
	color: #10acb8;
	font-weight: 600;
	line-height: 45px;
}

.txtRedBold{
	color: green !important;
}


  

