
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800|Open+Sans:300,400,600,700,800&display=swap');

body {
	font-family: 'Open Sans', sans-serif;
	text-align: justify;
	color: #252525;
	font-size: 1rem;
}

a { text-decoration:none; }

header {
	background: #fff;
	width: 100%;
}
.headerTop {
	background-color: #C50939;
	width: 100%;
	clear: both;
	float: left;
	font-size: 11px;
	padding: 5px;
	margin-bottom: 3px;
	color: #fff;
}
.headerTopLeft {
	float: left;
}
.headerTopRight {
	float: right;
}
.headerTopRight .topList li {
	margin: 0;
}
.logo {
	position: absolute;
}
.logo img {
    margin-top: 4px;
	width:260px;
}
 @media(max-width:767px) {
	 
.logo img {
	width: 185px;
}
}
.headerBottom {
	float: left;
	width: 100%;
}
.topList {
	margin: 0;
	padding: 0;
	display: flex;
}
.topList li {
	float: left;
	padding-right: 0px;
	position: relative;
	padding-left: 20px;
}
.topList li a {
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}
/*.topList li.email-address:before {
	content: "\f003";
	font-family: 'FontAwesome';
	position: absolute;
	left: 26px;
	font-size: 16px;
	top: -2px;
}*/
.topList li.phone-icon:before {
	content: "\f10b";
	font-family: 'FontAwesome';
	position: absolute;
	left: 31px;
	font-size: 24px;
	top: -8px;
}
 @media( max-width: 767px ) {
.topList li a {
	font-size: 12px;
}
.topList li {
	padding-left: 0px;
}
.topList li.phone-icon::before {
	left: -15px;
}
.topList li.email-address::before {
	left: -20px;
}
.topList li.phone-icon {
	margin-right: 24px;
}
.topList li.email-address {
	margin-left: 14px;
	margin-right: -5px;
}

.phonenumber span {
	display: none;
}
.headerMid {
	display: none;
}
}
/*** Menu ***/

#mainHeader {
	background-color: #fff;
	/* position: fixed; */
	width: 100%;
	position: relative;
	z-index: 999;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	display: inline-block;
}
#mainHeader #mainMenu {
	float: right;
	margin: 0;
}
#mainHeader ul {
	margin-top: 0px;
	padding: 0;
	list-style: none;
	margin-bottom: 0;
}
#mainHeader #mainMenu > ul > li {
	float: left;
	padding: 20px 15px 20px;
}

#mainHeader #mainMenu > ul > li:last-child {
	padding-right: 0;
}
#mainHeader #mainMenu ul li a {
	position: relative;
}
#mainHeader #mainMenu > ul > li > a {
	color: #000;
	display: block;
	font-weight: 600;
	padding: 5px 0;
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Montserrat', sans-serif;
}
#mainHeader #mainMenu > ul > li > a.active {
	color: #c5010b;
}
/** #mainHeader #mainMenu ul li a:after {
	background-color: #c5010b;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
} **/

#mainHeader #mainMenu ul li a.active:after {
	background-color: #c5010b;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
}
#mainHeader #mainMenu ul li a:hover {
	text-decoration: none;
	color: #c5010b;
}
.dropdown {
	position: relative;
}
.dropdown:after {
	content: '\f107';
	font-family: fontAwesome;
	position: absolute;
	top: 23px;
	right: 10px;
}

/** #mainHeader #mainMenu ul li a:hover:after {
	width: 100%;
} **/

