@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@font-face {
   font-family: myFirstFont;
   src: url(../css/fonts/Nexa-Bold.woff);
}
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.left-info
{
	padding-right: 20px;
}
body{
	overflow-x: hidden;
	background-color: #e4e5f4;
	  letter-spacing: 1px;
}

.container{
	max-width: 1130px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
.test-img
{
	
}
.info-abt
{
	margin-top: 2em;
}
/*header*/
/*.banner
{
	position: relative;
}*/
.line2
{
	height: 100px;
    width: 6px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 60px;
}
.wel-titl
{
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    line-height: 40px;
}
.logo-part
{
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 140px;
	padding: 10px;
}
.qult-div {
background-color: #2e4a95;
padding: 46px;
width: 78%;
margin: 0 auto;
position: absolute;
top: -120px;
z-index: 1;
left: 0;
right: 0;
}
.logo img
{
width: 300px;
}
.owl-theme .owl-nav
{
	    margin-top: 0px;
}
.header{
	position:absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 0px;
	margin-top: 15px;
}
.header-main{
	background-color:#f5821e;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 0;
	border-radius: 0px;
}
.header .logo{
	padding: 0 ;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
	margin: 0;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
display: inline-block;
margin-left: 0;
position: relative;
padding: 2px 14px;
transition: 0.5s all;
border-radius: 20px 20px 0 0;
}
.header .menu > .menu-item:hover
{
	background-color: #fff;
border-radius: 20px 20px 0 0;
}
.menu
{
	padding-right: 45px;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 10px 0 0 0;
	font-size: 16px;
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 450;
	transition: all 0.3s ease;
	font-family: 'Poppins', sans-serif;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
}
.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #e91e63;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color:#f5821e;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
	visibility: visible;
	opacity: 1;
}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #222222;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

