

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Mansalva&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body{
	overflow-x: hidden;
	 scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
*{
	margin:0;
	box-sizing: border-box;
}
.txt-cnt-2
{
	text-align: center;
}
.container{
	max-width:1400px;
	margin:auto;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
	cursor: pointer;
}
.arr-team {
    position: absolute;
    right: 48px;
    transform: rotate(-45deg);
    transition: 0.5s all;
}
.our-team-box:hover .arr-team
{
transform: rotate(0deg);
}
.footer-bottom
{
    background: #b7d7ef;
    
}
.text-sm-right
{
	text-align: right;
}

.footer-bottom-border
{
	 border-top: 1px solid #032066;
	 padding: 20px 0;
}

.our-team-box
{
	position: relative;
}
.our-team-box:before
{
content: '';
position: absolute;
}
.left-footer img
{
 width:260px;
}

.box-info
{
	    margin-left: 1em;
}
/*header*/
.header{
	position: absolute;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 0px;
}
.header-main{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0 14px 0;
	border-radius: 0px;
}
.header .logo{
	padding: 0 15px;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 15px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	color: #2d3a75;
	text-transform: uppercase;
	font-weight: 500;
	    position: relative;
    z-index: 1;
	transition: all 0.3s ease;
}
.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: #2d3a75;
}
.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: 30px;
	width: 30px;
	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;
}

.nav-link:before
{
  content:'';
  position:absolute;
  left:0;
  background-color:#2d3a75;
  width:100%;
    bottom: -20px;
    height: 4px;
  transform: scaleX(0);
  transform-origin: center;
  transition:transform 650ms;
}

.nav-list:before 
{
content: '|';
    position: absolute;
    right: 12px;
    /* background-color: #fff; */
    width: 100%;
    top: 11px;
    color: #2d3a75;
     /* height: 0; */
    /* transform: scaleX(0); */
    /* transform-origin: center; */
    /* transition: transform 650ms;*/
}
.nav-list1{
        padding-top: 24px;
}
.nav-link:hover::before
{
  transform: scaleX(1);
}
/* 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: #dff4ff;
		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: 20px 15px 0 15px;
		border-bottom: 1px solid #ededed;
	}
	.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;
	}
}
.header .logo img
{
width: 220px;
}
.banner .item {
  height: 790px;
  position: relative;
}
.banner .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .item .cover {
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -180px;
    left: 0;
    /* background: rgba(0, 0, 0, 0.6); */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.banner .item .cover .header-content {
  position: relative;
  padding: 0 56px;
  overflow: hidden;
}
.banner .item .cover .header-content .line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0px;
  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: 40px;
    margin: 0px 0 0px;
    word-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
     font-family: "Inter", sans-serif;
    text-align: center;
}
.banner .item .cover .header-content h4 {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  color: #fff;
}
.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;
}
.banner-img
{
	width: 14px;

}
.btm-border
{
	    border-bottom: 2px solid #032066;
}