@media(max-width:767px) {
#mainHeader #mainMenu {
	position: fixed;
	background-color: #fff;
	left: 0;
	top: 81px;
	padding: 0;
	width: 100%;
	box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
	margin: 0;
	/* -webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	display:none; */
	
	max-height: 0;
	overflow-y: hidden;
	-webkit-transition: max-height 0.5s ease-in-out;
	-moz-transition: max-height 0.5s ease-in-out;
	-o-transition: max-height 0.5s ease-in-out;
	transition: max-height 0.5s ease-in-out;
}
#mainHeader #mainMenu.active {
	left: 0;
	padding: 0;
	right: 0;
	top: 81px;
	max-height: 100vh;
}
#mainHeader #mainMenu > ul > li {
	width: 100%;
	padding: 0px 15px;
	position: relative;
}
#mainHeader #mainMenu > ul > li.parent i.fa {
	background-color: #fff;
	font-size: 25px;
	float: right;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 11px;
	line-height: 20px;
	text-align: center;
	right: 15px;
}
#mainHeader #mainMenu > ul > li.active i.fa-angle-right:before {
	content: "\f107";
}
.submenu {
	display: none;
}
#mainHeader #mainMenu > ul > li.active .submenu {
	display: block;
	padding: 10px 0px 0px 10px;
}
#mainHeader #mainMenu > ul > li.active .submenu li a {
	color: #000;
	font-size: 14px;
	padding: 5px 0px;
	float: left;
	width: 100%;
	border-bottom: #ccc solid 1px;
}
.mobileMenuToggle {
	float: right;
	position: relative;
	width: 30px;
	height: 40px;
	margin: 10px 5px 5px 0;
	cursor: pointer;
	z-index: 999;
}
.mobileMenuToggle .bar {
	background-color: #675123;
	position: absolute;
	width: 30px;
	height: 2px;
}
.mobileMenuToggle .bar1 {
	top: 8px;
}
.mobileMenuToggle .bar2 {
	top: 16px;
}
.mobileMenuToggle .bar3 {
	top: 24px;
}
.mobileMenuToggle.active .bar2 {
	display: none;
	transition-duration:0.3s;
	-webkit-transition-duration:0.3s;
}
.mobileMenuToggle.active .bar1 {
	top: 17px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	transition-duration:0.3s;
	-webkit-transition-duration:0.3s;
}
.mobileMenuToggle .bar1, .mobileMenuToggle .bar3 { 
transition-duration:0.3s; -webkit-transition-duration:0.3s; }
.mobileMenuToggle.active .bar3 {
	top: 18px;
	-webkit-transform: rotate(-44deg);
	-moz-transform: rotate(-44deg);
	transform: rotate(-44deg);
	transition-duration:0.3s;
}
.dropdown:after {
	right: 20px;
	top: 10px;
}
}
 @media(min-width:768px) {
.mobileMenuToggle {
	display: none;
}
#mainHeader #mainMenu > ul > li > a {
}
.submenu {
	border-top: solid 1px #ddd;
	background-color: #fff;
	display: none;
	position: absolute;
	left: auto;
	top: 100%;
	width: 300px;
	box-shadow: 0 2px 2px rgba(0,0,0,0.3);
}
.submenu li {
	line-height: 30px;
}
.submenu li a {
	color: #fff;
	width: 100%;
	float: left;
	line-height: 32px;
	font-size: 15px;
	border-bottom: #bd3d1b solid 1px;
	padding: 5px 15px;
    font-weight: 600;
}

#mainHeader #mainMenu ul li ul.submenu li a:hover { 
color: #ffffff !important; background: #000; }

.submenu li:last-child a {
	border: none;
}
#mainHeader #mainMenu > ul > li:hover .submenu {
	display: block; background:#C50939;
}
#mainHeader #mainMenu > ul > li.parent i.fa {
	display: none;
}
}
.mobile-arrow {
	position: absolute;
	top: 5px;
	right: 15px;
	padding: 5px 10px;
	font-size: 20px;
	font-weight: 600;
	cursor: pointer;
}
.headerMid {
	display: flex;
	justify-content: flex-end;
}
.headerMid ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerMid ul li {
	padding: 0px 10px;
}
.headerMid .phonenumber {
	color: #000;
	font-size: 15px;
	font-weight: 600;
	line-height: 10px;
}
.headerMid .joinus {
	background: #ad0040;
	color: #fff;
	font-size: 12px;
	padding: 5px 15px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 600;
}
 @media(min-width:768px) {
.topList .phonenumber, .topList .joinus {
	display: none;
}
#mainHeader #mainMenu > ul > li.dropdown { 
padding: 20px 25px 20px 15px; }
}
@media(max-width:767px) {
#mainHeader #mainMenu > ul > li > a {
	color: #000;
	display: block;
	padding: 10px 0;
	border-bottom: #ccc solid 1px;
}
.headerMid {
	display: none;
}
.headerTopRight {
	float: left;
	width: 100%;
}
.topList {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
}
.homepage-banner {
	width: 100%;
	margin-top: -5px;
}
.pageWrapper {
	min-height: 1500px;
}
.swiper1 {
	margin: 0 auto;
	text-align: center;
}
.cciListing {
	background-color: rgba(0,0,0,0.6);
	position: absolute;
	z-index: 999999;
	padding: 25px 19px;
	height: 100%;
	top: 0;
	width: 450px;
	right: 9%;
}
.cciList-col {
	width: 100%;
	display: inline-block;
	margin-bottom: 15px; border-bottom:#5a5a5a solid 1px; padding-bottom:15px;
}
.cciList-col:last-child { border:none;}
.cciList-col .media-body {
	color: #fff;
	font-size: 14px;
	text-align: left;
	overflow: hidden;
}
.cciList-col img {
	width: 80px;
	margin-right: 15px;
}
.cciList-col .media-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1ece40;
}
.cciList-col .media-body p {
	line-height: 18px;
	font-size: 14px;
	margin-bottom: 10px;
	color: #e7e7e7;
}
.btn-moreDetails {
	position: relative;
	color: #fff;
	font-weight: 600;
}
.btn-moreDetails:after {
	content: '\f105';
	font-family: fontAwesome;
	position: absolute;
	right: -15px;
	color: #fff;
	top: -3px;
	font-size: 16px;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.btn-moreDetails:hover {
	color: #fffebb;
	text-decoration: none;
}
.btn-moreDetails:hover:after {
	right: -20px;
	font-size: 18px;
}
.cciListing h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 25px;
    text-transform: uppercase;
}

 @media(min-width:767px) and (max-width:1699px) {
.cciListing {
	right: 9%;
}
}
 @media(min-width:1700px) and (max-width:2000px) {
.cciListing {
	right: 17%;
}
}