.info
{
margin: 0;
padding: 0;
color: #214c6b;
font-weight: 400;
font-size: 17px;
letter-spacing: 0.5px;
font-family: 'Roboto', sans-serif;
line-height: 30px;
}
.info1
{
margin: 0;
padding: 0;
color: #fff;
text-align: center;
font-size: 17px;
font-weight: 400;
letter-spacing: 0.5px;
font-family: 'Roboto', sans-serif;
line-height: 30px;
}
.line
{
	background-color: #f5821e;
height: 5px;
width: 100px;
margin-bottom: 30px;
}
.title
{
	margin: 0;
	padding:0 0  20px 0;
	color: #2e4a95;
	font-family: 24px;
	font-family: 'Poppins', sans-serif;
}
.title1
{
	font-weight: 650;

}
.d-cnt
{
	display: flex;
	justify-content: center;
}
.sec-2
{
	margin: 0;
	padding: 15em 0 3em 0;
	background: #e4e5f4;
	position: relative;
}
.ser-div {
    margin-bottom:25px;
    transition: 0.5s all;
}
.info-sr-out {
    padding: 10px 0;
    background: #1f4e9c;
      transition: 0.5s all;
}
.info-sr-out-2 {
    padding: 10px 0;
    background: #ffffff;
      transition: 0.5s all;
}
.info-sr-t1 {
    margin: 10px 0;
    border-left: 4px solid #3baa58;
    padding: 0 20px;
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
}
.info-sr-t2 {
    margin: 10px 0;
    border-left: 4px solid #f5821e;
    padding: 0 20px;
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
}
.info-sr-t1 h2 {
      color: #3baa58;
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.ser-indie .owl-nav button.owl-prev
{
position: absolute;
left: -85px;
top: 180px;
background: #fff;
height: 35px;
width: 35px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
color: #2e4a95;
padding: 10px;
}
.ser-indie .owl-nav button.owl-next
{
position: absolute;
right: -85px;
top: 180px;
background: #2e4a95;
height: 35px;
width: 35px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
color: #fff;
padding: 10px;
}
.info-sr-t2 h2 {
      color: #1a3757;
    font-size: 18px;
    line-height: 24px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}
.service-slide .ser-div:hover .info-sr-out-2
{
	 background: #f5821e;
}
.ser-indie .owl-item.active.center h2{
   color: #fff;
}
.service-slide .ser-div:hover h2
{
	  color: #ffffff;
}
.service-slide .ser-div:hover .ar-2
{
background-color: #fff;
}
.ser-indie .owl-item.active.center .ar-2{
  background-color: #fff;
}

.service-slide .ser-div:hover .ar-2
{
	color: #f5821e;
}
.ser-indie .owl-item.active.center .ar-2{
  color: #f5821e;
}
.ser-indie .owl-item.active.center .info-sr-t2{
    border-left: 4px solid #2e4a95;
}

.service-slide .ser-div:hover .info-sr-t2
{
    border-left: 4px solid #2e4a95;
}
.ser-indie
{
	padding: 0 60px;
}
.ser-div
{
	padding: 0 0px;
	margin: 2em 0;
}

.ser-indie .owl-item.active.center {
    -webkit- transform: scale(1);
   transform: scale(1);
   background-color: transparent;
}

.ser-indie .owl-item.active.center .info-sr-out-2{
    background-color: #f5821e;
}

.ser-indie .active
{
	transform: scale(.9);
  	transition: .6s ease;
}
.ser-indie .info-sr-out-2.active {
padding: 10px 0;
transition: 0.5s all;
}
.client-logo-in
{
	margin-top: 1em;
	margin-bottom: 1em;
}
.client-logo
{
	padding-top: 1em;
	padding-bottom: 2em;
}
.client-logo .owl-theme .owl-nav {
    margin-top: 10px;
    /* left: -35px; */
    
}


.client-logo .owl-nav button.owl-prev {
    position: absolute;
    right: -68px;
    top: 27px;
      margin-bottom: 4px;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #294f96;

}
.client-logo .owl-nav button.owl-next {
    position: absolute;
    right: -68px;
    top: 74px;
    background: #294f96;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}
.ar-1 {
    background-color: #3baa58;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
}
.ar-2 {
    background-color: #1f4e9c;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    padding: 10px;
}
.tit-1
{
	margin: 0;
	padding:0 0  20px 0;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}
.tit-2
{
	margin: 0;
	padding:0 0  44px 0;
	color: #fff;
	font-size: 34px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
	font-family: 'Poppins', sans-serif;
}
.test
{
	background-color: #2e4a95;
	padding: 4em 0 0 0;
}
.footer {
    background-color: #ffffff;
    padding: 3em 0 1em 0;
}
.mb-t40 {
    margin-bottom: 30px;
}
.soc-lin {
    display: flex;
    justify-content: space-between;
}
.ri
{
	padding-left: 1em;
}
.sn-nm {
    font-family: myFirstFont;
    color: #101d12;
    font-size: 15px;
    font-weight: 550;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-left: 0px;
}
.footer-top-list-1 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    margin-top: 0px;
}
.footer-top-list-1 li {
    display: flex;
    margin-right: 30px;
}
.fa-icon {
    width: 30px;
    height: 30px;
    font-size: 17px;
    text-align: center;
    padding: 6px;
    color: #101d12;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid #101d12;
    margin-right: 6px;
}
.sn {
    color: #101d12;
    font-size: 23px;
    line-height: 15px;
    margin-top: 6px;
}
.foot-1 h2 {
      font-family: myFirstFont;
    color: #101d12;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.foot-1 p {
    font-family: 'Poppins', sans-serif;
    color: #101d12;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    margin: 0;
    letter-spacing: 0.5px;
}
.foot-1 h2 {
    font-family: myFirstFont;
    color: #101d12;
    font-size: 18px;
    font-weight: 550;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.fl-lt-list li {
    margin-bottom: 10px;
}
.soc-lin {
    display: flex;
    justify-content: space-between;
}
.f1-icon {
    height: 30px;
    width: 30px;
    background: #101d12;
    color: #fffddf;
    font-size: 18px;
    border-radius: 50%;
    margin-left: -10px;
    text-align: center;
    padding: 6px;
    line-height: 0;
}
.c1 {
    margin-bottom: 22px;
}
.fl-lt-list li a {
    font-family: 'Poppins', sans-serif;
    color: #101d12;
    font-size: 15px;
    font-weight: 400;
    transition: 0.6s all;
    line-height: 28px;
}
.s0c1 {
    font-family: 'Poppins', sans-serif;
    color: #101d12;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.banner .item {
  height: 80vh;
  position: relative;
}
.banner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .item .cover {
  padding: 75px 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: rgba(0, 0, 0, 0.6);*/
  display: flex;
  align-items: center;
}
.banner .item .cover .header-content {
  position: relative;
  padding: 56px;
  overflow: hidden;
}
.banner .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  border: 9px solid #fff;
  -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
}
.banner .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 35px;
  color: #fff;
}
.banner .item .cover .header-content h1 {
  font-size: 54px;
  font-weight: 700;
  margin: 5px 0 10px;
  word-spacing: 3px;
  color: #fff;
  letter-spacing: 1px;
}
.banner .item .cover .header-content h4 {
  font-size: 30px;
  font-weight: 450;
  line-height: 36px;
  color: #fff;
    letter-spacing: 1px;
}
.banner .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.banner .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
.banner .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInUp;
  animation-delay: 0.3s;
}
.banner .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.3s;
}
.banner .owl-nav .owl-prev {
  position: absolute;
  left: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.banner .owl-nav .owl-prev span {
  font-size: 1.6875rem;
  color: #fff;
}
.banner .owl-nav .owl-prev:focus {
  outline: 0;
}
.banner .owl-nav .owl-prev:hover {
  background: #000 !important;
}
.banner .owl-nav .owl-next {
  position: absolute;
  right: 15px;
  top: 43%;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: rgba(0, 0, 0, 0.5) !important;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 0;
}
.banner .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #fff;
}
.banner .owl-nav .owl-next:focus {
  outline: 0;
}
.banner .owl-nav .owl-next:hover {
  background: #000 !important;
}
.banner:hover .owl-prev {
  left: 0px;
  opacity: 1;
}
.banner:hover .owl-next {
  right: 0px;
  opacity: 1;
}
.ban-dn
{
	    margin-top: -60px;
    position: relative;
    z-index: 11;
}
.t1-top {
    display: flex;
    justify-content: flex-end;
}
.list-li {
    display: flex;
    justify-content: space-between;
    padding-top: 17px;
}
.list-li li {
    margin-right: 23px;
}
.conct-left p, a {
    font-size: 16px;
    color: #000;
    line-height: 1.5em;
    letter-spacing: 0.6px;
    font-weight: normal;
    transition: 0.5s all;
    margin: 0px 0 8px 0;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.iocn-1 {
    color: #ffffff;
    font-size: 24px;
}
.top-line {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    position: relative;
    top: -9px;
}
#testimonial-slider{
    padding: 50px 20px 0px 20px;
  /*  background: #fff;*/
    text-align: center;
    margin-top: 100px;
/*    box-shadow: 0 0 115px 19px rgba(236, 236, 236, 1);*/
}
.testimonial .description{
    font-size: 16px;
    color:#ffffff;
    line-height: 28px;
    text-indent: 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
 
}
.testimonial
{
	   marginb-top: 40px;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: -15px;
}
.testimonial .title{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    top: 11px;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.owl-theme .owl-controls .owl-buttons
{
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
/*.testimonial .owl-next
{
	position: absolute;
	right: 0;
}*/
.testimonial .owl-prev,
.testimonial .owl-next{
    position: absolute;
    left: 0;
    transition: all 0.4s ease-in-out 0s;
}
.owl-buttons .owl-prev
{
	background-color: #f5821e;
color: #fff;
font-size: 38px;
width: 35px;
height: 35px;
display: flex;
justify-content: center;
align-items: center;
padding: 9px;
position: absolute;
left: -98px;
top: 140px;
}
.testimonial .owl-next{
    left: auto;
    right: 0;
    	position: absolute;
}

.testimonial .owl-buttons .owl-prev:before,
.testimonial .owl-buttons .owl-next:before{
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 60px;
    font-weight: 900;
    color: #cacaca;
    line-height: 20px;
    opacity: 0.8;
}
.testimonial .owl-buttons .owl-next:before{
    content: "\f105";
}
.testimonial .owl-buttons .owl-prev:hover:before,
.testimonial .owl-buttons .owl-next:hover:before{
    opacity: 1;
}
.testimonial .owl-theme .owl-controls .owl-buttons div{
    background: transparent;

}
.testimonial .owl-theme .owl-controls{
    margin-top: 40px;
}
.owl-theme .owl-controls .owl-buttons
{

}
.testimonial .owl-prev
{
    background-color: #f5821e;
    font-size: 38px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
    position: absolute;
    left: -98px;
    top: 140px;
    color: #fff;
}
.owl-next
{
    background-color: #fff;
    color: #f5821e;
    font-size: 38px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px;
    position: absolute;
    right: -98px;
    top: 140px;
}
.owl-theme .owl-controls .owl-buttons div .owl-prev
{
background: #000;
}
.owl-theme .owl-controls{margin-top:10px;text-align:center;
    position: relative;
    top: -330px;
    left: 0;
    z-index: 1;
    right: 0;}.owl-theme .owl-controls .owl-buttons div{zoom:1;margin:5px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;}.owl-theme .owl-controls.clickable .owl-buttons div:hover{filter:Alpha(Opacity=100);opacity:1;text-decoration:none}.owl-theme .owl-controls .owl-page{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-controls .owl-page span{display:block;width:12px;height:12px;margin:5px 28px;filter:Alpha(Opacity=50);opacity:.5;-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background:#869791}.owl-theme .owl-controls .owl-page.active span,.owl-theme .owl-controls.clickable .owl-page:hover span{filter:Alpha(Opacity=100);opacity:1}.owl-theme .owl-controls .owl-page span.owl-numbers{height:auto;width:auto;color:#FFF;padding:2px 10px;font-size:12px;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-item.loading{min-height:150px;background:url(AjaxLoader.gif) no-repeat center center}
.owl-theme .owl-controls .owl-page span{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border:none;
    margin-right: 10px;
    background: url("../images/pic1.png") no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out 0s;
}
#testimonial .owl-buttons {
width: auto;
height: 40px;
position: absolute;
bottom: 40%;
left: 0;
}
#testimonial .owl-theme .owl-controls .owl-buttons div
{
position: absolute;
right: -68px;
top: 27px;
margin-bottom: 4px;
background: #fff;
height: 35px;
width: 35px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
color: #294f96;
}
.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.owl-theme .owl-controls .owl-page:nth-child(2) span{
    background: url("../images/pic-2.png") no-repeat;
    background-size: cover;
}
.owl-theme .owl-controls .owl-page:nth-child(3) span{
    background: url("../images/pic-3.png") no-repeat;
    background-size: cover;
}
.owl-theme .owl-controls.clickable .owl-page:hover span{
    opacity: 0.5;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page.active:hover span{
    border: none;
    transform: scale(2);
    opacity: 1;
}

@media only screen and (max-width: 479px){
    .owl-buttons{ bottom: 30%; }
}


.banner-inside
{
	padding-top: 127px;
    height: 280px;
    background: url(../images/pages-header.jpeg) no-repeat center top;
}
.page-nav {
    padding: 17px 14px 0px 14px;
    border-bottom: 1px solid #d1d1d1;
}
.page-nav ul {
    list-style-type: none;
    text-align: center;
    margin-bottom: 0;
    background-color: transparent;
}
.ar-ln
{
	position: relative;
top: 4px;
color: #212529;
}
.mb-inf020px
{
	margin-bottom: 20px;
}
.abt-info-2
{
	margin-top: 3em;
background-color: #2e4a95;
padding: 3em;
margin-bottom: 3em;
border-radius: 0px 60px 0 60px;
}
.abt-info-3
{
	marginb-top: 3em;
}
.ser-1-in
{
	    color: #1a3757;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;

}
.bane-title h2 {
    text-align: center;
    margin: 40px 0 0 0;
    font-size: 34px;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.ser-page .accordion-button
{
	color: #1a3757;
font-family: 'Poppins', sans-serif;
font-size: 17px;
font-weight: 420;
} 
.table
{
	padding: 2em 76px;
line-height: 30px;
margin: 0;
margin-top: 2em;
color: #1a3757;
font-weight: 400;
font-size: 16px;
font-family: 'Poppins', sans-serif;
}
.tablin
{
		line-height: 30px;
margin: 0;
color: #1a3757;
font-weight: 420;
font-size: 16px;
font-family: 'Poppins', sans-serif;
}
.accordion-body
{
	padding: 2em 76px;
	line-height: 30px;
margin: 0;
color: #1a3757;
font-weight: 420;
font-size: 16px;
font-family: 'Poppins', sans-serif;
}
.ar2
{
	background: #24aa57;
height: 35px;
width: 35px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
margin-right: 20px;
font-size: 23px;

}
.ser-1
{
background-color: #fff;
height: 120px;
margin-top: 60px;
padding: 2em;
position: relative;
border: 1px solid #2e4a95;
}
.numdv
{
position: absolute;
top: -18px;
background-color: #fff;
width: 35px;
height: 35px;
border-radius: 0;
display: flex;
justify-content: center;
align-items: center;
transform: rotate(45deg);
left: 16px;
border: 1px solid #2e4a95;
}
.info-34
{
	color: #f5821e;
font-size: 22px;
line-height: 30px;
margin: 0;
padding: 0;
color: #214c6b;
font-weight: 400;
font-size: 17px;
letter-spacing: 0.5px;
font-family: 'Roboto', sans-serif;
}
.page-nav ul li {
    display: inline-block;
    margin-right: 10px;
    font-weight: 400;
}
.page-nav ul li span {
    color:#f5821e;
}
.inside-wrapper
{
	padding: 3em 0;
}
.special-links li {
    background: #eeeeee;
    margin-bottom: 7px;
    width: 100%;
}
.special-links li .nav-link{
    display: block;
    font-size: 17px;
    color: #2e4a95;
    background-color: #fff;
    font-weight: 500;
    display: block;
    height: 60px;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    border-left: 2px solid #2e4a95;
    width: 100%;
    padding: 10px 22px;
    line-height: 22px;
    transition: all 0.5s ease;
}

.impr
{
	display: flex;
	justify-content: center;
	align-items: center;
}
.impr img
{
	width: 60px;
}
.accordion-item
{
	margin-bottom: 14px;
}
.pro-s h1
{
	color:#1a3757;
font-size: 16px;
text-align: center;
font-family: 'Poppins', sans-serif;
line-height: 24px;
margin: 0;
font-weight: 500;
padding: 20px 0;
}
.pro-s
{
	background-color: #fff;
padding: 2em;
height: 250px;
margin-bottom: 2em;
position: relative;
    position: relative;
}
.pro-s:after
{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 25px solid #f5821e;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(-45deg);
    transform-origin: 80% -30% 0;
}

.cont-form {
    background-color: #2e4a95;
    padding: 3em;
}
.title3 {
    color:#f5821e;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    letter-spacing: 0.5px;
}
.cont-form .form-group {
    margin-bottom: 20px;
}
.cont-form .form-control {
    display: block;
    width: 100%;
    height: calc(1.8em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #fff;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.iocn-ft
{
	color: #214c6b;
	font-size: 26px;
}
label {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.cont-div {
    padding: 0 0em 0 2em;
}
.bnt {
    border-bottom: 1px solid #cbcbcb;
    padding-bottom: 20px;
}
.add1 {
    margin-bottom: 2em;
}
.sub-btn {
    background-color: #f5821e;
    color: #fff;
    display: inline-block;
    width: 200px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    padding: 10px;
    display: block;
    transition: 0.5s all;
    margin: 30px auto 0 auto;
    border: 1px solid #f5821e;
}
.footer-link {
    color: #000;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.txt-cnt-23
{
	text-align: right;
}
.footer-bottom {
    background-color: #e7e7e7;
    padding: 1em 0 1em 0;
}
/**/
.kn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  color: #fff;
}

.kn span:after {
  content: '\00bb';
  font-family: FontAwesome;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -30px;
  margin-left: 10px;
  transition: 0.5s;
}

.kn:hover span {
  padding-right: 25px;
}

.kn:hover span:after {
  opacity: 1;
  right: 0;
}
/**/
.kn1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
  color: #2e4a95;
}

.kn1 span:after {
  content: '\00bb';
  font-family: FontAwesome;
  position: absolute;
  opacity: 0;
  top: 0;
  right: -30px;
  margin-left: 10px;
  transition: 0.5s;
}

.kn1:hover span {
  padding-right: 25px;
}

.kn1:hover span:after {
  opacity: 1;
  right: 0;
}
.logo-client
{

    background: #fff;
    padding: 1em;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 0;
    margin-bottom: 26px;
    height: 260px;
}
.logo-client img
{
	    height: 143px;
    display: block;
    margin: 0 auto;
}
.img-he
{
	    height: 143px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-client h1
{
	    color: #000;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    margin: 10px 0 0 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/*Media*/

@media(max-width:768px)
{

}
/**/
@media(max-width:600px)
{
	.sec-2 {
    margin: 0;
    padding: 3em 0 3em 0;
    background: #e4e5f4;
    position: relative;
}
.qult-div {
    background-color: #2e4a95;
    padding: 20px;
    width: 90%;
    margin: 0 auto 2em auto;
    position: relative;
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
}
.wel-titl {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
    line-height: 37px;
}
.banner .item .cover .header-content h1 {
    font-size: 21px;
    font-weight: 700;
    margin: 5px 0 10px;
    word-spacing: 3px;
    color: #fff;
    letter-spacing: 1px;
    line-height: 33px;
    padding-top: 8em;
    text-align: center;
}
.banner .item {
    height: 400px;
    position: relative;
}
.info1 {
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    line-height: 30px;
}
.txt-cnt-23 {
    text-align: center;
}
.client-logo {
    padding-top: 0;
    padding-bottom: 0;
}
.abt-info-2 {
    margin-top: 2em;
    background-color: #2e4a95;
    padding: 20px;
    margin-bottom: 2em;
    border-radius: 0px 60px 0 60px;
}
.accordion-body {
    padding: 1em;
    line-height: 30px;
    margin: 0;
    color: #1a3757;
    font-weight: 420;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}
.pro-s {
    background-color: #fff;
    padding: 2em;
    height: 250px;
    margin-top: 1em;
    position: relative;
    position: relative;
}
.pro-s {
    background-color: #fff;
    padding: 2em;
    height: auto;
    margin-top: 1em;
    position: relative;
    position: relative;
}
.accordion-body img
{
	margin-bottom: 1em;
}
.logo img {
    width: 200px;
}
.inside-wrapper {
    padding: 2em 0;
}
.right
{
	margin-bottom: 1em;
}
.s0c1 {
    font-family: 'Poppins', sans-serif;
    color: #101d12;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: none;
}
.footer-link {
    color: #000;
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    text-align: center;
}
.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
    position: relative;
    top: -493px;
    left: 0;
    z-index: 1;
    right: 0;
}
.f1-icon {
    height: 30px;
    width: 30px;
    background: #101d12;
    color: #fffddf;
    font-size: 18px;
    border-radius: 50%;
    margin-left: 0;
    text-align: center;
    padding: 6px;
    line-height: 0;
}
.testimonial .description {
    font-size: 16px;
    color: #ffffff;
    line-height: 28px;
    text-indent: 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-align: left;
}
.testimonial .title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    margin: 0;
    position: relative;
    top: 11px;
    text-align: left;
}
.testimonial .post {
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}
.ser-indie .owl-nav button.owl-next {
    position: absolute;
    right: -54px;
    top: 180px;
    background: #2e4a95;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    padding: 10px;
}
.ser-indie .owl-nav button.owl-prev {
    position: absolute;
    left: -55px;
    top: 180px;
    background: #fff;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #2e4a95;
    padding: 10px;
}
.testimonial .post {
    display: block;
    font-size: 14px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}
.d-cnt {
    display: flex;
    justify-content: flex-start;
    margin: 1em 0;
}
}