.section-2
{
	background-color: #f2f2f2;
    padding: 3em 0 7em 0;
    border-radius: 88px 88px 0 0;
    position: relative;
    top: 0;
    z-index: 1;
    margin-top: -100px;
}
.inside-wrapper
{
	padding: 0 60px;
}
.title
{
	   font-family: "Inter", sans-serif;
	   font-weight: 550;
	   font-size: 33px;
	   line-height: 48px;
	   letter-spacing: 1px;
}
.box-icon
{
	width: 80px;
	height: 80px;
	background-color: #4e9ad1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.box-icon img
{
width: 60px;
}
.box-part
{
	margin:2em 0;
	padding:0 40px;
}
.box-part p
{
	font-family: "Work Sans", sans-serif;
	color: #2d3a75;
	line-height: 28px;
	font-size:18px;
}
.sec-3
{
	    padding: 4em 0 9em 0;
    background-color: #fff;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}
.pro-info-index
{
	padding-right: 110px;
	margin-left: 20px;
}
.text-dis
{
		margin-left: 10px;
}
.pro-img-ind img
{
	    width: 350px;
    display: block;
    margin: 0 auto;
}
.info {
    font-family: "Work Sans", sans-serif;
    color: #2d3a75;
    line-height: 32px;
    font-size: 18px;
    letter-spacing: 0.5px;
}
.info-1
{
	color: #2d3a75;
	font-weight: 500;
	font-size:18px;
	letter-spacing: 1px;
	font-family: "Inter", sans-serif;
}
.pro-info-index
{
	margin-top: 2em;
}
.subtitle-2
{
	color: #2d3a75;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: "Inter", sans-serif;
}
.sec-4 {
    padding: 4em 0 8em 0;
    background-color: #f0f8fd;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}
.title-ser-box h1
{
	    font-family: "Inter", sans-serif;
    color:#2d3a75;
    font-size: 22px;
    line-height: 30px;
    font-weight: 550;
}
.ser-top-30px
{
	margin-top: 40px;
}
.ser-img img
{
border-radius: 40px;
margin-top:60px;
}
.ser-div
{
	background-color: #e3f3fe;
	padding:20px;
	border-radius: 39px;
}
.title-ser-box
{
	    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title-ser-box img
{
	    width: 20px;
    transition: 0.5s all;
}
.sec-5
{
	padding: 4em 0 10em 0;
    background-color: #e3f3fe;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}

.img-arr-owl
{
	transform: rotate(-45deg);
}
.tes-box
{
	margin:3em 0 2em 0;
}
.test-m-box
{
	background-color: #fff;
	padding:60px 80px;
	border-radius: 66px;
}
.texst-info
{
	font-family: "Inter", sans-serif;
	color: #2d3a75;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0.5px;
}
.test-img img
{
border-radius: 40px;
display: block;
margin:0 auto;
width: 250px;
}
.ser-div
{
	transition: 0.5s all;
}
.ser-div:hover
{
	background-color: #b7d7ef;
}
.test-name
{
font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding-bottom: 0;
    padding-left: 10px;
    font-weight: 500;
    text-align: center;
}
.test-disg
{
	font-family: "Inter", sans-serif;
	color: #2d3a75;
	font-size: 15px;
	margin-top: 0px;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: center;
}
.sub-title
{
	color: #4e9ad1;
	font-weight: 500;
	font-size:28px;
	margin:10px 0 25px 0;
	letter-spacing: 1px;
	font-family: "Inter", sans-serif;
}

/*footer*/

.footer
{
    background-color: #b7d7ef;
    padding: 4em 00 3em 0;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -91px;
    z-index: 1;
}
.footer-pha
{
	font-family: "Poppins", sans-serif;
	color: #2d3a75;
	font-size: 16px;
	margin-top: 26px;
}
.footer-head
{
	color: #2d3a75;
	font-family: "Poppins", sans-serif;
	font-size: 19px;
	margin-bottom: 18px;
}
.txt-cnt
{
	display: flex;
/*	justify-content:center;*/
	align-items: center;
	flex-direction: column;
}
.footer-link li
{
	margin-top: 10px;
}
.footer-link li a
{
font-family: "Poppins", sans-serif;
color:#2d3a75;
font-size: 16px;
}

.soc-div
{
	width: 35px;
	height: 35px;
	border-radius: 50%;
	bordeR:1px solid #000;
}
.social-link
{
	display: flex;
}
.social-link li 
{
	margin-right: 8px;
}
.read-more
{
	color:#2d3a75;
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 550;
	display: inline-block;
	margin:20px 0;
	text-align: center;
	transition: 0.5s all;
}
.read-more img
{
	transform: rotate(-45deg);
	transition: 0.5s all;
	margin-left: 3px;
}
.read-more:hover img
{
transform: rotate(0deg);
}
.sec-4 .owl-carousel .owl-stage-outer
{
	    height: 482px;
}
.txc-cnt-1
{
	display: flex;
	justify-content: center;
}
/*.sec-4 .owl-item.active.center {
    -webkit- transform: scale(1);
   transform: scale(1);
   background-color:#000;
}*/
.sec-4 .owl-item.active.center .ser-div{
    background-color: #b7d7ef;
 	box-shadow: 0.314px 17.997px 54px 0px rgba(151, 190, 220, 0.59);
}
.sec-5 .owl-carousel .owl-nav.disabled{
       display: block;
    position: absolute;
    right: 190px;
    top: -75px;
}

.ser-div:hover .img-arr-owl
{
	filter: brightness(0) invert(1);
}
.ser-div:hover
{
	box-shadow: 0.314px 17.997px 54px 0px rgba(151, 190, 220, 0.59);
}
.sec-4 .owl-item.active.center .img-arr-owl
{
filter: brightness(0) invert(1);
}
.sec-5 .owl-carousel .owl-nav img
{
	 width: 20px;
    margin-left: 14px;
}
.sec-5 .owl-theme .owl-nav [class*='owl-']:hover
{
background-color: transparent;
}

.sec-4 .owl-carousel .owl-nav.disabled{
       display: block;
    position: absolute;
    right: 190px;
    top: -75px;
}
.sec-5 .owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    right: 180px;
    top: -80px;
}
.sec-4 .owl-next
{
	    position: absolute;
    right: -39px;
    top: 200px;
}
.sec-4 .owl-prev
{
	 position: absolute;
    right: 1274px;
    top: 200px;
}
.sec-4 .owl-nav img
{
	 width: 20px;
    margin-left: 14px;
}
.sec-4 .owl-theme .owl-nav [class*='owl-']:hover
{
background-color: transparent;
}
.soc-div
{
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.5s all;
}

.soc-div img
{
width: 28px;
transition: 0.5s all;
}
.soc-div:hover img
{
filter: brightness(0) invert(1);
}
.soc-div:hover
{
background-color: #2d3975;
}
.banner-inside
{
	background: url(../images/banner-inside-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    padding: 130px 0px 0px;
    height: 700px;
}
.inside-wrapper-sec
{

	     padding: 3em 0 7em 0;
    border-radius: 88px 88px 0 0;
    position: relative;
    top: 0;
    z-index: 1;
    margin-top: -198px;
    background: #fff;
}
.txt-cnt-1
{
	text-align: center;
}
.top-insdi-s1
{
	margin-top:20px;
	padding-left: 2em;
}
.top-insdi-s2
{
	background-color: #f6f7ff;
 border-radius: 86px;
 margin:2em 0;
}
.top-insdi-s2 img 
{
 border-radius: 86px 86px 0 0;
}
.top-insdi-s2-info
{
	padding: 2em;
}
.value-1
{
	margin:30px 0 30px 0;
	    padding-left: 35px;
}
.value-1 h2
{
font-family: "Work Sans", sans-serif;
color: #2d3a75;
font-size: 22px;
font-weight: 650;
}
.value-1 img
{
width: 22px;
margin-right: 6px;
}
.aim-box h3, .goal-box h3
{
font-family: "Work Sans", sans-serif;
color: #2d3a75;
font-size: 22px;
font-weight: 650;
text-align: center;
}
.vision-mission-box
{
	padding:2em 0 4em 0;
}
.aim-box-1
{
    background-color: #2d3a75;
    padding: 3em;
    border-radius: 24px;
    position: relative;
    height: 400px;
   margin: 15em 1em 0 1em;
}
.aim-box-info
{
	    padding: 36px 0 0 0;
}
.aim-box-1 img 
{
	    width: 550px;
    display: block;
    margin: 0 auto;
    /* position: absolute; */
    top: -78px;
    margin-top: -247px;
}
.founder-desl-s1 img
{
	width: 280px;
	display: block;
	margin: 0 auto;
}
.founder-desk
{
	 border-radius: 86px;
  background-color: rgba(235, 237, 254, 0.451);
  padding: 3em;

}
.mb-3em
{
	  margin-bottom: 3em;
}
.founder-desl-s1-h3
{
	font-family: "Work Sans", sans-serif;
color: #2d3a75;
font-size: 20px;
font-weight: 550;
margin-top: 16px;
text-align: center;
}
.desk-info {
    border: 1px solid #4e9ad1;
    padding: 2em 3em;
    border-radius: 38px;
    height: 460px;
    margin-left: 2em;
}

.google-map
{
	padding: 4px;
	border-radius: 6px;
	border:1px solid #ccc;
}
.top-20px
{
	margin-top:26px;
}
.our-services-box
{
	padding: 0 2em 3em 2em;
	margin-top: 40px;
	border-bottom: 2px solid #2d3a75;
}
.ser-info
{
    padding-right: 20px;
    margin-left: 20px;
}
.ser-info h3
{
	     font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 23px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 550;
}
.exper-box
{
	margin-bottom: 10px;
}
.exprt-img img
{
margin-top: 8px;
}
.exprt-info-h3
{
	    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 21px;
    margin-bottom: 9px;
    line-height: 30px;
    font-weight: 550;
}
.listchar-21 {
    list-style-type: disc;
    margin:20px 15px 15px 15px;
}
.listchar-21 li {
   font-family: "Work Sans", sans-serif;
    color: #2d3a75;
    line-height: 28px;
    font-size: 18px;
    padding: 0px;
    margin: 0 0 12px 0;
    position: relative;
    padding-left: 15px;
    list-style-type: none;
}
.listchar-21 li:before {
    position: absolute;
    left: -14px;
    display: block;
    font-size: 22px;
    background-color: #2d3a75;
    border-radius: 50%;
    content: "";
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 2px;
    height: 8px;
    width: 8px;
    top: 11px;
}
.pl-0-34
{
	margin-left: -48px;
}
.contact-box
{
	padding-left:2em;
	padding-right: 2em;
}
.info-cnt
{
	margin-bottom: 20px;
}
.sub-title-contact
{
	    font-family: "Work Sans", sans-serif;
    color: #2d3a75;
    font-size: 19px;
    font-weight: 550;
    margin-top: 16px;
   }
.associat-info
{
	margin-top: 18px;
}
.associat-img img
{
width: 250px;
display: block;
margin:0 auto;
}
.our-associate-h3
{
	    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 18px;
    margin-bottom: 0px;
    line-height: 30px;
    font-weight: 550;
    text-align: center;
}
.our-associate-pha
{
	    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 15px;
    line-height: 30px;
    font-weight: 550;
    text-align: center;
}
.associat-box
{
	margin-top: 30px;
}
.our-team-box-h3
{
	    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size:20px;
    line-height: 30px;
    font-weight: 550;
    text-align: center;
}

.our-team-box img
{
width:330px;
display: block;
margin:0 auto;
}
.our-team-box
{
	position: relative;
	margin-top: 0px;
	margin-bottom: 35px;
}
.team-img
{
	position: relative;
}
/*.team-img:before
{
	content: '';
	position: absolute;
	width: 100%;
	height: 80px;
	opacity: 0;
	bottom: 0;
	transition: 0.5s all;
	background-image: linear-gradient(rgba(252,252,252,0), rgb(255,255,255,1));
}*/
/*.our-team-box:hover .team-img:before
{
	opacity: 1;
}*/
.team-info
{
    position: relative;
    bottom: 0;
    transition: 0.5s all;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.team-img-1-2 img
{
width: 170px;
}
.read-more-234 {
    color: #2d3a75;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: normal;
    font-weight: 550;
    display: inline-block;
    margin: 0px 0 0px 0;
    text-align: center;
    transition: 0.5s all;
}
.read-more-2 {
     color: #2d3a75;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 550;
    display: inline-block;
    margin: 20px 0 0px 0;
    opacity: 0;
    text-align: center;
    transition: 0.5s all;
}
/*.our-team-box:hover .read-more-2
{
opacity: 1;
}*/

/*.our-team-box:hover .team-info
{
    bottom: 60px;
}*/
.team-box
{
	margin-top: 20px;
	margin-bottom: 23px;
}
@keyframes scalexIn{
    0%{
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;        
    }
    to{
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}
.scalexIn{
    animation-name: scalexIn;
}
@keyframes fadeScaleIn{
    0%{
        opacity: 0;
        transform: scale(.95) translateZ(0.1px);
    }
    to{
        opacity: 1;
        transform: scale(1.00);
    }
}
.fadeScaleIn{
    animation-name: fadeScaleIn;
}
@keyframes scaleOutIn{
    0%{
        transform: scale(1.2) translateZ(0.1px);      
    }
    to{
        transform: scale(1.0);
    }
}
.scaleOutIn{
    animation-name: scaleOutIn;
    animation-timing-function: var(--ease-out-short);
}
@keyframes fadeScaleOutIn{
    0%{
        opacity: 0;
        transform: translateY(10px) translateZ(0.1px) scale(1.1);      
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

@media screen and (max-width: 1200px) {


	.desk-info
	{
		height: 510px;
	}
	
}
@media screen and (max-width: 820px)
{
	.box-part {
    margin: 2em 0 0em 0;
    padding: 0 20px;
}
.sec-4 .owl-prev
{
	position: absolute;
    left: -44px;
}
.sec-4 .owl-next
{
	position: absolute;
    right: -30px;
}
.pro-info-index {
    padding-right: 20px;
    margin-left: 0px;
}
.pro-img-ind img {
    width: 350px;
    display: block;
    margin: 0;
}
.sec-5 {
    padding: 4em 0 2em 0;
    background-color: #e3f3fe;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}
.texst-info {
    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.5px;
    margin-top: 12px;
}
.sec-4 .owl-carousel .owl-stage-outer {
    height: auto;
}
.txt-cnt {
    display: flex;
    /* justify-content: center; */
    align-items: flex-start;
    flex-direction: column;
}
.footer-pha {
    font-family: "Poppins", sans-serif;
    color: #2d3a75;
    font-size: 16px;
            margin-top: 4px;
    margin-bottom: 12px;
}
.left-footer img
{
	margin-bottom: 10px;
}
.footer-link
{
	margin-top: 12px;
}
.goal-box
{
	margin-top: 2em;
}
.vision-mission-box {
    padding: 1em 0 2em 0;
}
.inside-wrapper {
    padding: 0 30px;
}
.top-insdi-s1 {
    margin-top: 20px;
    padding-left: 0;
}
    .desk-info {
        height: auto;
    }
    .desk-info {
    border: 1px solid #4e9ad1;
    padding: 2em;
    border-radius: 38px;
    height: 460px;
    margin-left: 0;
    margin-top: 2em;
}
.services-img
{
	margin-bottom: 30px;
}
.associat-img img {
    width: 100%;
    display: block;
    margin: 0 auto;
}
.footer-link-1
{
	    font-family: "Poppins", sans-serif;
    color: #2d3a75;
    font-size: 12px;
            text-align: center;
}
}


@media screen and (max-width: 600px) {

.services-img
{
	margin-bottom: 30px;
}
.footer-link {
        margin-top: 0;
    }
    .contact-box {
    padding-left: 0;
    padding-right: 0;
}
.footer-link-1
{
	    font-family: "Poppins", sans-serif;
    color: #2d3a75;
    font-size: 12px;
            text-align: center;
}
.exprt-info-h3 {
    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 19px;
    margin-bottom: 9px;
    line-height: 30px;
    font-weight: 550;
}
	.desk-info
	{
		height: auto;
	}
	.banner .item {
    height: 600px;
    position: relative;
}
.banner .item .cover .header-content h1 {
    font-size: 23px;
    margin: 20px 0 0px;
    word-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
    text-align: center;
}
.inside-wrapper {
    padding: 0 20px;
}
.title {
    font-family: "Inter", sans-serif;
    font-weight: 550;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 1px;
}
.box-part {
    margin: 2em 0 1em 0;
    padding: 0 10px;
  }
      .box-part p {
        font-family: "Work Sans", sans-serif;
        color: #2d3a75;
        line-height: 28px;
        font-size: 18px;
        text-align: center;
        margin: 0;
    }

.pro-info-index {
    padding-right: 0;
    margin-left: 10px;
}
.sec-3 {
    padding: 4em 0 6em 0;
    background-color: #fff;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}
.header .logo img {
    width: 180px;
    margin-bottom: 10px;
}
.header .open-nav-menu span {
    display: block;
    height: 2px;
    width: 24px;
    background-color: #000000;
    position: relative;
}
.box-part {
    margin: 2em 0 0px 0;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .box-icon {
    width: 80px;
    height: 80px;
    background-color: #4e9ad1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
}
.txt-cnt {
    display: flex;
    /* justify-content: center; */
    align-items: flex-start;
    flex-direction: column;
}
.banner .item .cover .header-content {
    position: relative;
    padding: 0 16px;
    overflow: hidden;
}
.test-m-box {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 66px;
    /* margin-top: 10px; */
}
.test-img img {
    border-radius: 40px;
    display: block;
    margin:0 auto;
    width: 250px;
}
.test-name {
    font-family: "Inter", sans-serif;
        color: #2d3a75;
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding-bottom: 0;
    padding-left: 10px;
    font-weight: 500;
    text-align: center;
}

.test-disg {
    font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 15px;
    margin-top: 0px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-left: 10px;
    text-align: center;
}
.sec-4 .owl-carousel .owl-stage-outer {
    height: 420px;
}
.box-info {
    margin-left: 0;
}
.sec-5 {
    padding: 4em 0 0 0;
    background-color: #e3f3fe;
    border-radius: 88px 88px 0 0;
    position: relative;
    margin-top: -75px;
    z-index: 1;
}
.sec-5 .owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    right: 12px;
    top: -60px;
}
.footer-pha {
    font-family: "Poppins", sans-serif;
    color: #2d3a75;
    font-size: 17px;
    margin-top: 5px;
}
.footer-head {
    color: #2d3a75;
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    margin-bottom: 18px;
    margin-top: 18px;
}
.top-insdi-s1 {
    margin-top: 15px;
    padding-left: 0;
}
.value-1 {
    margin: 10px 0 0px 0;
    padding-left: 0;
}
.vision-mission-box {
    padding: 2em 0em 0
}
.txt-cnt-1 {
    text-align: center;
}
.aim-box-1 {
    background-color: #2d3a75;
    padding: 118px 21px 21px 21px;
    border-radius: 24px;
    position: relative;
    height: auto;
    margin: 10em 0em 2em 0em;
}
.founder-desk {
    border-radius: 86px;
    background-color: rgba(235, 237, 254, 0.451);
    padding:20px;
}
.founder-desl-s1 img {
    width: 240px;
    display: block;
    margin: 0 auto;
}
.founder-desl-s1-h3 {
    font-family: "Work Sans", sans-serif;
    color: #2d3a75;
    font-size: 19px;
    font-weight: 550;
    margin-top: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.founder-desl-s1-h3 {
    font-family: "Work Sans", sans-serif;
    color: #2d3a75;
    font-size: 19px;
    font-weight: 550;
    margin-top: 16px;
    text-align: center;
    margin-bottom: 20px;
}
.founder-desk {
    border-radius: 86px;
    background-color: rgba(235, 237, 254, 0.451);
    padding: 30px 14px;
}
.desk-info {
    border: 1px solid #4e9ad1;
    padding: 1em;
    border-radius: 38px;
    height: auto;
    margin-left: 0;
}
.ser-info h3 {
       font-family: "Inter", sans-serif;
    color: #2d3a75;
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 550;
}
.top-20px

 {
    margin-top: 0;
}
.our-services-box {
    padding: 0 0em 3em 0em;
    margin-top: 30px;
    border-bottom: 2px solid #2d3a75;
}
.team-info-1
{
	margin-top: 20px;
}
.pl-0-34 {
    margin-left: 0;
}
.left-footer img
{
 width:200px;
}
.sec-4 .owl-prev
{
	position: absolute;
    left: -44px;
}
.sec-4 .owl-prev
{
	position: absolute;
    left: -44px;
}
.sec-4 .owl-next
{
	position: absolute;
    right: -30px;
}
.tes-box {
    margin: 3em 0 1em 0;
}
.inside-wrapper-sec {
    padding: 3em 0 8em 0;
    border-radius: 88px 88px 0 0;
    position: relative;
    top: 0;
    z-index: 1;
    margin-top: -198px;
    background: #fff;
}
}