@media(max-width:767px) {
.cciListing {
	position: relative;
	background-color: rgba(0,0,0,1);
	min-height: 400px;
	width: 100%;
	left: 0;
	right: 0;
}
.swiper-notification {
	display: none;
}
.swiper-button-next, .swiper-button-prev {
	top: 10% !important;
}
.swiper1 .container {
	margin: 0 auto;
	padding: 0;
}
}

.pageWrapper { width:100%; padding:0px;}

.partner-aboutcontent { 
	width: 100%;
    line-height: 25px;
    padding: 20px; 
}

.partners-logo { padding:100px 0px; }

.partners-logo {
	width: 100%;
	text-align:center;
}
.partners-logo img { margin-bottom:25px; }
.talkto-experts { padding:50px 0px; }
.talkto-experts h2 {      text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px; }
	
.partners-content { text-align:left; }
.shadow {
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important; 
}
.readMore {
	    color: #000;
    font-weight: 600;
}

.partners-content .card-body { min-height:240px; border-radius:10px; overflow:hidden; }
.partners-content .card-body:hover, .partners-content .card-body.active { background:#C50939; color:#fff; }
.partners-content .card { border:none; }
.partners-content .col-lg-4 { margin-bottom:25px; }

h3.content-title {
	    color: #C50939;
    font-weight: 600;
    font-size: 25px;
}
.full-content-section { margin-top:50px; }
.card-header .title {
    font-size: 17px;
    color: #000;
    font-weight: 700;
}
.card-header .accicon {
  float: right;
  font-size: 20px;  
  width: 1.2em;
}
.card-header{
  cursor: pointer;
  border-bottom: none;
}
.card{
  border: 1px solid #ddd;
}
.card-body {
    border-top: 1px solid #ddd;
    font-size: 16px;
    color: #484848;
}
.card-header:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}

