@font-face {
    font-family:AzoSans-Regular;
    src:url(../fonts/AzoSans-Regular.ttf);
}
@font-face {
    font-family:AzoSans-Bold;
    src:url(../fonts/AzoSans-Bold.ttf);
}
@font-face {
    font-family:AzoSans-Light;
    src:url(../fonts/AzoSans-Light.ttf);
}
@font-face {
    font-family:AzoSans-Thin;
    src:url(../fonts/AzoSans-Thin.ttf);
}
body
{
	padding:0;
	margin:0;
	box-sizing: border-box;
  font-family:AzoSans-Regular;
  color:#343434;
}
html.homepage {
    overflow-x: hidden!important;
}
h1,h2,h2,h3,h4,h5,h6,p
{
	margin: 0px;
	padding:0px;
}
a
{
	text-decoration: none!important;
    font-size: 16px;
}
a:after
{
    content: '';
    position: absolute;
    right: 0px;
    bottom: 0px;
    margin: auto;
    top: 0px;
    background-repeat: no-repeat;
}
a:hover
{
	text-decoration: none!important;
}
p
{
	font-size:16px;
    line-height: 20px;
}
h1
{
    font-size: 65px;
    line-height: 55px;
}
h2
{
    font-size: 60px;
}
h3
{
    font-size: 40px;
}
h4
{
    font-size: 25px;   
}
h5
{
    font-size: 22px;
}
h6
{
    font-size: 20px;
}
a.purplebtn
{
    color: #ffffff;
    font-size: 16px;
    padding: 8px 45px 8px 45px;
    transition: ease all 0.5s;
    position: relative;
    background-color: #703695;
    border-radius: 15px;
    font-family: AzoSans-Bold;
}
a.purplebtn:hover
{
    color: #023f60;
    background-color: #bed62f;
    transition: ease all 0.5s;
}

a.purplebdbtn
{
    color: #703695;
    font-size: 16px;
    padding: 5px 25px;
    transition: ease all 0.5s;
    position: relative;
    border:2px solid #703695;
    border-radius: 15px;
    font-family: AzoSans-Bold;
}
a.purplebdbtn:hover
{
    color: #ffffff;
    background-color: #703695;
    transition: ease all 0.5s;
}

a.bluebtn img
{
    position: absolute;
    right: 20px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}
a.grnbtn
{
    color: #191818;
    font-size: 20px;
    padding: 13px 0px;
    transition: ease all 0.5s;
    position: relative;
    background-color: #9db82c;
    font-family: AkhandSoft-Bold;
    text-transform: uppercase;
    max-width: 230px;
    width: 100%;
    display: block;
    text-align: center;
    margin: auto;
}
a.grnbtn:hover
{
    color: #9db82c;
    background-color: #ffffff;
    transition: ease all 0.5s;
}
a.grnbtn img
{
    position: absolute;
    right: 30px;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

/*-----------Header Css start-----------*/
header {
    top: 0px;
    display: block;
    margin: auto;
    width: 100%;
    z-index: 99;
    transition: ease all 0.5s;
    padding: 15px 0px 18px; 
    background: #ffffff;
    position:relative;
   box-shadow: 0 8px 6px -6px rgba(0,0,0,0.2);

}

header .navbar-inverse
{
    margin-bottom: 0px;
    background-color: transparent;
    border:0px;
    display: flex;
    align-items: flex-end;
}
header:hover
{
	transition: ease all 0.5s;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    transition: all ease .3s;
     padding: 15px 0px 18px; 
    box-shadow: 0 8px 6px -6px rgba(0,0,0,0.2);
    border-bottom: none;
}
.sticky .logo {
    float: left;
    margin-top: 0;
}
.logo {
    float: left;
    display: flex;
    align-items: flex-end;
}
.logo a
{
    margin-right: 15px;
    color: #003974;
}
.logo a span
{ font-family:AzoSans-Bold;

}
.menu {
    float: right;
}
.menu ul {
	list-style: none;
	padding-left: 80px;
	margin-bottom: 0px;
	float: right;
}
.menu ul li {
    display: inline-block;
    padding: 13px 15px;
}
li.header-icon {
    padding: 0px 10px!important;
}
.menu ul li a {
    font-size: 16px;
    color:#fff!important;
    padding-bottom: 0px;
}
.menu ul li:last-child
{
    display: flex;
    padding-bottom: 0px;
}
.menu ul li:last-child img
{
    padding-top: 10px;
    padding-right: 15px;
}
.menu ul li:last-child a
{
    padding: 0px;
}
.menu ul li a:hover:after {
    width: 100%;
    transition: all ease .3s;
    height: 6px;
}
.menu ul.dropdown-menu {
	border-radius: 0px;
	background-color: #fff;
	margin: 0px 0px;
	padding:0px;
	border-bottom: 4px solid #5fba47;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	transform: translateY(-2em);
	z-index: -1;
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
	display: block;
}
.dropdown:hover>.dropdown-menu {
	display: block;
	visibility: visible;
	opacity: 1;
	z-index: 1;
	transform: translateY(0%);
	transition-delay: 0s, 0s, 0.3s;
}
.menu ul.dropdown-menu li {
	display: block;
	padding: 0px;
}
.menu ul.dropdown-menu li a:focus, .menu ul.dropdown-menu li a:hover {
    background-color: transparent;
    color: red;
}
.menu ul.dropdown-menu li:last-child {
	border-bottom: 0px;
}
div.logo img {
    width: auto;
    transition: ease all 0.5s;
    padding-top: 0;
}
header:hover div.logo img {
	filter:brightness(1) invert(0);
	transition: ease all 0.5s;
}
.sticky div.logo img {
    transition: ease all 0.5s;
    padding-top: 0px;
}
.my-sidenav {
    width: 0px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
    z-index: 999999999;
    height: 100vh;
    max-width: 0px;
    width: 100%;
    background:#2858a5;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.my-sidenav1 {
    height: 0px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: hidden;
    z-index: 999999999;
    max-width: 100%;
    width: 100%;
    background: #2858a5;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    margin-top: 79px;
}
.ham-icon {
    text-align: right;
    cursor: pointer;
    float: left;
}
.mbl-sub-menu {
    display: none;
}
ul.mbl-sub-menu li {
    border: none!important;
    color: #fff;
}
.cross-btn {
    text-align: right;
    padding: 0px 20px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 999;
}
.menu-annual img {
    vertical-align: inherit;
}
.menu-annual span {
    color: #f7941e;
    font-size: 16px;
    padding: 15px;
    position: relative;
    top: -8px;
}
.menu-annual a {
    font-size: inherit;
}
a.menu-annualpdf {
    font-size: inherit;
}
.menu-annual a
{
    display: flex;
    align-items: center;
}
.menu-annual  a p
{
    color: #f7941e;
    font-size: 16px;
    padding: 15px;
}


.cross-btn2 {
    text-align: right;
    padding: 0px 20px;
    color: #000;
    font-size: 32px;
    cursor: pointer;
    right: 0px;
    top: 30px;
    z-index: 999;
}
.ham-icon-mbl {
    text-align: right;
    float: left;
    cursor: pointer;
}
.my-sidenav2 {
    width: 0px;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
    z-index: 999999999;
    height: 100vh;
    max-width: 0px;
    width: 100%;
    background-color: rgb(229,237,254);
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
ul.menu-list {
    list-style: none;
    padding: 0 15px;
}
ul.menu-list li {
    padding: 10px 0;
}
ul.menu-list li a {
    color: #1a69b3;
    font-size: 16px;
}
ul.mbl-sub-menu li a {
    font-size: 15px;	
}
ul.mbl-sub-menu li:before {
    content: "\2022";
    color: #f1ac1c;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 18px;
}
ul.menu-list li {
    padding: 10px 0;
    position: relative;
}
ul.mbl-sub-menu {
    list-style: none!important;
    padding-left: 25px;
    margin-top: 10px;
}
ul.mbl-sub-menu li {
    padding: 5px 0!important;
}
.my-sidenav1 .nav-pills>li
{
    float: none;
    padding: 0px 0px 15px;
}

.my-sidenav1  .nav-pills>li>a,.my-sidenav1  .nav-pills>li.active>a
{
    padding: 0px;
    color: #ffffff;
    background-color: transparent;
    border-bottom: 1px solid #ffffff;
    border-radius: 0px;
    padding-bottom: 10px;
    font-size: 16px;
}
.my-sidenav1  .nav-pills>li.active>a
{
    font-weight: 700;
    position: relative;
}
.my-sidenav1  .nav-pills>li.active>a:after
{
    content: '';
    right: 0px;
    background-image: url(../images/menuar.html);
    width: 25px;
    height: 19px;
    top: -10px;
    position: absolute;
}
.top-nav-content ul
{
    list-style: none;
    padding-left: 15px;
}
.top-nav-content ul li a
{
    font-size: 16px;
    color: #ffffff;
}
.top-nav-content ul li
{
    padding-bottom: 20px;
}
.menupdfrght.col-md-8
{
    padding-left: 80px;
}
.menupdfrght h3
{
    font-size: 25px;
    color: #00adee;
    display: inline-block;
    padding-bottom: 3px;
    font-family:AzoSans-Light;
}
.menupdfrght ul
{
  list-style: none;
  padding: 5px 30px 15px 0px;
  margin-bottom: 0px;
}
.menupdfrght ul li
{
 border-bottom: 1px solid #4787c3;
 padding: 10px 0px;
}
.menupdfrght ul li a
{
    font-size: 16px;
    color: #ffffff;
}
.menupdfrght ul li a img
{
    float: right;
}
.menupdfrght ul li:last-child
{
    border-bottom: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.top-nav.col-md-3
{
    width: 22%;
}
.col-md-4.menupdfrght
{
    border-left: 1px solid #4787c3;
}
.top-nav-content.col-md-5
{
    width:49.666667%;
    position: relative;
}

.top-nav-content #fs1 .dropdown-menu.submenu1 li a
{
    white-space: normal;
}
.top-nav-content #fs1 ul
{
    width: 240px;
}
.top-nav-content #fs1 ul.submenu1
{
    left: 100%;
    top: -95px;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
    border: 0;
    max-width: 100%;
}
.top-nav-content #fs1 ul.submenu1 li
{
    position: relative;
}
.top-nav-content #fs1 ul li:nth-child(2) ul.submenu1
{
    top: -55px;
}
.top-nav-content #fs1 ul li:nth-child(1) ul.submenu1
{
    top: -13px;
}
.top-nav-content #fs1 ul li:nth-child(1) ul.submenu1
{
    top: -13px;
}
.top-nav-content #fs1 ul li:nth-child(4) ul.submenu1,.top-nav-content #fs1 ul li:nth-child(6) ul.submenu1
{
    top:-15px;
}
.top-nav-content .dropdown-menu>li>a:focus, .top-nav-content .dropdown-menu>li>a:hover
{
    background-color: transparent;
    color: #ffffff;
}
.top-nav-content #fs1 ul li:nth-child(2):hover:after,.top-nav-content #fs1 ul li:nth-child(3):hover:after,.top-nav-content #fs1 ul li:nth-child(1):hover:after,.top-nav-content #fs1 ul li:nth-child(4):hover:after,.top-nav-content #fs1 ul li:nth-child(6):hover:after
{
    content: '';
    right: 0px;
    background-image: url(../images/menuar.html);
    width: 25px;
    height: 19px;
    top: 0px;
    position: absolute;
}
.top-nav-content #fs1 ul.submenu1 li:nth-child(2):hover:after,.top-nav-content #fs1 ul.submenu1 li:nth-child(3):hover:after,.top-nav-content #fs1 ul.submenu1 li:nth-child(1):hover:after,.top-nav-content #fs1 ul.submenu1 li:nth-child(4):hover:after
{
    display: none;
}
.container.topmenu-header {
    padding-top: 50px;
}
.right-item {
    float: right;
    margin-top: 10px;
}
footer
{
    background-color: #003974;
}
footer a,footer p,footer a:hover
{
    color: #ffffff;
    font-size: 14px;
}
footer .container-fluid
{
    padding: 0px;
}
footer .footerpagelink
{
    background: rgb(112,54,149);
    position: relative;
    background: linear-gradient(90deg, rgba(112,54,149,1) 50%, rgba(231,231,232,1) 50%, rgba(231,231,232,1) 51%);
}
.scrolltop
{
   position: absolute;
    bottom: -21px;
    left: 0px;
    right: 0px;
    margin: auto;
    max-width: 49px;
    width: 100%;
    z-index: 99;
}
.scrolltop:hover
{
    cursor: pointer;
}
footer .footerpagelink .col-md-6
{
   padding: 25px 0px 25px 80px;
   position: relative;
}
footer .footerpagelink .col-md-6 a
{
    font-size: 20px;
    color: #ffffff;
    line-height: 24px;
    position: relative;
}
footer .footerpagelink .col-md-6:after
{
    content: '';
    position: absolute;
    right: 45px;
    background-image: url(../images/arrow-white.png);
    width: 173px;
    height: 27px;
    bottom: 0px;
    top: 0px;
    margin: auto;
}
footer .footerpagelink .col-md-6:hover:after
{
    transform: scale(1.1);
    transition: ease all 0.5s;
}
footer .footerpagelink .col-md-6:last-child:after
{
   background-image: url(../images/arrow-grey.png);
}
footer .footerpagelink .col-md-6 a span
{
    display: block;
}
footer .footerpagelink .col-md-6:last-child a
{
    color: #2558a5;
}
footer .cpright
{
    padding: 10px 15px;
}
/*-----------Header Css End-------------*/

.hmbanner
{
    padding: 45px 0px 60px;
    text-align: center;
}
.hmbanner h1
{
    color: #703695;
    font-family:AzoSans-Thin;
}
.hmbanner h1 span
{
    display: block;
}
.hmbanner img
{
    margin: auto;
}
.hmbannerbtn
{
    margin: 30px 0px 15px;
}
.hmfinancial
{
    background-color:#bed62f;
    padding: 90px 0px 60px;
}
.hmfinancial h3
{
    text-align: center;
    color: #2558a5;
    font-family:AzoSans-Light;
}
.hmfinancial .col-md-4
{
    padding-left: 80px;
    padding-top: 60px;
}
.hmfinancial h6
{
    font-size: 22px;
    color: #023f60;
    font-family:AzoSans-Bold;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.hmfinancial h6 span
{
    font-size: 45px;
}
.hmfinancial p
{
    font-size: 20px;
    color: #023f60;
}
.hmchairman
{
    padding: 50px 0px 85px;
}
.hmchairman .col-md-7
{
    padding-left: 80px;
}
.hmchairman h3
{
    color: #2558a5;
    font-family:AzoSans-Light;
    padding: 40px 0px 60px;
}
.hmchairman p
{
    font-size: 30px;
    line-height: 35px;
    padding-right: 30px;
    position: relative;
}
.hmchairman p:before
{
    content: '';
    position: absolute;
    left: -85px;
    top: -25px;
    background-image: url(../images/comma.png);
    width: 73px;
    height: 45px;
}
.hmchairman p span
{
    font-family:AzoSans-Bold;
}
.hmchairman h6
{
    color: #2558a5;
    font-family:AzoSans-Bold;
    padding: 50px 0px 96px;  
}

.hmceo .col-md-6
{
    padding-left: 80px;
}
.hmceo .col-md-6:last-child
{
    padding-left: 0px;
}
.hmceo
{
    background-color: #e7e7e8;
}
.hmceo  h6
{
    padding: 40px 0px 60px;  
}
.hmceo  h3
{
    padding: 40px 0px;
}
.hmlegacy
{
    padding: 90px 0px 84px;
}
.hmlegacy h3
{
 color: #2558a5;
    font-family:AzoSans-Light;
    text-align: center; 
}
.hmlegacy p
{
    font-size: 18px;
    color: #2558a5;
    padding: 25px 140px 40px 140px;
    text-align: center; 
}
.largestnum
{
    background-color: #bed62f;
    padding: 50px 45px;
    overflow: hidden;
}
.largestnum h5
{
    font-size: 45px;
    color: #2658a5;
     font-family:AzoSans-Bold;
     position: relative;
     padding-bottom: 15px;
     margin-bottom: 10px;
}
.largestnum h5:before
{
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: #2658a5;
    max-width:92px;
width: 100%;
height: 8px;
}
.largestnum h6
{
    color: #2658a5;
}
.largestnum .col-md-4
{
    position: relative;
}
.largestnum .col-md-4:after
{
    content: '';
    position: absolute;
    right: 30px;
    bottom: 0px;
    background-color: #ffffff;
    max-width: 1px;
    width: 100%;
    height: 160px;
    top: 0px;
}
.largestnum .col-md-4:last-child:after
{
    display: none;
}
.lbtn
{
    margin: auto;
    text-align: center;
    margin-top: 70px;
}
.hmstrength
{
    padding: 95px 0px 60px;
    background-color: #f5f5f5;
}
.hmstrength .col-md-6
{
    padding-left: 80px;
    padding-right: 82px;
}
.hmstrength h3
{
     color: #2558a5;
    font-family:AzoSans-Light;
    padding-bottom: 30px;
}
.hmstrength p
{
    padding-bottom: 20px;
}
.hmstrength  p.pddingbtm70
{
    padding-bottom: 60px;
}
.hmstrength h6
{
    font-size: 18px;
    color: #2558a5;
    font-family:AzoSans-Bold;
    padding: 25px 0px 20px;
}
.hmcommitted
{
    padding: 88px 0px 53px;
    background-color: #faa526;
}
.whtbg
{
    background-color: #ffffff;
    text-align: center;
    padding: 30px 20px;
}
.committeimg
{
    min-height: 155px;
    display: flex;
    align-items: flex-end;
}
.committeimg img
{
   margin: 0px auto;
}
.hmcommitted h5
{
    padding: 15px 0px 20px;
    font-size: 25px;
    color: #2558a5;
    font-family:AzoSans-Bold;
}
.hmcommitted h5 span
{
    display: block;
}
.hmcommitted p
{
    min-height: 195px;
    padding-bottom: 35px;
}
.hmod
{
    padding: 63px 0px 40px;
}
.hmod h3
{
      color: #2558a5;
    font-family:AzoSans-Light;
    text-align: center;
    padding-bottom: 30px;
}
.bdata
{
    max-width: 980px;
    width: 100%;
    margin: auto;
    display: block;
}
.bodslider .item img
{
    width: auto;
}
.bodslider .item h6
{
    color: #2558a5;
     font-family:AzoSans-Bold;
}

.bodslider .item h6 span
{
    display: block;
    font-family:AzoSans-Regular;
}
.bodslider .item hr
{
    margin: 15px 0px 20px;
    border-top: 1px solid #2558a5;
}
.bodslider .item b
{
    display: block;
    margin-bottom: 10px;
}
.bodtbn
{
    margin:40px auto 0px;
    text-align: center;
}
.hmchairman svg
{
    max-width: 503px;
    width: 100%;
}
.drowline2 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drowline 3s linear;
    animation-fill-mode: forwards;
}
    @keyframes drowline {
        from {
            stroke-dashoffset: 2000;
        }
        to {
            stroke-dashoffset: 0;
        }
    }

.insidefinancial
{
    padding: 0px 0px 50px;
}
.indisdepagehead
{
    padding: 90px 0px 30px;
}
h3.insdhd
{
    padding-left: 15px;
    color: #2558a5;
    font-family:AzoSans-Light;
}
.keybusinesshigh h6
{
    color: #2558a5;
    font-family:AzoSans-Bold;
    padding-bottom: 25px;
}
.keybusinesshigh ul
{
    padding-left: 0px;
    list-style: none;
}
.keybusinesshigh ul li
{
    padding-left: 15px;
    padding: 5px 0px 5px 15px;
    position: relative;
    font-size: 16px;
}
.keybusinesshigh hr
{
    border-top: 1px solid #2558a5;
}
.keybusinesshigh ul li:before
{
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    background-color: #faa526;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.keybusinesshigh
{
    padding-bottom: 60px;
}
.boddetails .container
{
    display: flex;
    flex-wrap: wrap;
}
.boddetails  hr {
    margin: 15px 0px 20px;
    border-top: 1px solid #2558a5;
    max-width: 80%;
}
.boddetails  h6 {
    color: #2558a5;
    font-family: AzoSans-Bold;
}
.boddetails  h6 span {
    display: block;
    font-family: AzoSans-Regular;
}
.boddetails
{
    padding-bottom: 60px;
}
.boddetails  b {
    display: block;
    margin-bottom: 10px;
}
.boddetails p
{
    padding-top: 15px;
    padding-right: 60px;
}
.boddetails .col-md-4
{
    padding-top: 45px;
}
.committeesdt
{
    background-color: #e5e6f3;
    padding: 30px;
    overflow:hidden;
}
.committeesdt ul
{
    list-style: none;
    padding-left: 0px;
}
.committeesdt ul li
{
    font-size: 16px;
    font-family:AzoSans-Bold;
    padding-bottom: 15px;
}
.corporatesnp h6
{
    font-size: 20px;
    font-family:AzoSans-Bold;
    color: #2558a5;
    padding: 30px 0px 20px;
}
.corporatesnp h5
{
    font-size: 16px;
    font-family:AzoSans-Bold;
    padding-bottom: 15px;
}
.corporatesnp p
{
    padding-bottom: 15px;
    padding-right: 30px;
}
.corporatesnp,.stcondetails
{
    padding-bottom: 60px;
}
.stcondetails h6
{
    padding-top: 20px;
}
.stcondetails p
{
    padding-top: 10px;
}
.stcondetails .col-md-4
{
    padding-top: 55px;
}
.ldshipdata .container
{
    display: flex;
    flex-wrap: wrap;
}
.ldshipdata .col-md-3
{
    padding-bottom: 60px;
}
.ldshipdata h6
{
    font-size: 20px;
    font-family:AzoSans-Bold;
    color: #2558a5;
    padding: 15px 0px 5px;
}
.ldshipdata
{
    padding-bottom: 30px;
}
.commpeoplebg
{
    background-color: #e2f4fd;
    padding: 30px 0px;
}
.recognrewtalent
{
    padding: 30px 0px;
     background-color: #f6f6ef;
}
.recognrewtalent h6
{
    font-size: 20px;
    font-family:AzoSans-Bold;
    color: #703695;
    padding-bottom: 20px;

}
.recognrewtalent p
{
    color: #703695;
}
.nurturingledev h6,.commpeoplebg h6
{
    font-size: 20px;
    font-family:AzoSans-Bold;
    color: #2558a5;
    padding-bottom: 20px;
}
.nurturingledev
{
    padding: 30px 0px;
}
.nurturingledev p,.commpeoplebg p,.commpeople p
{
    padding-bottom: 10px;
}
.nurturingledev ul,.commpeoplebg ul
{
    padding-left: 0px;
    list-style: none;
}
.nurturingledev ul li, .commpeoplebg ul li
{
    padding-left: 15px;
    padding: 5px 0px 5px 15px;
    position: relative;
    font-size: 16px;
}
.nurturingledev ul li:before,.commpeoplebg ul li:before
{
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    background-color: #faa526;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.commpeople .col-md-12 p
{
    padding-top: 10px;
}
.commpeople
{
    padding-bottom: 30px;
}
.commpeople h6
{
    font-size: 20px;
    font-family: AzoSans-Bold;
    color: #2558a5;
}
.commpeople p
{
    padding-bottom: 20px;
}
.communityserv .container
{
    display: flex;
    align-items: flex-end;
}
.communityserv  h5
{
    font-size: 22px;
    font-family:AzoSans-Bold;
    color: #2558a5;
    padding-top: 70px;
    border-bottom: 1px solid #2558a5;
    display: inline-block;
    margin-bottom: 10px;
}
.communityserv  h5 span
{
    font-size: 45px;
}
.communityserv p:last-child
{
    font-size: 14px;
}
.communityserv p span
{
    font-size: 20px;
    display: block;
}
.csrfocusemco  h6
{
    font-family:AzoSans-Bold;
    color: #2558a5;
    padding-bottom: 15px;
}
.csrfocusemco ul
{
    padding-left: 15px;
}
.csrfocusemco ul li
{
    font-size: 16px;
      color: #2558a5;
      padding-bottom: 10px;
}
.csrfocusemco hr
{
    border-top: 1px solid #2558a5;
}
.covidother
{
    padding: 10px 0px 60px;
}
.covidother ul.faq-tab
{
    margin-bottom: 20px;
    border-bottom: 0px;
}
.covidother ul.faq-tab li {
    max-width: 50%;
    width: 100%;
}
.covidother ul.faq-tab li a {
    color: #ffffff;
    font-size: 18px;
    border-radius: 0px;
    text-align: center;
    margin-right: 0px;
     background-color: #2558a5;
    border: 1px solid #2558a5;
}
.covidother ul.faq-tab li.active a {
    color: #ffffff;
    font-size: 18px;
    background-color: #6f3693;
    border: 1px solid #6f3693;
    border-radius: 0px;
}
.covidother .tab-content ul
{
    padding-left: 0px;
    list-style: none;
}
.covidother .tab-content ul li
{
    padding-left: 15px;
    padding: 5px 0px 5px 15px;
    position: relative;
    font-size: 16px;
}
.covidother .tab-content ul li:before
{
    content: '';
    position: absolute;
    left: 0px;
    top: 12px;
    background-color: #faa526;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.covidother .tab-content h6
{
    font-size: 16px;
     font-family:AzoSans-Bold;
     padding: 10px 0px;
}
.covidother .tab-content ul li span
{
    display: block;
     font-family:AzoSans-Bold;
     padding-bottom: 10px;
}
.covidother .tab-content p
{
    padding: 10px 0px;
}
.covidother .tab-content h4
{
    font-size: 20px;
    max-width: 310px;
    padding-bottom: 30px;
     font-family:AzoSans-Bold;
}
.covidother .tab-content #f1 h5
{
    font-size: 45px;
    color: #2558a5;
    font-family:AzoSans-Bold;
    padding-top: 20px;
    border-bottom: 1px solid #2558a5;
    padding-bottom: 10px;
    margin-bottom: 15px;
    max-width: 310px;
}
.covidother .tab-content p span
{
    font-family:AzoSans-Bold;
}
.covidother .tab-content #f2 hr
{
    border-top: 1px solid #2558a5;
}
.covidother .tab-content #f2 .col-md-6
{
    padding-left: 0px;
}
.covidother .tab-content #f2 img
{
    padding-top: 15px;
}
.bodcommittesbg
{
    padding-bottom: 60px;
}
.bodcommittesbg img
{
    margin: auto;
    display: block;
}
.bodcommittesbg h6
{
    color: #2558a5;
    font-family:AzoSans-Bold;
    padding: 30px 0px 20px;
}
ul.chrmember
{
    display: flex;
    margin-top: 30px;
}
ul.chrmember li
{
    padding-left: 20px;
    position: relative;
    width: 100%;
    max-width: 40%;
    padding-bottom: 0px;
}
ul.chrmember li:before
{
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #da461f;
    left: 0px;
    top:0px;
    bottom: 0px;
    margin: auto;
}
ul.chrmember li:last-child:before
{
    background-color: #6f3693;
}

.inner-top-sec
{
    margin-top: 100px;
}
.inner-heading
{
    font-size: 40px;
    color: #2558a5;
    font-family:AzoSans-Light;
    padding-bottom: 20px;
}
.l-strength p{
padding-bottom: 20px;
}

.l-strength h4
{
  font-size: 20px;
  color: #2558a5;
   font-family:AzoSans-Bold;
   padding-bottom: 20px;   
}
.embms
{
    margin-top: 80px;
}
.embms h4
{
font-size: 20px;
  color: #2558a5;
   font-family:AzoSans-Bold;
   padding-bottom: 20px; 
}
.embms p{
    padding-bottom: 15px;
}
.mt-20{
margin-top: 20px;
}
.sp-img
{
    margin-top: 15px;
    margin-bottom: 40px;
}
.sp-img1
{
    margin-top:80px;
}
.embms h5
{
    color: #703695;
    font-size: 16px;
    line-height: 20px;
    font-family:AzoSans-Regular;
    padding-bottom: 20px;
}
.strength-icon
{
    padding-top: 10px;
    padding-bottom: 20px;
}
.p-safety
{
    background-color: #f6f6ef;
    padding: 30px 0px;
    margin-top: 20px;
}
.p-safety h3
{
color: #703695;
font-size: 20px;
font-family:AzoSans-Bold;
padding-bottom: 20px;
}
.p-safety p
{
    color: #703695;
    font-size: 16px;
    line-height: 20px;
    font-family:AzoSans-Regular;
}
.embms1
{
    margin-top: 30px;
    margin-bottom: 80px;
}
.btm-link-left a, .btm-link-right a
{
    background-color: #e7e7e8;
    padding: 50px 0px 20px 0px;
    display: inline-block;
    width: 100%;
    color: #2558a5;
    min-height: 130px;
}
.btm-link-left a:hover, .btm-link-right a:hover{
background-color: #703695;
}
.btm-link-left a:hover p, .btm-link-right a:hover p{
    color: #fff;
}
.btm-link-left a:hover img, .btm-link-right a:hover img{
filter: brightness(0) invert(1);
}
.l-rooted p{
font-size: 18px;
line-height: 24px;
color: #2558a5;
}
.green-bg
{
    background-color: #bed62f;
    padding: 40px 0px;
    margin-top: 20px;
    overflow: hidden;
}
.green-bg .col-md-3{
    border-right: 1px solid #fff;
    min-height:150px;
}
.green-bg .col-md-3:last-child
{
border-right: none;
}
.green-bg h2
{
    font-size: 45px;
    color: #2658a5;
    font-family:AzoSans-Bold;
    position: relative;
    padding-bottom:20px;
}
.green-bg h2:after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #2658a5;
    width: 100px;
    height: 10px;
}
.green-bg p
{
    color: #2658a5;
    font-size: 20px;
    line-height: 26px;
    padding-top: 5px;
}
.bse-nse
{
    margin-top: 40px;
}
.bse-nse h3
{
    font-size: 20px;
    color: #703695;
    font-family:AzoSans-Bold;
    margin-top: 30px;
    margin-bottom: 5px;
}
.bse-nse h6{
    font-size: 20px;
    font-family:AzoSans-Regular;
    margin-bottom: 30px;
}
.bse-nse h6 span{
    padding-left: 40px;
}
.bse-nse h5
{
 color: #703695;
 font-size:16px;
    font-family:AzoSans-Regular;
    line-height: 20px;
}
.listing-ceremony
{
    background-color: #e7e7e8;
    padding: 35px 0px;
    margin-top: 40px;
    margin-bottom: 10px;
}
.listing-ceremony h4
{
font-size: 20px;
    color: #2558a5;
    font-family:AzoSans-Bold;
    margin-bottom: 20px;
    margin-top:20px;
}
.awards-accolades h5
{
  font-family:AzoSans-Bold;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 30px;
}
.awards-accolades h5 span{
font-family:AzoSans-Regular;
}
.awards-accolades p{
    padding-bottom: 20px;
}
.campsy
{
margin-top: 60px;
margin-bottom: 100px;
overflow: hidden;
}
.ceo-msg h4
{
    font-size: 30px;
    line-height: 36px;
    position: relative;
    margin-top: 100px;
}
.ceo-msg h4 span{
font-family:AzoSans-Bold;
}
.ceo-msg h4:before
{
    content: '';
    position: absolute;
    top: -20px;
    left:-90px;
    background-image: url(../images/quote.png);
    width: 73px;
    height: 45px;
}
.ceo-msg h3
{
font-size: 20px;
font-family:AzoSans-Bold;
color: #2558a5;
margin-top: 60px;
margin-bottom: 30px;
}
.ceo-msg p{
    padding-bottom: 20px;
}

.mda-panel .panel-title > a:before {
    float: right !important;
    content: '-';
    position: absolute;
    left:15px;
    font-size:24px;
    color: #f5821f;
    margin-top:0px;
    font-family:AzoSans-Bold;
}
.mda-panel .panel-title > a.collapsed:before {
    float: right !important;
    content: '+';
    position: absolute;
    left:15px;
    font-size:24px;
    color: #f5821f;
    margin-top:0px;
    font-family:AzoSans-Bold;
}

.mda-panel .panel-heading h4 {
    font-size:20px;
    color: #2558a5;
    font-family:AzoSans-Bold;
}
.mda-panel .panel-body p{
    padding-bottom: 20px;
}
.mda-panel.panel-group .panel-heading+.panel-collapse>.panel-body
{
    border:none;
    padding-left:30px;
    font-size: 16px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 30px;
}
.mda-panel .panel-default
{
    border-left:none;
    border-right: none;
    box-shadow: none;
    border-top:none;
    border-radius: 0px;
    border-bottom:1px solid #949699;
}
.mda-panel .panel-heading
{
    background-color:transparent;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding-left: 30px;
    padding-right: 0px;
}

.mda-panel .panel-title > a:focus
{
    outline: none;
    text-decoration: none;
}

.sincerely
{
margin-top: 70px;
}
.sincerely h4
{
 font-size: 20px;
font-family:AzoSans-Bold;
color: #2558a5;
margin-top: 30px;
margin-bottom: 5px;  
}
.sincerely h5{
    color: #2558a5;
    margin-bottom: 120px;
}

.cp-structure h4
{
font-size: 20px;
color: #2558a5;
font-family:AzoSans-Bold;
margin-bottom: 20px;
}
.cp-structure p{
    padding-bottom: 15px;
}
.pru 
{
    margin-top: 20px;
}
.pru ul
{
    list-style: none;
    padding-left: 15px;
}
.pru ul li{
    position: relative;
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 20px;
}
.pru ul li:after
{
    content: '';
    position: absolute;
    left:-15px;
    top: 7px;
    width: 6px;
    height: 6px;
    background-color: #faa526;
    border-radius: 50px;
}

.robost-infa
{
    background-color: #e7f6fe;
}
.robost-infa h3, .robost-infa p
{
    color: #2558a5;
}
.pru.raising h5
{
    border-bottom: 1px solid #703695;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
.service-bar
{
    margin-bottom:30px;
}
.service-bar h3
{
    font-size:22px;
    font-family:AzoSans-Bold;
    color: #2558a5;
    border-bottom: 1px solid #7899aa;
    padding-bottom: 10px;
}
.service-bar h3 span{
font-size: 45px;
}
.service-bar p{
    font-size: 20px;
    padding-top:5px;
    line-height: 22px;
}
.service-bar p span
{
    display: block;
    font-size: 14px;
}
.smiley-img
{
    margin-top: 20px;
}
.mutual-services
{
    background-color: #e6e7e8;
    padding: 20px 0px;
    margin: 40px 0px 50px 0px;
}
.portfolio-box
{
    border: 1px solid #939393;
    padding: 30px 15px 0px  15px;
    text-align: center;
    min-height: 360px;
    margin-bottom: 30px;
}
.portfolio-box h6
{
    color: #2558a5;
    font-size: 20px;
    line-height: 26px;
    padding-top: 20px;
    padding-bottom: 15px;
}
.pru1
{
    margin-bottom: 70px;
}
.s-wd {
    width: 100%;
}
.n-mdl-inner
{
    overflow: hidden;
}
.close2 {
    opacity: 1;
    margin-top: 10px;
    margin-right: 10px;
    position: relative;
    z-index: 9999;
}
.s-wd h5
{
    font-size: 30px;
    font-family:AzoSans-Light;
    color: #703694;
    padding-bottom: 30px;
}
.s-wd p
{
    padding-bottom: 15px;
}
.s-wd p:last-child
{
    padding-bottom: 45px;
    font-size:18px;
    font-family:AzoSans-Bold;
    color:#703694;
}

/*sanni style*/
.inner-img-cont {
    width: 100%;
    display: inline-block;
}
.paraboldcolor
{
    font-size: 18px;
    color: #703695;
    padding-top: 10px;
}
.inner-img-cont p {
    font-size: 16px;
    color: #703695;
}
.icon-contents.bg-clr {
    background-color: #f6f6ef;
    padding: 15px;
    margin-bottom: 20px;
}
.inner-img-cont h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #6f3693;
    margin-bottom: 15px;
}
.hmfinancial.inner-listd {
    background-color: transparent;
    padding: 0px 0px 20px 0px;
}
.hmfinancial.inner-listd .col-md-4 {
    padding-left: 15px;
    padding-top: 20px;
    display: inline-block;
}
.hmfinancial.inner-listd  h6 span {
    font-size: 45px;
    color: #2558a5;
}
.hmfinancial.inner-listd h6 {
    font-size: 22px;
    color: #2558a5;
    font-family: AzoSans-Bold;
    border-bottom: 1px solid #2558a5;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.covidother ul.faq-tab li.new-width {
    max-width: 32%;
    width: 100%;
    margin: 5px;
}
.covidother ul.faq-tab li.new-width a {
    padding: 10px;
    font-size: 16px;
}
.covidother ul.faq-tab li.new-width.active a {
    font-size: 16px;
}

.tab-inner-cont h3 {
    color: #2558a5;
    font-size: 20px;
    font-weight: bold;
}
.tab-inner-cont {
    width: 100%;
    display: inline-block;
    padding: 20px 0px;
}
.tab-inner-cont img {
    margin-bottom: 20px;
}
.inner-img-cont img {
    margin-bottom: 15px;
}
.general-cont h3 {
    color: #2558a5;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.general-cont {
    width: 100%;
    display: inline-block;
    padding: 30px 0px;
}
.general-cont p {
    margin-bottom: 15px;
}
.covidother.remove-btm-pad {
    padding: 0px;
}
.brder-btms {
    border-bottom: 1px solid #949699;
    margin-bottom: 35px;
}
ul.list-orange li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 10px;
    background-color: #faa526;
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.list-orange li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
}
ul.list-orange {
    padding-left: 0px;
    list-style: none;
}