.society-managementBanner .navbar a { color:#000; }
	.hro.society-managementBanner .hero h1 { color:#084c8a !important; }
	.hro.society-managementBanner p { color:#000; }
	.society-management-content p { font-size: 1.2rem; line-height: 30px !important; }
	.productImg img { border-radius:20px; }
	.society-management-col {     
	min-height: 310px;
    background: #fff;
    margin-top: 75px;
    border-radius: 10px;
    padding: 25px; position:relative; border:transparent solid 2px; text-align:left; }
	
	.infra-management .society-management-col { min-height:575px; }
	.rpa-page .society-management-col { min-height:340px; } 
	
	.Infrastructure-01 { }
	.Infrastructure-01 li { font-size:16px; list-style:none; }
	.Infrastructure-01 li i { padding-right:5px; }

	.infra-benefite .Infrastructure-01 li { list-style:circle; }
	
	.society-management-col:hover {background-color: #C50939; color: #fff;}
	.society-para { padding-top:0px; }
	.society-para h4 { font-size: 14px; font-weight: 700; color: #000; border-bottom: #ccc solid 1px; padding-bottom: 7px; }
	.society-para p { margin-top: 15px; font-size: 17px; }
	.society-management-about { background-color:#fff; }
	.btn-learnmore {     color: #c90809;
    font-weight: 600; }
	.box-header { padding:0px; }
	.box-header img {     
	    width: 80px;
		position: absolute;
		left: 24px;
		top: -41px;
		border-radius: 50px;
		background: #fff;
	}
	.box-header h4 {
    font-size: 1.3rem;
    display: flex;
    justify-content: left;
    width: 100%;
    font-weight: 700;
    height: 45px;
    align-items: center; line-height:30px; margin-top:47px;
}

.infra-benefite {     background-image: url(../images/infra-shape-bg.png);
    padding: 100px 0px;
    background-size: cover;
    background-position: top center; }
	
.infra-be { position:relative; }
.infraimg { position: absolute;
    left: 0;
    z-index: 9;
    top: 10%; }
	
.infra-beefite-content { background-color:#fff; padding:50px 50px 50px 160px; }

.infra-beefite-content h2 {     color: #C50939;
    font-weight: 600;
        margin-bottom: 30px;
    padding-top: 20px; text-align: left; }

.partnerpage-bg { background:#fff; border-radius:5px; }

.infra-content {
    color: #fff;
}

/*** Near By ccl ***/

.nearBy-ccl { background-image:url(../images/nearby-ccl-bg.jpg); background-size: cover; background-repeat: no-repeat; padding:50px 0px; width:100%; position:relative; text-align:center;}
.nearBy-ccl h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #1ca336;
    text-align: center;
    margin-bottom: 35px;
	text-transform:uppercase;
}
.nearBy-ccl h2 span { color: #363535; }
.nearBy-ccl-col { background:#fff; text-align:center; border:#64a506 solid 2px; margin:100px auto 0 auto; overflow:auto; min-height:auto; padding:70px 20px 20px 20px;}
.nearBy-ccl-col h2 {color:#000; font-size:16px; font-weight:600;}
.nearBy-ccl-col h3 { font-weight:600; font-size:16px; color:#000;}
.nearBy-ccl-col p {
    color: #868585;
    font-size: 14px;
}
.nearBy-ccl-col .btn-moreDetails {
    color: #ad0040;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
.nearBy-ccl-col .btn-moreDetails:after { color:#ad0040; top:-3px;}
.nearBy-ccl-col img { border-radius:100px; position:absolute; top:0; left:0; right:0; text-align:center; margin:0 auto; width:150px; border:#fff solid 4px;}

.nearBy-ccl-row { width:100%; position:relative;}

/** Swiper Arrow css **/

.swiper-button-next.swiper-button-next { 
background-image:url("");}
.swiper-button-prev.swiper-button-prev { 
background-image:url("");}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled { opacity:1; }

.swiper-button-next.swiper-button-next:active { 
border:none !important; 
box-shadow:none !important; 
outline: none !important; }

.swiper-button-prev.swiper-button-prev1:before, 
.swiper-button-next.swiper-button-next1:before, 
.swiper-button-prev.swiper-button-prev2:before, 
.swiper-button-next.swiper-button-next2:before  {
	font-family:fontAwesome;
	position:absolute;
	font-size:20px;
}

.swiper-button-prev.swiper-button-prev1:before { content:'\f053'; left:0; color:#fff;}.swiper-button-next.swiper-button-next1:before { content:'\f054'; right:0;color:#fff;}

.swiper-button-prev.swiper-button-prev2:before { content:'\f104'; left:0; color:#000; background:#fff; padding:0px 10px;}.swiper-button-next.swiper-button-next2:before { content:'\f105'; right:0;color:#000; background:#fff; padding:0px 10px;}

.swiper-pagination2 { display:none;}

.bannerbottom-green-bg { background-color: #1da838; padding: 5px 0px; text-transform: uppercase; }
.bannerbottom-green-bg a {color: #fff;}

.about-section { padding: 40px 0px; font-family: 'Montserrat', sans-serif; }
.about-section .about-content { padding: 20px 15px; color: #868585; box-shadow: 0px 3px 18px 10px #f7f7f7; }
.about-section h2 {
    color: #000;
    font-weight: 600;
    font-size: 32px;
    margin: 0px 0px 10px;
}
.about-section h2 span { font-size:42px; font-weight:900; }
.about-sectionBottom { margin-top:50px; }
.about-sectionBottom p { font-size:19px; }
.about-btn {
    color: #3c3c3c;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}
.about-btn:after {
    content: '\f105';
    position: relative;
    top: 0;
    left: 8px;
    right: 0;
    font-family: 'fontAwesome';
    font-weight: 600;
    font-size: 16px;
    color: #ad0040;
}
.gld-services-content { color:#fff; padding-top:0px; padding-right: 15px; }
.gld-services-content h3 {     font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.2rem;
 }
.about-content .btn-moreDetails { color:#0e0e0e; font-weight:normal; font-size:13px; font-weight:600;} 
.about-content .btn-moreDetails:after { color:#ad0040;}

.gld-services {
	background-image: url(../images/who-we-are-bg.jpg);
	background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 60px 0 60px 0;
    position: relative;
    color: #fff;
}

.gld-services-botcontent {     
	background: rgb(255, 255, 255);
    padding: 15px;
    color: rgb(66, 66, 66);
    font-size: 15px;
    min-height: 400px;  
}
.gld-services-botcontent h3 { font-weight:600; font-size:20px; font-weight:600; color:#C50939; }
.gld-services-row { position:relative; top:-85px; }
.gld-services-row .col-lg-4 { padding:0px 3px; }

/** eventGallery **/

/** .eventGallery { 
width:100%; background-color:#efeff0; 
background-image:url(../images/bg.png); 
background-position:left center; background-repeat:no-repeat; min-height:500px; background-size: cover;} **/

.eventGallery { 
	width:100%;
   /** background: #ededed; **/
    padding: 50px 0px;
    color: #fff;
    position: relative;

}

.address h5 { font-weight:700; }

.egallery { text-align:left; min-height:480px; margin-bottom:50px; background-color:#fff; position: relative; }
.egallery-content { padding:15px 15px 5px 15px; height:85px; }
.egallery-content h3 { color:#000; font-size:18px; font-weight:700;}
.egallery-content p { color:#252525; font-size:14px;}
.eventgallery-col { padding:20px 30px; text-align:center; border-radius:10px;} 
.eventgallery-col h2 { color:#000; font-size:30px; text-transform:uppercase; margin-bottom:50px; font-weight:700;}
.btn-viewall { color:#fff; background:#C50939; border-radius:100px; padding:5px 30px; margin-top:10px; font-weight:600; font-size:18px; display:inline-block; text-transform:uppercase; text-align:center;}
.btn-viewall:hover { background:#000; color:#fff; text-decoration:none;}
.sangamSection { width:100%; padding:50px 0px;}

.btn-readmore { color:#C50939; 
	margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    text-transform: revert;
    text-align: center; 
	position: absolute;
	bottom: 20px;
}

.btn-readmore:hover { border-radius: 50px;}


.sangamAwards { width:100%; padding:50px 0px; 
text-align:center;} 

.sangamAwards h2 { font-size: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #1ca336;
    text-align: center;
    margin-bottom: 35px;
    text-transform: uppercase;}
	
.sangamAwards h2 span { color:#000;}
.award-col { margin-top:25px; background:#5ebf71; padding:10px;}
.award-col h3 { font-size:16px; font-weight:600; line-height:20px; color:#fff; margin:0; padding-top:10px;}

.btn-fill { background:#ad0040; color:#fff; border-radius:0px; margin-top:10px;}
.btn-download { background:#323232; color:#fff; border-radius:0px; margin-top:10px;}
.btn-fill:hover, .btn-download:hover { background:#ad0040; color:#fff; text-decoration:none;}

.sangamList { background:#ad0040; padding:5px 20px; color:#fff; font-size:16px;}
.sangamList ul { margin:0; padding:0; list-style:none;} 
.sangamList ul li { border-bottom:#9b0039 solid 1px; padding-bottom:0px; padding-top:15px; font-weight:600;}
.sangamSection h2, .sangamSection h3 { font-size:30px; font-weight:700; text-transform:uppercase; margin-bottom:20px;}

.btnLink { color:#fff; font-weight:600; text-decoration:underline; margin-top:17px; display:inline-block; padding-bottom:15px;}
.btnLink:hover { color:#fff; text-decoration:underline;}
.listDate { font-style:italic; font-size:12px; font-weight:normal;}

.testimonial { background-color:#f5f5f5; padding:50px 0px; color:#000; text-align:left; width:100%; position:relative; display:none; }
.clientTesting { margin: 25px;
    position: relative;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    color: #383838;
    font-size: 15px;
    line-height: 26px; z-index:999; }

.clientTesting:after {
	content:'';
	background-image:url(../images/right-comma.jpg);
	width:63px;
	height:49px;
	position:absolute;
	right: 20px;
    bottom: 15px;
}
	
.afterbg {
	background:#e15029;
	width:80%;
	height:100px;
	border-radius:10px;
	position:absolute;
	left:0;
	right:0;
	margin:0 auto;
	bottom:15px;
	z-index:1;
}


/*--------------------------------------------------------------
# Become a partner
--------------------------------------------------------------*/

.becomea-partner {
	background-image: url(../images/become-partnerbg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	background-color: #f5f7f7;
	padding: 60px 0px;
  }
  
  .become-whitebox { background-color: #fff; border-radius: 10px; min-height: 385px; }

  .become-whitebox { padding: 0px 90px 0px 130px;}

  .applynow-btn { background-color: #e60449;
	border-radius: 50px;
	color: #fff;
	padding: 6px 20px;
	text-transform: uppercase;
	font-weight: 800; 
	align-self: flex-start;
  }

  .become-whitebox.leftbox { padding: 0px 160px 0px 50px; }
  
  .partner-content { padding: 20px 0px;}
  
	.applynow-btn:hover {
	  background-color: #000;
	  color: #fff;
	}
  
	.become-whitebox h2 {
	  font-weight: 700;
	  color: #000;
	}

	.become-whitebox h2 span { color: #e60449; }

.left-position { left: 50px;}
.right-position { right: -65px;}

.testimonial-quotes { position:relative;}
.section-header { text-align:left; margin-left:30px; }
.section-header p { margin:0; padding:0; color:#C50939; font-weight:600; }
.section-header h2 { font-weight:600; font-size:35px; }
.clientName { font-style:italic; font-weight:600; font-size:16px; color:#000; }
.clientName span { color:#C50939; }
.testimonial { text-align:center;}
.testimonial .swiper-pagination5 { text-align:center; margin:0 auto; display:inline-block;}

.swiper-pagination4 .swiper-pagination-bullet { opacity:1; background:#fff; width:12px; height:12px; }
.swiper-pagination4 .swiper-pagination-bullet-active { opacity:1; background:#12cd3c; width:12px; height:12px; } 

.swiper-pagination5 .swiper-pagination-bullet { opacity:1; background:#fff; width:12px; height:12px; margin:0px 5px; }
.swiper-pagination5 .swiper-pagination-bullet-active { opacity:1; background:#d14a26; width:12px; height:12px; } 

.footerLogo-section { text-align:center; padding-top:55px; }

.footer { background-position:center center; width:100%; padding:50px 0px 0px; color:#000; background-repeat:no-repeat; background-size:cover; background-color:#fff; box-shadow:0 0rem 6rem rgb(0 0 0 / 18%); }

.address { margin-top:25px;}
.address .phonenumber { margin-top:20px;}
.address a { color:#000;}
.address p { margin-bottom:0;}
.footer-bot-row { text-align:center; color:#fff; padding:10px; background:#000;}
.footer .foooterMenu-title { font-weight:700; font-size:16px; text-transform:uppercase; margin-top:15px;}
.footer-bot-row { margin-top:35px;}
.footer ul { margin:0; padding:0;}
.footer ul li { list-style:none; line-height:18px; padding-bottom:8px;}
.footer ul li a { color:#000; font-size:14px;}
.collapse-photo img:first-child { margin-bottom:25px;}
.swiper-pagination3 { display:none;}

@media (max-width:991px) and (min-width:768px) {
	.left-position {
		left: 0;
	}
	.right-position {
		right: 0;
	}
	.become-whitebox.leftbox {
		padding: 50px 50px 50px 100px;
	}
}

@media(min-width:768px){
.swiper-button-next.swiper-button-next2 { right:-45px;}
.swiper-button-prev.swiper-button-prev2 { left:-45px;}
}


@media(max-width:767px){
	
	.bannerbottom-green-bg a { font-size:13px; 
	text-align:center;}
		
	.swiper-pagination2 .swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0px 5px; }

.swiper-pagination2 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ad0040;
    width: 12px;
    height: 12px;
}
.swiper-pagination2 { display:block; text-align: center;
    width: 100%; margin: 15px 0px;}

	.swiper-button-prev.swiper-button-prev2, 
	.swiper-button-next.swiper-button-next2 { 
	display:none !important;}
	
	.nearBy-ccl .btn-viewall { margin-top:60px;}
	
	.swiper-pagination { text-align:center; margin:0 auto; left:0; right:0;}
	
	.swiper-pagination3 .swiper-pagination-bullet {
    opacity: 1;
    background: #000;
    width: 12px;
    height: 12px;
    margin: 0px 5px; }

.swiper-pagination3 .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ad0040;
    width: 12px;
    height: 12px;
}
	.swiper-pagination3 { display:block;}
	.eventGallery {}
	.sangamSection h2, .sangamSection h3 { margin-top:20px;}
	.about-section h2 { margin-top:30px; }
	
	.swiper-button-next, .swiper-button-prev { top: 50% !IMPORTANT; margin-top: 0; }
	
	.about-section { padding:40px 20px 0 20px; }
	.about-sectionBottom { margin-top:20px; }
	
	.gld-services { margin:35px 0px 0px; padding:50px 0px; }
	.gld-services-content h3 { font-size:35px; }
	.gld-services-content { padding-top:35px; }
	.gld-services-row { position: relative; top: 0; padding: 30px; }
	
	.gld-services-row .col-lg-4:last-child .gld-services-col { margin: 0 auto; text-align: center; margin-top: 5px; }
	.gld-services-row .col-lg-4:last-child .gld-services-col img { width:100%; }
	.gld-services-row .col-lg-4:last-child .gld-services-col .gld-services-botcontent { min-height:auto; }
	.btn-viewall { margin-top:50px; } 
}

/*** contactus Page ***/

.contact-page { padding:50px 0px 0px;}
.form-control {
	border: 1px solid #c1c1c1;
    box-shadow: 1px 1px 3px #858585 inset;
    color: #878a8c;
    font-weight: 700;
    padding: 6px 24px 6px 18px!important;
}
.designation {     
	padding-top: 9px;
    font-weight: 700;
    line-height: 20px; }
.designation strong { font-size:20px;}
.contactAddress address { font-weight:700; margin-left:0px; padding:0;}
.contactAddress {}

@media (min-width: 768px) {
	.contactbg {
		border: solid 1px #ddd;
		margin-top: 25px;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border: solid 5px #000;
		background: url(../dairy-bg.jpg) repeat-y center;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: 2px 2px 7px rgba(0,0,0,.6);
		-webkit-box-shadow: 2px 2px 7px rgba(0,0,0,.6);
		box-shadow: 2px 2px 7px rgba(0,0,0,.6);
	}
	.contactForm { padding:20px 25px 0px 0px;}
	.contactAddress { padding:0px; }
	.contactTitle { padding-top:25px; font-size:25px; font-weight:600; padding-left:15px;}
	.form-control { margin-bottom:20px;}
	.address { line-height: 26px; font-size: 17px; }
	address p { margin:0; padding:0;}
}

.btn-common {
	background: #fff;
	padding: 5px 25px;
	border-radius: 100px;
	display: inline-block;
	color: #000 !important;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 2px;
}
.btn-common:hover {
	    text-decoration: none;
    background: #C50939;
    color: #fff !important;
    font-size: 16px;
}

.accordion-button { background: none !important; color: #000 !important; font-weight: 600; font-size:18px; }
.accordion-body { color: #323232; line-height: 26px; }

.internalBanner { position:relative; top:-15px; text-align:center; }
.pagetitle {     position: absolute;
    bottom: -48px;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    font-size: 30px;
    border-radius: 10px;
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
	}

.partner-about { padding-bottom:50px; }
.partner-aboutcontent { padding-top:35px; width:100%; }
.partners-logo { padding:50px 0px; }

.partners-logo {
	width: 100%;
	text-align:center;
}
.partners-logo img { margin-bottom:25px; }
.talkto-experts { padding:50px 0px; }
.talkto-experts h2 {      text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px; }
	
.partners-content { text-align:left; }
.shadow {
	box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important; 
}
.readMore {
	    color: #000;
    font-weight: 600;
}

.partners-content .card-body { min-height:240px; }
.partners-content .col-lg-4 { margin-bottom:25px; }

h3.content-title {
	    color: #C50939;
    font-weight: 600;
    font-size: 25px;
}
.full-content-section { margin-top:50px; }
.card-header .title {
    font-size: 17px;
    color: #000;
    font-weight: 700;
}
.card-header .accicon {
  float: right;
  font-size: 20px;  
  width: 1.2em;
}
.card-header{
  cursor: pointer;
  border-bottom: none;
}
.card{
  border: 1px solid #ddd;
}
.card-body {
    border-top: 1px solid #ddd;
    font-size: 16px;
    color: #484848;
}
.card-header:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}

.accordion { margin-top:50px; }
.accordion-content { padding-bottom:5px;}
.emebed-map { margin-top:50px; }
.press-content-block { display:inline-block; width:100%; border:#f5f5f5 solid 1px; padding:15px; text-decoration:none; color:#000; margin-bottom:25px;  }
.press-content-block:hover { text-decoration:none; }
.press-content-block h3.content-title { color:#000; }

.core-competencies h2.blockTitle { text-align:center; margin-bottom:25px; font-size:35px; }

.core-col a { text-decoration:none; }
.core-col a h2 { color:#C50939; }
.core-col a:hover { text-decoration:none; }

.btn-red { text-decoration: none;
    background: #C50939;
    color: #fff !important;
    font-size: 16px; }		.block-title {	    color: #000;    font-size: 30px;    text-transform: uppercase;    margin-bottom: 50px;    font-weight: 700;}
	
.talent-boxes .btn-common { border:#ccc solid 1px; }
.talent-boxes .card-body {
    min-height: 295px;
}
.talent-boxes h4 {
    min-height: 65px;
}
.mn-h150 { min-height:150px; }
.talent-offers ul { margin-top:20px; }
.talent-offers ul li { font-size:1rem; margin-bottom:10px; }
.talent-offers .society-management-col { min-height: 523px; }

.talent-offers .box-header img {
    width: 90px;
    position: absolute;
    left: 24px;
    top: -41px;
    border-radius: 50px;
    background: #c50939;
    padding: 11px;
    height: 90px;
}

.cstaff.society-management-col { padding:0; overflow:hidden; margin:0; }
.cs-content { padding: 15px; min-height: 340px; }
.cs-content h4 {
    font-weight: 600;
    font-size: 1.5rem;
}

.wehelp { background-color:#eeeeee; padding:50px 0px; }
.wehelp .text-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    min-height: 455px;
}
.wehelp h4 { font-weight:600; }
.wehelp ul { margin:0; padding:0; }

.indus-sec, .featured-casestudies { padding:50px 0px;}

.indus-sec .row {
    margin: 0 auto;
    padding: 0 15px;
}

.featured-casestudies { background-color: #C50939; }
.featured-casestudies h2 { font-weight: 700; font-size: 2.5rem; color:#fff; }

.indus-sec h3 { font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 25px;
 }
 
 .indus-sec { font-size:0.9rem; }


#innercontainer .column {
    margin: 0;
    padding: 55px 38px;
    border: 1px solid #e5e5e5;
    margin-right: -1px;
    margin-bottom: -1px;
    transition: all .3s;
    background: #fff;
}

#innercontainer a {
    text-decoration: none;
}

.whatsets { padding:50px 0px; background-color:#C50939; }

.accordion-subtitle { font-size: 1rem; padding: 15px 20px 0px 20px; line-height: 25px; font-weight: 500; margin:0; text-align:left;  }

.whatsets h2 { font-weight: 700; font-size: 2.5rem; color:#000; text-align:center; }

.featrued-offers h2 { font-weight: 700; font-size: 2rem; color:#000; text-align:center; }
.featrued-offers h2 p { font-size:1.1rem; font-weight:500; }

.whatsets .accordion-body {
    background: #f7f7f7;
}

.featrued-offers { padding:50px 0px; }
.featrued-offers .egallery { min-height:280px; }

@media (max-width:767px){

	.contactAddress { padding-top:50px; }
	.internalBanner { padding-top:0px; }
	.pagetitle {     bottom: -25px;
    font-weight: 800;
    font-size: 20px;
    position: relative;
    width: 80%; }
	.contact-page { padding: 0; }
	.main { margin-top:25px; }
	.btn-red { margin-bottom:20px; }
	.contactTitle { font-weight:600; margin-bottom:25px; }
	.contact-page .form-control { margin-bottom:15px; }
	address p { margin:0; }
	.infraimg { position: initial; }

.infra-beefite-content {
    background-color: #fff;
    padding: 20px;
}

.footerLogo-section {
    text-align: left;
    padding-top: 0;
}

.contactForm .btn-success { margin-top: 25px;}
.contactForm .form-group { margin-bottom: 15px;}
.partners-content .card-body { min-height: inherit;}
h3.content-title { margin-top: 25px; text-align: left;}

.become-box .position-absolute { position: relative !important; left: 0;}
.become-whitebox {
    padding: 30px; margin-top: 25px; min-height: auto;
}
.become-whitebox.leftbox {
    padding: 30px;
}

}

@media(max-width:375px){ .gld-services-botcontent { min-height: 416px; } }


.industry-support h2 { color:#fff; font-weight:600; }

.talent-offers .industry-support .society-management-col { min-height:auto; }

.staff-solutions h2 { color:#000; font-weight:600; }

.rpa-page.staff-solutions .society-management-col {
    min-height: 100px;
}


.talent-solution-offer .talent-boxes .card { background:none; }

.talent-solution-offer .talent-boxes .card-body {
    min-height: 331px;
    margin-bottom: 50px;
	background:#fff;
}

.talent-solution-offer .talent-boxes .card-body:hover { background-color:#C50939; color:#fff; }

.talent-solution-offer .talent-boxes h4 { min-height:40px; }