@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@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');

body{
    margin: 0px;
    padding: 0px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
    font-size: 16px;
    color: #000000;
    line-height: 25px;
    overflow-x: hidden;
	background: #fff;
}

/* .container-fluid{
	padding: 0px 80px;
} */
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* ---header section start--- */

/* .header-top{
	width: 100%;
	float: left;
	background: #F7F7F7;
	padding: 5px 0px;
} */

/* .header-top a:hover{
	text-decoration: none;
} */

/* .left-sec {
	width: auto;
	float: left;
} */

/* .left-sec a {
	width: auto;
	float: left;
	margin-right: 20px;
	color: #BDBDBD;
} */


/* .left-sec a img {
	width: 18px;
	margin-right: 10px;
} */

/* .right-sec {
	width: auto;
	float: right;
}

.right-sec .social-icon {
	width: auto;
	float: left;
}
.right-sec .social-icon a {
	margin-right: 10px;
}

.right-sec .social-icon img {
	width: 18px;
}

.right-sec .login-btn {
	width: auto;
	float: right;
	margin-left: 20px;
}

.right-sec .login-btn img {
	width: 16px;
	margin-right: 5px;
}

.right-sec .login-btn {
	color: #000;
}

header {
	width: 100%;
	float: left;
	padding: 20px 0px;
	background-color: #fff;
}

.logo-sec {
	width: auto;
	float: left;
}

.logo-sec img{
	width: 100%;
}

.logo-sec .logo1 {
	width: 220px;
	float: left;
	padding-right: 20px;
}

.logo-sec .logo2 {
	width: 300px;
	float: left;
	padding: 0px 20px;
	background: url("../img/logo-d.png") left center no-repeat;
}

header .navbar {
	padding: 0;
	float: right;
}

header .navbar-light .navbar-nav .nav-link{
	color: #000;
	font-weight: 500;
}
 */
 .header-first-part{
 	background: #F7F7F7;
    padding: 5px 0px;
 }
 .left-sec a {
    margin-right: 20px;
    color: #BDBDBD;
    transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
}
.left-sec a:hover{
	text-decoration: none;
	color: #990000;
}
.right-sec{
	text-align: right;
}
.right-sec .social-icon{
	margin-right: 40px;
}
.right-sec .social-icon a{
	margin-right: 10px;
	display: inline-block;
	color: #BDBDBD;
}
.right-sec .social-icon a:hover{
	color: #990000;
	 transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out;
}
.right-sec .login-btn {
    color: #000;
    display: inline-block;
}
.right-sec .login-btn:hover{
	color: #990000;
	text-decoration: none;
}
.right-sec .login-btn i{
	color: #990000;
}
.logo-sec{
	display: flex;
	flex-direction: row;
}
.logo-sec a{
	display: inline-block;
}
.logo-sec .logo1 {
    padding-right: 20px;
    width: 250px;
}
.logo-sec .logo2 {
padding-left: 20px;
    width: 390px;
    border-left: 1px solid #BDBDBD;
    padding-top: 0;
}
.logo-sec .logo1 img,
.logo-sec .logo2 img{
	width: 100%;
}
.header-second-part{
	padding: 15px 0px;
}

.main-menu .menu-item{
	padding: 0px 15px;
}
.main-menu .menu-item a{
	color: #000;
    font-weight: 500;
}
.main-menu .menu-item a:hover{
	text-decoration: none;
	color: #990000;
}
/* ---header section end--- */



/* ---banner section start---- */

.banner-slider.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.banner-slider .slick-dots{
	bottom: 25px;
}
.banner-slider .slick-dots li button{
	width: 30px;
	height: 4px;
	background-color: #fff;
	padding: 0px;
}
.banner-slider .slick-dots li{
	padding: 0px 20px;
}
.banner-slider .slick-dots li button::before {
	display: none
}
.banner-slider .slick-dots li.slick-active button{
	background-color: #990000 
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
@keyframes zoomInImage {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
}
.zoomInImage {
  -webkit-animation-name: zoomInImage;
          animation-name: zoomInImage;
}
@-webkit-keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOutImage {
  from {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
          animation-name: zoomOutImage;
}
.banner-slider{
	overflow: hidden;
    margin-top: 0px;
/* 	width: 100%;
	float: left; */
}
.banner-slider h2{
    font-size: 35px;
}
.banner-slider h3{
   font-size: 65px;
    font-family: 'd-dindin-bold'; 
}
.slide {
  position: relative;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 35%;
  left: 20%;
  -webkit-transform: translate(-20%, -20%);
          transform: translate(-20%, -20%);
	text-align: left;
width: 50%;
}
.slide .slide__content--headings {
  text-align: left;
  color: #fff;
}
.slide .slide__content--headings h2 {
	/* font-size: 4.5rem; */
	margin: 10px 0;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	position: relative;
	padding-bottom: 30px;
}

.slide .slide__content--headings h2:after{
	width: 40px;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: 10px;
	background: #fff;
	border-radius: 10px;
	content: "";
}

.slide .slide__content--headings p {
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	padding-bottom: 20px;
	width: 70%;
	text-align: left:
}

.slide .slide__content--headings a {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	padding: 0px 20px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 65px 0px 30px;
}

.slide .slide__content--headings a:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
}

.slide .slide__content--headings .animated {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-transition: opacity 0.5s ease 0.3s;
  transition: opacity 0.5s ease 0.3s;
}
/* --banner section end----- */
/* --bottom banner section end----- */

/* .slider-bottom{
	width: 100%;
	float: left;
} */

.slider-bottom h4 {
	/* width: 100%;
	float: left; */
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	text-transform: capitalize;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.slider-bottom h4 span {
/* 	width: 100%;
	float: left; */
	display: block;
	font-size: 15px;
	font-family: 'Playfair Display', serif;
	margin-bottom: 10px;
}

.slider-bottom a {
	width: auto;
	display: inline-block;
	background: url("../img/w-btn.png") right center no-repeat;
	background-size: 21px;
	padding: 0px 20px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 35px 0px 0px;
}

.slider-bottom a:hover {
	text-decoration: none;
}

.box1{
	 background-color: #8d0000; 
	padding: 40px 50px;
	color: #fff;
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	position: relative;
}


.box2{
	 background-color: #7c0505; 
	padding: 40px 50px;
	color: #fff;
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	position: relative;
}

.box3{
	 background-color: #580000; 
	padding: 40px 50px;
	color: #fff;
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
	position: relative;
}
.box1:hover,
.box2:hover,
.box3:hover{
	background-color: #990000; 
	cursor: pointer;
	transition: .5s ease-in-out;
	-webkit-transition: .5s ease-in-out;
}
.box1:hover::after,
.box2:hover::after,
.box3:hover::after{
	content: "";
    background-image: url(../img/AlliottPattern.png);
    background-size: contain;
    background-position: right;
    width: 50%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
}
/* --bottom banner section end----- */
/* ---About us section start--- */
.about-sec{
	width: 100%;
	padding: 60px 0px;
}

/* .about-con {
	width: 90%;
	float: left;
} */

.about-con h3 {
	/* width: 100%;
	float: left; */
	font-size: 32px;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	color: #000;
	margin-bottom: 15px;
}

.about-con h3 span {
/* 	width: 100%;
	float: left; */
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #990000;
	background: url("../img/heading-line.png") left center no-repeat;
	padding-left: 50px;
	text-transform: uppercase;
	margin-bottom: 15px;
	display: block;
}

.about-con p {
	/* width: 100%;
	float: left; */
	font-size: 16px;
	color: #000;
	text-align: left;
	margin-bottom: 20px;
}

.about-con p span {
	font-size: 50px;
	font-family: 'Playfair Display', serif;
	font-weight: 500;
	color: #990000;
	padding-top: 10px;
	float: left;
	padding-right: 10px;
}
.about-con p span:after{
	content: '';
	clear: both;
}

.readmore-btn {
	color: #990000;
	font-weight: bold;
	font-size: 15px;
	width: auto;
	display: inline-block;
	background: url("../img/r-btn.png") right center no-repeat;
	background-size: 21px;
	font-weight: 600;
	padding: 0px 30px 0px 0px;
	line-height: 30px;
}

.readmore-btn:hover {
	text-decoration: none;
}

.year-con {
	/* width: 100%;
	float: left; */
	height: 450px;
	background: url("../img/about-year.png") left top no-repeat;
	position: relative;
	background-size: cover;
}

.year-con::after {
	width: 92.5%;
	margin: 10px;
	height: 430px;
	background: url("../img/about-year3.png") left top no-repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	background-size: cover;
}

.year-con span {
	position: absolute;
	left: 40px;
	bottom: 15px;
	z-index: 2;
	color: #000;
	font-weight: 600;
	font-size: 16px;
	padding-bottom: 35px;
}

.about-col {
	/* width: 100%;
	float: left; */
	display: flex;
    flex-wrap: wrap;
} 

.about-box {
	width: 50%;
/* 	float: left; */
	padding: 20px 10px;
}

.about-box img{
	width: 50px;
	margin: 15px 0px;
}

.about-box h4 {
	font-size: 36px;
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
	color: #000;
	line-height: 36px;
}

.about-box h4 span {
	width: 100%;
	display: block;
	/* float: left; */
	font-size: 15px;
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	line-height: initial;
}

.border-b{
	border-bottom: #eee 1px solid;
}

.border-r{
	border-right: #eee 1px solid;
}


/* ---About us section end--- */


/*-- Core Service section start --*/
.core-service {
	width: 100%;
	display: inline-block;
	padding: 60px 0px;
	background: #F7F7F7;
}


.core-service h3 {
	width: 100%;
	position: absolute;
	font-size: 32px;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	color: #000;
	margin-bottom: 0px;
	margin-top: 20px;
	margin-left: 20px;
}

.core-service h3 span {
	width: 100%;
	float: left;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	color: #990000;
	background: url("../img/heading-line.png") left center no-repeat;
	padding-left: 50px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.height250{
	height: 250px;
}

.service-box {
/* 	width: 100%;
	float: left; */
	background: #fff;
	padding: 40px;
	transition: 0.5s ease-in-out;
	height: 100%;
}
.service-box:hover{
	background-color: #990000;
	color: #fff;
}
.service-box:hover h5,
.service-box:hover p,
.service-box:hover a{
	color: #fff;
}
.service-box:hover img{
	filter: brightness(0) contrast(1) invert(1);
    background: transparent;
}
.service-box:hover .learnmore-btn{
	filter: brightness(0) contrast(1) invert(1);
}
.service-box img {
	width: 50px;
	margin: 0px 0px 15px;
	/* margin-right: 60%; */
}
.new-core-tab-content-inner .service-box {
    height: 356px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.service-box h5 {
	/* width: 100%;
	float: left; */
	font-size: 20px;
	font-weight: 700;
}

.service-box p {
	/* width: 100%;
	float: left; */
	font-size: 16px;
	color: #000;
	margin-bottom: 20px;
	text-align: left;
}

.learnmore-btn {
	color: #990000;
	font-weight: bold;
	font-size: 15px;
	width: auto;
	display: inline-block;
	background: url("../img/r-btn.png") right center no-repeat;
	background-size: 21px;
	font-weight: 600;
	padding: 0px 30px 0px 0px;
	line-height: 30px;
	font-family: 'Poppins', sans-serif; 
}

.learnmore-btn:hover {
	text-decoration: none;
}

#verticalTab{
	position: relative;
}

.resp-vtabs ul.resp-tabs-list {
	position: absolute;
	width: 30%;
	top: 50px;
	z-index: 99;
}

.resp-vtabs .resp-tabs-container {
	padding: 0px;
	background: none;
	border: 0px;
	float: left;
	width: 100%;
	min-height: 250px;
	border-radius: 4px;
	clear: none;
	z-index: 9;
	position: relative;
}

.resp-vtabs .resp-tabs-list li {
	display: block;
	padding: 20px !important;
	margin: 0;
	cursor: pointer;
	float: none;
	font-family: 'Playfair Display', serif;
	font-size: 27px;
	font-weight: 400;
}

.resp-vtabs li.resp-tab-active {
	border: 0;
	border-right: none;
	background: none;
	position: relative;
	z-index: 1;
	margin-right: -1px !important;
	padding: 20px !important;
	font-weight: 500;
	font-size: 30px;
}


/*---Core Service section end---*/


		/*---Business Presence section star---*/
.business-presence {
	width: 100%;
	padding: 60px 0px 70px;
	background: url("../img/business-presence-bg.png") left top no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}

.business-presence:after {
	width: 100%;
	background: url("../img/business-presence-shedow.png") left top no-repeat;
	background-size: cover;
	height: 450px;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	z-index: 99;
}

.business-presence .container {
	position: relative;
	z-index: 999;
}

.business-presence .content-sec {
	text-align: left;
	color: #fff;
	width: 60%;
}

.business-presence .content-sec h2 {
	margin: 10px 0;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	position: relative;
	padding-bottom: 20px;
	font-size: 35px;
}

.business-presence .content-sec p {
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	padding-bottom: 20px;
	width: 70%;
	text-align: left:
}

/* .business-presence .content-sec a {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 65px 0px 30px;
}

.business-presence .content-sec a:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
} */

/*---Business Presence section end---*/

/* ---main footer section start--- */

.main-footer{
/* 	width: 100%;
	float: left; */
}

.main-footer-bg{
  background-image: url('../img/footer-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 0px;
}
.main-footer-containt{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-footer-row-2{
  width: 25%;
   padding-left: 15px;
  padding-right: 15px;
}
.main-footer-row{
  width: 18%;
  padding-left: 15px;
  padding-right: 15px;
}
.footer-logo{
  margin-bottom: 30px;
}
.footer-logo img{
  width: 100%;
}
.footer-address-detail span{
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ad2f2f;
  color: #7a0606;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
}
.footer-address-detail a{
  color: #fff;
  font-size: 15px;
}
.footer-address-detail a:hover{
  text-decoration: none;
}
.footer-social-link a{
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 27px;
  font-size: 15px;
  margin-right: 8px;
  transition: 0.5s ease-in-out;
  -webkit-transition: 0.5s ease-in-out;
}
.footer-social-link a:hover{
  color:  #ad2f2f;
  border-color: #ad2f2f;
}
.footer-address-detail{
  margin-bottom: 30px;
}
.main-footer-detail h4{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}
.main-footer-detail p,
.main-footer-detail a{
  color: #D6D6D6;
  font-size: 15px;
}
.main-footer-detail a:hover{
  color: #ad2f2f;
  text-decoration: none;
}
.main-footer-detail ul li{
  margin-bottom: 15px;
}
.footer-copyright{
  background-color: #740000;
  color: #fff;
  padding: 10px 0px;
  text-align: center;
}
.footer-copyright p{
  margin-bottom: 0px;
}
/* ---main footer section end--- */
/* --abouve footer section start---- */
.abouve-footer{
  background-color: #000;
  padding: 80px 0px;
}
.abouve-footer-inner h2{
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.abouve-footer-inner h2:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  width: 30px;
  background-color: #fff;
  margin-right: 15px;
}
.abouve-footer-inner h3{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 40px;
  color: #fff;
  margin-bottom: 40px;
}
.service-area h3{
   font-family: 'Lato', sans-serif;
   font-weight: 700;
   font-size: 34px;
   margin-bottom: 20px;
}
.service-area .dropdown button{
  width: 100%;
    text-align: left;
    background-color: transparent;
    border: 0px solid transparent;
    border-bottom: 1px solid #AD2F2F;
    font-size: 34px;
     font-family: 'Lato', sans-serif;
   font-weight: 700;
   box-shadow: none !important;
   border-radius: 0px;
}
.service-area .dropdown-toggle::after{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateX(-50%);
  color: #AD2F2F;
}
.service-area .btn-primary:not(:disabled):not(.disabled).active, 
.service-area .btn-primary:not(:disabled):not(.disabled):active, 
.service-area .show>.btn-primary.dropdown-toggle{
  background-color: transparent;
    border: 0px solid transparent;
    border-bottom: 1px solid #AD2F2F;
}
.service-area .dropdown-menu{
  width: 100%;
}
.abouve-footer-inner-2 p{
  width: 80%;
  margin-bottom: 30px;
}
.abouve-footer-inner-2 .form-control{
  border: 1px solid #535353;
  background-color: transparent;
  border-radius: 0px;
  color: #BDBDBD;
  font-size: 17px;
}
.custom-checkbox{
  color: #fff;
}
.red-btn{
  background-color: #990000;
  color: #fff;
  font-size: 18px;
   font-family: 'Poppins', sans-serif;
   font-weight: 700;
   background-image: url('../img/arrow.png');
   background-repeat: no-repeat;
   background-position: right 15px bottom 50%;
   border-radius: 0px;
   background-size: 30px;
   width: 250px;
   text-align: left;
   padding: 10px 20px;
}
.red-btn:hover{
  color: #fff;
}
.abouve-footer-inner-2 .custom-control-input:checked~.custom-control-label::before{
  color: #fff;
    border-color: #AD2F2F;
    background-color: #AD2F2F;
}
.abouve-footer-inner-2  .custom-control-input:focus~.custom-control-label::before{
  box-shadow: 0 0 0 0.2rem rgba(173,47,47,.25);
}
/* --abouve footer section start---- */
/* ---GLOBAL PRESENCE section start--- */
.global-presence{
  background-color: #203e69;
  padding: 80px 0px;
  background-image: url('../img/global-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right bottom;
  color: #fff;
}
.global-presence h2{
  font-size: 18px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: #D6DBDA;
}
.global-presence-logo {
  text-align: center;
  margin-bottom: 30px;
}
.global-presence-logo img{
  max-width: 450px;
}
.global-presence h3{
font-family: 'Playfair Display', serif;
font-weight: 700;
font-size: 40px;
line-height: 50px;
}
.global-presence p{
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
  text-align: justify;
}
/* ---GLOBAL PRESENCE section end--- */
/* --Registered With section start--- */
.registered-with{
  padding-top: 40px;
  padding-bottom: 60px;
}
.main-title{
  color: #000;
  font-size: 40px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.main-title:after{
  content: '';
  height: 2px;
  width: 50px;
  background-color: #990000;
  display: block;
  margin: 30px auto 15px auto;
}
.registered-with-inner{
  vertical-align: middle;
}
.registered-with-inner a{
  display: block;
  padding: 10px;
  outline: none;
}
.registered-with-inner a img{
  width: 100%;
  filter: grayscale(100%);
  transition: grayscale 1s ease-in-out;
  -webkit-transition: grayscale 1s ease-in-out;
}
.registered-with-inner a img:hover{
  filter: grayscale(0%);
}
.registered-with-slider button{
  border: 0px;
  outline: none;
  font-size: 25px;
  color: #000;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.registered-with-slider button:hover{
  color: #990000;
}
.registered-with-slider button.btn-right{
  right: -15px;
}
.registered-with-slider button.btn-left{
  left: -15px;
}
/* --Registered With section end--- */
/* --Press Highlights section start--- */
.press-highlights{
  padding: 80px 0px;
	width: 100%;
	display: inline-block;
}
.first-small-title{
  color: #990000;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  font-size: 18px
}

.press-con {
	/* width: 100%; */
/* 	float: left; */
	padding: 40px 0px 0px;
}

.press-col {
	width: 100%;
	float: left;
	padding: 0px;
	border: #EDEDED 1px solid;
	margin-bottom: 30px;
}

.press-img {
	width: 50%;
	float: left;
	position: relative;
}

.press-img:after {
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0,.0), rgba(0, 0, 0,.4));
	-webkit-background-image: linear-gradient(rgba(0, 0, 0,.0), rgba(0, 0, 0,.4));
	/* background: rgba(0,0,0,.2); */
	content: "";
	z-index: 99;
}

.press-img img{
	width: 100%;
	position: relative;
	z-index: 9;
}

.press-img span {
	position: absolute;
	left: 20px;
	bottom: 20px;
	color: #fff;
	z-index: 999;
}

.press-img img.press-logo {
	width: 70px;
	position: absolute;
	z-index: 999;
	right: 20px;
	top: 10px;
}

.press-col-cont {
	width: 50%;
	float: left;
	padding: 30px;
}

.press-col-cont h5 {
/* 	width: 100%;
	float: left; */
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
}

.press-col-cont p {
/* 	width: 100%;
	float: left; */
	font-size: 15px;
	color: #5A5A5A;
	text-align: left:
}

.press-con .col-lg-4 .press-img {
	width: 100%;
	/* float: left; */
	position: relative;
}

.press-con .col-lg-4 .press-col-cont {
	width: 100%;
	padding: 20px;
}


.press-con .col-lg-4 .press-img span {
	position: absolute;
	left: 20px;
	bottom: 15px;
	color: #fff;
	z-index: 999;
}

.press-con .col-lg-4 .press-img img.press-logo {
	width: 60px;
	position: absolute;
	z-index: 999;
	right: 20px;
	top: 10px;
}

.press-con a.more-btn {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	/* padding: 0px 20px; */
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 75px 0px 40px;
	margin-top: 30px;
}

.press-con a.more-btn:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
}


.business-presence .content-sec a {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	/* padding: 0px 20px; */
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 65px 0px 30px;
}
.business-presence .content-sec a:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
}
/* --Press Highlights section end--- */

/* --Our Social Wall section strat--- */
.social-wall {
	width: 100%;
	padding: 60px 0px;
	background: #F7F7F7;
	display: inline-block;
	overflow-x: hidden;
}

.social-slider{
	width: 100%;
	float: left;
	margin: 30px 0px 0px;
}



.social-slider button{
  border: 0px;
  outline: none;
  font-size: 25px;
  color: #000;
  background-color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.social-slider button:hover{
  color: #990000;
}

.social-slider button.btn-right{
  right: -15px;
}

.social-slider button.btn-left{
  left: -15px;
}

.facebook-col {
	/* width: 46%;
	float: left; */
	height: 320px;
	border-radius: 4px;
	position: relative;
	/* margin-right: 30px;
	margin-left: 10%; */
}

.facebook-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

.facebook-cont {
	width: 100%;
	position: absolute;
	background: rgba(0,0,0,.9);
	left: 0px;
	bottom: 0px;
	padding: 20px;
}

.f-header {
	width: 100%;
	float: left;
	margin: 0px 0px 10px;
}

.f-header img {
	width: 50px;
	float: left;
	height: auto;
}

.f-header h5 {
	width: 70%;
	float: left;
	font-size: 13px;
	line-height: 24px;
	font-weight: 600;
	color: #fff;
	margin-left: 12px;
	margin-top: 0px;
}

.f-header h5 span{
	width: 100%;
	font-size: 12px;
	font-weight: 300;
}

.f-icon {
	width: auto;
	position: absolute;
	right: 20px;
	top: 25px;
}

.facebook-col .f-icon img {
	width: 15px;
	height: auto;
}

.facebook-cont p {
	width: 100%;
	float: left;
	font-size: 14px;
	color: rgba(255,255,255,.6);
	text-align: left;
	font-weight: 300;
	line-height: 21px;
	margin: 0px;
	padding: 0px;
}

.twitter-col {
	/* width: 80% !important;
	float: left; */
	background: #24AFF9;
	padding: 20px 30px;
	height: 320px;
	border-radius: 4px;
	/* margin-right: 30px;
	margin-left: 20%; */
}

.t-header {
	/* width: 100%;
	float: left; */
	margin: 0px 0px 10px;
	position: relative;
}

.t-header h5 {
	/* width: 70%;
	float: left; */
	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	color: #fff;
	margin-left: 0px;
	margin-top: 10px;
}

.t-header .f-icon {
	right: 0px;
	top: 0px;
}


.t-header .f-icon img {
	width: 34px;
	height: auto;
}

/* .t-cont{
	width: 100%;
	float: left;
} */

.t-cont p {
	/* width: 100%;
	float: left; */
	font-size: 15px;
	color: #fff;
	text-align: left;
	font-weight: 400;
	line-height: 21px;
	margin: 20px 0px 0px;
	padding: 0px;
}

.linkedin-col {
	/* width: 80% !important;
	float: left; */
	background: #0076BE;
	padding: 20px 30px;
	height: 320px;
	border-radius: 4px;
	/* margin-left: 10%; */
}

.t-cont h6 {
	/* width: 70%;
	float: left; */
	font-size: 15px;
	line-height: 21px;
	font-weight: 600;
	color: #fff;
	margin-top: 38px;
}

.t-cont h6 span {
	width: 100%;
	float: left;
	font-size: 14px;
	font-weight: 300;
}



/* --Our Social Wall section end--- */




/*--Inner page start--*/

.inner-banner {
	/* width: 100%;
	float: left; */
	height: 330px;
	position: relative;
}

.inner-banner:after {
	width: 100%;
	/* float: left; */
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	background: url("../img/inner-banner-ov.png") left top no-repeat;
}

.inner-banner img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	/* position: relative; */
}

.inner-banner .banner-content {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	width: 100%;
}

.inner-banner .banner-content h2 {
	margin: 10px 0;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	position: relative;
	padding-bottom: 30px;
	color: #fff;
}

.inner-banner .banner-content h2::after {
	width: 40px;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: 10px;
	background: #fff;
	border-radius: 10px;
	content: "";
}

.service-page {
	width: 100%;
	display: inline-block;
	padding: 60px 0px;
	background: #fff;
	/* background: #F7F7F7; */
}


.service-page h3 {
	width: 100%;
	float: left;
	font-size: 32px;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}


.service-page .resp-vtabs ul.resp-tabs-list {
	position: relative;
	width: 100%;
	top: auto;
	z-index: 99;
}

.service-page .resp-vtabs .resp-tabs-container {
	padding: 0px;
	background: none;
	border: 0px;
	float: left;
	width: 100%;
	min-height: 250px;
	border-radius: 4px;
	clear: none;
	z-index: 9;
	position: relative;
}

.service-page .resp-vtabs .resp-tabs-list li {
	display: block;
	padding: 15px 0px !important;
	margin: 0;
	cursor: pointer;
	float: none;
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	font-weight: 600;
	width: 100%;
	float: left;
	line-height: 21px;
}

.service-page .resp-vtabs li.resp-tab-active {
	padding: 10px 0px !important;
	color: #990000;
}

.service-page .resp-vtabs li.resp-tab-active span {
	width: auto;
	float: left;
	background: url("../img/r-btn.png") right center no-repeat;
	background-size: 21px;
	padding-right: 30px;
}


.banner-img {
	width: 100%;
	/* float: left; */
	height: 200px;
	position: relative;
	margin-bottom: 20px;
}

.banner-img img {
	width: 100%;
	object-fit: cover;
	height: 100%;
}

.banner-img .img-content {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 9;
	width: 100%;
}

.banner-img .img-content h3 {
	margin: 10px 0;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	color: #fff;
	font-size: 24px;
	padding: 0px 25px;
	line-height: 36px;
}

.banner-img::after {
	width: 100%;
	/* float: left; */
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	background: url("../img/inner-img1-ov.png") left top no-repeat;
}



.banner-img2 {
	/* width: 100%;
	float: left; */
	height: 150px;
	position: relative;
}

.banner-img2 img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	/* position: relative; */
}

.banner-img2 .img-content {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	z-index: 9;
	width: 100%;
}

.banner-img2 .img-content h3 {
	margin: 10px 0px 5px;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
/* 	position: relative; */
	color: #fff;
	font-size: 21px;
	padding: 0px 25px;
	line-height: 30px;
}

.banner-img2 .img-content a {
	padding-left: 25px;
	color: #fff;
	text-decoration: underline;
	font-size: 12px;
	text-transform: uppercase;
}

.banner-img2::after {
	width: 100%;
	/* float: left; */
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	background: url("../img/inner-img1-ov.png") left top no-repeat;
}

.service-page h4 {
/* 	width: 100%;
	float: left; */
	font-size: 26px;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	color: #000;
	margin-bottom: 20px;
}

.service-page p {
	/* width: 100%;
	float: left; */
	font-size: 16px;
	line-height: 30px;
	color: #000;
	text-align: left;
	margin-bottom: 15px;
}

.service-page ul {
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px 0px 0px 20px;
}


.service-page ul li {
	/* width: 100%; */
	float: left;
	margin: 0px;
	padding: 0px 0px 15px 6px;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	text-align: left;
}

.service-np {
	/* width: 100%;
	float: left; */
	margin: 20px 0px;
}

.key-documents{
	/* width: 100%;
	float: left; */
	padding: 10px 0px;
}

.key-documents ul{
	/* width: 100%;
	float: left; */
	padding: 0px !important;
	margin: 0px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.key-documents ul li {
	/* width: auto;
	float: left; */
	padding: 0px 30px 10px 0px !important;
	margin: 0px;
	list-style: none;
}

.key-documents ul li a {
	color: #7A7A7A;
	font-size: 14px;
	text-decoration: underline;
}
.key-documents ul li a:hover{
	color: #990000;
}
/*---inner Service section end---*/

/*---protal page start---*/

.choose-portal-page{
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px;
	position: relative;
	height: 100vh;
	background: #990000;
}

.choose-portal-page:before{
	width: 100%;
	position: absolute;
	left: 0px;
	top:0px;
	content: "";
	margin: 0px;
	padding: 0px;
	height: 100vh;
	background: url("../img/protal1-bg.png") left top no-repeat;
	z-index: 99;
	background-size: 95%;
}

.choose-portal-page:after{
	width: 100%;
	position: absolute;
	right: 0px;
	top:0px;
	content: "";
	margin: 0px;
	padding: 0px;
	height: 100vh;
	background: url("../img/protal2-bg.png") right bottom no-repeat;
	z-index: 999;
	background-size: 95%;
}

.portal-1{
	position: absolute;
	left: 20px;
	top: 20px;
	width: 50%;
	z-index: 9999;
        padding-left: 40px;
}
.protal-logo {
	width: 250px;
	display: inline-block;
}

.portal-1 .box1 {
	background: none;
	padding: 80px 0px 0px;
	color: #fff;
	margin-left: 0px;
}

	.portal-1 .box1:hover::after, .portal-1 .box2:hover::after, .portal-1 .box3:hover::after{
		background: none;
	}

.portal-1 .box1 h1 {
	width: 100%;
	float: left;
	font-family: 'Playfair Display', serif;
	font-size: 60px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.portal-1 .box1 h1 span {
	width: 100%;
	float: left;
	font-size: 44px;
	font-weight: 300;
	margin-bottom: 5px;
}

.portal-1 .box1 a {
	width: auto;
	display: inline-block;
	background: url("../img/w-btn.png") right center no-repeat;
	background-size: 21px;
	padding: 0px 20px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 35px 0px 0px;
	text-transform: uppercase;
}

.protal-logo img{
	width: 100%;
}




.portal-2{
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 50%;
	z-index: 9999;
	text-align: right;
        padding-right:40px;
}



.portal-2 .protal-logo {
	width: 390px;
	display: inline-block;
}

.portal-2 .box1 {
	background: none;
	padding: 0px 0px 80px;
	color: #990000;
	margin-right: 0px;
}

	.portal-2 .box1:hover::after, .portal-2 .box2:hover::after, .portal-2 .box3:hover::after{
		background: none;
	}

.portal-2 .box1 h1 {
	width: 100%;
	float: left;
	font-family: 'Playfair Display', serif;
	font-size: 60px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 30px;
}

.portal-2 .box1 h1 span {
	width: 100%;
	float: left;
	font-size: 44px;
	font-weight: 300;
	margin-bottom: 5px;
}

.portal-2 .box1 a {
	width: auto;
	display: inline-block;
	background: url("../img/b-btn.png") right center no-repeat;
	background-size: 21px;
	padding: 0px 20px;
	font-size: 14px;
	color: #000;
	font-weight: 600;
	padding: 0px 35px 0px 0px;
	text-transform: uppercase;
}

.portal-2 .protal-logo img{
	width: 100%;
}

h2.resp-accordion:first-child {
	border-top: 1px solid #990000 !important;
}

h2.resp-accordion {
	font-size: 15px;
	border: 1px solid #990000;
	border-top: 0px solid #990000;
	margin: 0px;
	padding: 10px 15px;
	color: #990000;
	font-weight: 600;
}

.resp-arrow {
	width: 0;
	height: 0;
	float: right;
	margin-top: 3px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 12px solid #990000;
}

h2.resp-tab-active {
	background: #990000 !important;
	color: #fff;
}

h2.resp-tab-active span.resp-arrow {
	border: none;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 12px solid #fff;
}

.resp-vtabs .resp-tab-content {
	border: 0px solid #990000;
}

.resp-vtabs .resp-tab-content {
	float: left;
	width: 100%;
	margin-bottom: 10px;
}

.resp-vtabs .resp-tab-content:last-child {
	/* border-bottom: 1px solid #990000 !important; */
}

/* ---16-02-21---- */
.new-core-service{
	padding: 60px 0px;
    background: #F7F7F7
}
/* section:after{
	content: '';
	clear: both !important;
} */
.new-core-service h3 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    margin-top: 20px;
    margin-left: 20px;
}
.new-core-service h3 span {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #990000;
    background: url(../img/heading-line.png) left center no-repeat;
    padding-left: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.new-core-tab-list{
	width: 33.333%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}
.new-core-tab-list ul li a{
	color: #000;
	padding: 20px;
	font-family: 'Playfair Display', serif;
	border-left: 8px solid #E6E6E6;
	 font-size: 27px;
    font-weight: 400;
}
.new-core-tab-list ul li a.active{
	border-left: 8px solid #990000;
	font-weight: 600;
}
.new-core-tab-content{
	/* width: 66.667%; */
}
.new-core-service-tab{
	position: relative;
}
.slider-bottom .more-btn{
	background-color: transparent;
}
.slider-bottom .more-btn:hover{
	background-color: transparent;
}
/* ---AMC indexpage start--- */
.logo-opacity{
	opacity: 0.5;
}
.consultancy-solutions{
	padding: 60px 0px;
}
.amc-about-bg{
	background-color: #F7F7F7;
}
.business-advisory{
	padding: 60px 0px;	
}
.business-advisory-inner-img{
	border-radius: 4px;
	width: 100%;
	height: 350px;
	position: relative;
	z-index: -1;

}
.business-advisory-inner-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}
.business-advisory-detail{
	padding: 30px 40px;
	border-radius: 4px;
	background-color: #fff;
	width: 90%;
	margin: 0 auto;
}
.black-btn{
	background-color: #000000;
	color: #fff;
	padding: 10px 20px;
	font-size: 17px;
	border-radius: 0px;
	font-weight: 400;
}
.black-btn:hover{
	background-color: #990000;
	color: #fff;
}
.business-advisory-detail-main{
	margin-top: -100px;
}
.business-advisory-detail h4{
	font-size: 18px;
	font-weight: 600;
}
.business-advisory-detail-footer p{
	color: #B4B4B4;
	margin-bottom: 10px;
}
.business-advisory-inner{
	padding-top: 30px;
}
 .more-btn {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 75px 0px 40px;
	margin-top: 30px;
	transition: 0.5s ease-in-out;
	-webkit-transition: 0.5s ease-in-out;
}

 .more-btn:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
	color: #fff;
}
.press-highlights-bg{
	background-color: #F7F7F7;
}
.social-wall.social-wall-bg{
	background-color: #fff;
}
.requist-call-back{
	background-color: #F7F7F7;
}
.requist-call-back-img{
	width: 100%;
	height: 100%;
}
.requist-call-back-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.requist-call-back-form{
	padding: 60px 150px 60px 100px;
}
.requist-call-back-form label{
	color: #75767A;
	font-family: 'Poppins', sans-serif;
}
.requist-call-back-form .form-control,
.requist-call-back-form .custom-select{
	height: 50px;
	border: 1px solid #D6D6D6;
	border-radius: 4px;	
}
.requist-call-back-form textarea.form-control{
	height: 80px;
}
.requist-call-back-form input[type="submit"]{
	border: 0px;
	outline: none;
	box-shadow: none;
}
/* .amc-footer{
	background-color: #000;
	padding: 80px 0px;
}
.amc-footer .footer-address-detail span{
	color: #000;
}
.amc-footer-copyright{
	background-color: #2B2B2B;
} */
.main-breadcrumb{
background-color: #F7F7F7;
}
.main-breadcrumb .breadcrumb{
	background-color: transparent;
	color: #000;
	font-weight: 600;
	font-size: 18px;
}
.main-breadcrumb .breadcrumb .breadcrumb-item.active{
	color: #990000;
		font-weight: 600;
}
 .main-breadcrumb .breadcrumb a,
  .main-breadcrumb .breadcrumb li{
	color: #000;
	font-weight: 400;
	font-size: 15px;
} 
.main-breadcrumb .breadcrumb a:hover{
	text-decoration: none;
	color: #990000;
}

  .main-breadcrumb .breadcrumb-item+.breadcrumb-item::before{
  	padding-left: 20px;
  	padding-right: 20px;
  	color: #000;
  }
/* ---AMC indexpage end--- */
/* --new-service-inner page start--- */
	.new-service-inner-sidemenu h3{
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
	}
	.new-service-inner-list{
		list-style: none;
	}
	.new-service-inner-list li a{
	display: block;
    padding: 15px 0px;
    margin: 0;
    cursor: pointer;
    float: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 21px;
    color: #000;
    position: relative;
    word-break: break-word;
    border-bottom: 2px solid transparent;
	}
	.new-service-inner-list li a:hover{
		text-decoration: none;
		color: #990000;
		border-bottom: 2px solid #990000;
	}
	.new-service-inner-list li a.service-active{
		color: #990000;
		border-bottom: 2px solid #990000;
	}
	.new-service-inner-list li a.service-active:after{
		content: ' ';
		background: url(../img/r-btn.png) no-repeat;
		display: inline-block;
		width: 20px;
		background-size: 20px;
		height: 20px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	.new-service-inner-list li a:hover:after{
		content: ' ';
		background: url(../img/r-btn.png) no-repeat;
		display: inline-block;
		width: 20px;
		background-size: 20px;
		height: 20px;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	.new-service-inner{
		padding: 60px 0px;
	}
	.new-service-inner-content p {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    text-align: left;
    margin-bottom: 15px;
}
.new-service-inner-content h4 {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}
.new-service-inner-content ul{
	margin: 0px;
    padding: 0px 0px 0px 20px;
}
.new-service-inner-content ul li {
    margin: 0px;
    padding: 0px 0px 15px 6px;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    text-align: left;
}
/* --new-service-inner page end--- */
.new-service-inner-sidemenu{
	display: block;
}
.new-service-sidemenu-btn{
	display: none;
}
.closebtn{
	display: none;
}

/* ---Insight newsroom start--- */
.line-sub-title span{
	font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #000000;
    background: url(../img/heading-line.png) left center no-repeat;
    padding-left: 50px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.main-title-2{
	color: #000;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.featured-insights-sub-tite{
	width: 60%;
}
.featured-insights-detail h5{
	font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.featured-insights-detail p{
    color: #5A5A5A;
}
.featured-insights{
	padding: 50px 0px;
}
.featured-category{
	border-bottom: 1px solid #BDBDBD;
}
.featured-category h3{
	color: #5A5A5A;
	font-size: 15px;
	font-family: 'Lato', sans-serif;
    font-weight: 400;
    padding: 10px 0px;
    margin-bottom: 0;
}
.featured-category-inner a{
	padding: 10px 20px;
	display: inline-block;
	margin-right: -4px;
	color: #000000;
	font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
}
.featured-category-inner a.featured-category-active{
	color: #fff;
	background-color: #990000;
}
.featured-category-inner a:hover{
	color: #fff;
	background-color: #990000;
	text-decoration: none;
}
.featured-articles{
	padding: 30px 0px;
}
.featured-articles-border{
	padding: 0px;
    border: #EDEDED 1px solid;
    margin-bottom: 30px;
}
.featured-articles-img{
	width: 100%;
	height: 100%;
	position: relative;
}
.featured-articles-img .featured-articles-img-main{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.featured-articles-img:after{
	width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0,.0), rgba(0, 0, 0,.4));
    -webkit-background-image: linear-gradient(rgba(0, 0, 0,.0), rgba(0, 0, 0,.4));
    content: "";
    z-index: 99;
}
.featured-articles-date{
	position: absolute;
    left: 20px;
    bottom: 15px;
    color: #fff;
    z-index: 999;
}
.featured-articles-img img.featured-articles-logo{
	width: 60px;
    position: absolute;
    z-index: 999;
    right: 20px;
    top: 10px;
}
.featured-articles-body{
	padding: 20px;
}
.featured-articles-body h5{
	font-size: 18px;
    line-height: 28px;
    font-weight: 600;
}
.more-articles-title{
	border-bottom: 3px solid #990000;
	padding: 10px 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 20px;
}
.more-articles-title h3{
	color: #990000;
	font-size: 18px;
	font-weight: 900;
}
.more-articles-title a{
	font-size: 15px;
	color: #7A7A7A;
}
.more-articles-title a:hover{
	text-decoration: none;
	color: #000;
}
.more-articles-img{
	width: 100%;
}
.more-articles-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.more-articles-body h3{
	font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}
.more-articles-body span{
	color: #7A7A7A;
	 display: block;
	 font-weight: 500;
}
.alliott-news{
	padding: 30px 0px;
}
.play-video-btn{
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}
.play-video-btn a{
	display: block;
	color: #fff;
	font-size: 50px;
}
.play-video-btn a:hover{
	color: #990000;
	opacity: 0.9;
}
.text-color-2{
	color: #5A5A5A;
}
.alliott-news-model iframe{
	width: 100%;
	height: 350px;
}
.more-news{
	padding: 50px 0px;
	overflow-x: hidden;
	background-color: #F7F7F7;
}
.more-news-slider-inner{
	background-color: #fff;
}
.more-news-slider-inner .readmore-btn{
	font-size: 13px;
	background-size: 18px;
}
.more-news-slider-outer button {
    border: 0px;
    outline: none;
    font-size: 25px;
    color: #000;
    background-color: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}
.more-news-slider-outer button.btn-left {
    left: -15px;
}
.more-news-slider-outer button.btn-right{
	right: -15px;
}
/* ---Insight newsroom end--- */

/* ---Insight newsroom-1 page start--- */
.insights-newsroom-1{
	padding: 30px 0px;
}
.insights-newsroom-1-border-1{
	border-bottom: 1px solid #BDBDBD;
}
.insights-newsroom-1 p{
	color: #5A5A5A;
}
.showing-total-result{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	color: #BDBDBD;
	padding: 30px 0px;
}
.showing-pagination ul{
	list-style: none;
}
.showing-pagination ul li{
	display: inline-block;
	padding: 10px;
	margin-right: -4px;
	border: 1px solid #BDBDBD;
}
.showing-pagination ul li a{
	color: #BDBDBD;
}
/* ---Insight newsroom-1 page end--- */
/* ---Insight blog-1 page start----- */
.follow-our-socials{
	background-color: #F7F7F7;
	padding: 50px 0px;
}
.follow-our-socials-icon{
	list-style: none;
	text-align: center;
}
.follow-our-socials-icon li{
	display: inline-block;
	margin-right: -4px;
	padding: 10px 10px 0px 10px;
}
.follow-our-socials-icon li a{
	width: 40px;
	height: 40px;
	line-height: 35px;
	font-size: 20px;
	color: #000;
	border: 2px solid #000;
	display: block;
	border-radius: 50%;
	text-align: center;
}
.follow-our-socials-icon li a:hover{
	color: #990000;
	border: 2px solid #990000;
}
/* ---Insight blog-1 page end----- */
/* ---insight blog page start---- */
.insights-blog{
	padding: 30px 0px;
}
.insights-blog-main-one-img{
	width: 100%;
	height: 100%;
}
.insights-blog-main-one-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.insights-blog-main-one{
	position: relative;
}
.insights-blog-main-one-overlay{
	position: absolute;
	background-color: #fff;
	padding: 10px 20px;
	bottom: 0;
	left: 20px;
	width: 80%;
	color: #5A5A5A;
}
.insights-blog-main-one-overlay h3,
.insights-blog-main-body h3{
	font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #000;
}
.insights-blog-main-one-overlay span,
.insights-blog-main-body span{
	color: #7A7A7A;
	border-right: 1px solid #7A7A7A;
	padding-right: 15px;
	font-weight: 600;
}
.insights-blog-main-one-overlay .cat-link,
.insights-blog-main-body .cat-link{
	padding-left: 15px;
	color: #7A7A7A;
	font-weight: 600;
}
.insights-blog-main{
	background-color: #fff;
	border: 1px solid #F0F0F0;
	height: 100%;
}
.insights-blog-main-img{
	width: 100%;
}
.insights-blog-main-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.insights-blog-main-body{
	padding: 15px 20px;
	color: #7A7A7A;
}
/* ---insight blog page end---- */

/* ---insight event page start--- */

.event-left {
	border-bottom: 1px solid #BDBDBD;
	width: 70%;
	padding: 0px 0px 10px;
	margin: 0px 0px 15px;
}

.event-left .custom-control-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
	color: #7A7A7A;
	font-size: 15px;
}

.event-left .custom-control-label::before {
	position: absolute;
	top: .25rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	pointer-events: none;
	content: "";
	background-color: #fff;
	border: #000000 solid 1px;
	border-radius: 0px !important;
}

.event-left .custom-control-input:checked ~ .custom-control-label::before {
	color: #fff;
	border-color: #000;
	background-color: #000;
}

.event-col {
	border: 1px solid #F0F0F0;
	margin-bottom: 30px;
}

.event-col img{
	width: 100%;
}

.event-col .info-cont{
	width: 100%;
	position: relative;
	padding: 0px 15px;
}

.event-col .info-cont h5 {
	font-size: 16px;
	color: #000;
	font-weight: 600;
	margin-top: 10px;
}

.event-col .info-cont h5 span {
	font-size: 13px;
	color: #990000;
	font-weight: 400;
	display: block;
}

.day-time {
	font-size: 12px;
	color: #7A7A7A;
	position: absolute;
	left: 15px;
	bottom: 10px;
}

.event-col .date{
	background: #000; 
	color: #fff;
	padding: 10px;
	text-align: center;
}

.event-col .date{
	background: #000; 
	color: #fff;
	padding: 10px;
	text-align: center;
}

.event-col .date .top-date {
	padding: 0px 0px 10px;
	border-bottom: 1px solid #fff;
	width: 100%;
	display: inline-block;
	margin: 0px 0px 10px;
}

.comingsoon p span{
	color: #990000;
	font-weight: 600;
}
/* ---insight event page end---- */

/* ---insight event detail page start---- */

.event-detail-cont {
	width: 95%;
}

.event-detail-cont img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	margin: 20px 0px 10px;
}

.event-detail-cont h5 {
	font-size: 17px;
	font-weight: 600;
	margin: 30px 0px 20px;
}

.event-detail-cont p {
	font-size: 15px;
	color: #7A7A7A;
	margin-bottom: 20px;
}

.event-detail-cont p span, .event-detail-cont p a {
	color: #000;
}

.event-detail-right {
	width: 100%;
	margin-top: 30px;
}

.event-detail-right h5 {
	font-size: 17px;
	font-weight: 600;
	margin: 10px 0px 20px;
}

.event-detail-right p {
	font-size: 15px;
	color: #000;
	margin-bottom: 20px;
}

.event-detail-right .follow-our-socials-icon {
	text-align: left;
}

.cl-red{
	color:#990000;
}

.get-btn {
	width: auto;
	display: inline-block;
	background: url("../img/arrow-right.svg") right center no-repeat;
	padding: 0px 13px 0px 0px;
	background-size: 7px;
	height: 24px;
	color: #7A7A7A;
	font-size: 14px;
	margin-bottom: 30px;
}

.get-btn:hover {
	color: #7A7A7A;
	font-size: 14px;
}

.ev-explore{
	width: 80%;
	text-align: center;
	margin: 50px auto 0px;
}

/* ---insight event detail page end---- */

/* ---insight Linked to Live Webinar page start---- */

.date-time {
	width: 100%;
	margin-bottom: 30px;
	background: #000;
	padding: 0px 25px 10px;
}

.date-time h4 {
	width: 80%;
	margin: 0px auto 20px;
	background: #fff;
	padding: 15px 0px;
	color: #000;
	font-size: 21px;
	text-align: center;
}

.date-time p {
	font-size: 14px;
	color: #fff;
	margin-bottom: 10px;
}

.date-time p a {
	font-size: 15px;
	color: #fff;
	padding-top: 20px;
	display: inline-block;
}

.event-detail-right .right-txt {
	color: #7A7A7A;
	font-size: 14px;
}

.event-detail-right .right-txt a{
	color: #000;
}

.event-detail-cont video {
	width: 100%;
	height: 350px;
	object-fit: cover;
	margin-top: 20px;
}

/* ---insight Linked to Live Webinar page end---- */

/* ---insight Insights - Downloads page start---- */

.downloads-btn {
	color: #990000;
	font-weight: bold;
	font-size: 15px;
	width: auto;
	display: inline-block;
	background: url("../img/download-icon.png") right center no-repeat;
	background-size: 18px;
	font-weight: 600;
	padding: 0px 25px 0px 0px;
	line-height: 30px;
}

.downloads-btn:hover {
	text-decoration: none;
	color: #990000;
}

.download{
	
}

.download-left  h3 {
	margin-bottom: 15px;
}

.download-right {
	text-align: right;
	padding-top: 10px;
}

.download-right span {
	color: #7A7A7A;
	display: block;
	font-weight: 500;
	font-size: 14px;
}

.download-popup{
	padding-top: 150px;	
}

.download-popup .modal-header .close {
	padding: 5px 12px;
	margin: -1rem -1rem -1rem auto;
	color: #fff;
	opacity: 2;
	z-index: 2;
	position: absolute;
	right: 20px;
}

.download-popup .modal-header {
	background: #990000;
	text-align: center;
	height: 140px;
	border-radius: 0px;
}

.download-popup .modal-header .popup-img{
	position: absolute;
	width: 100%;
	top: -40px;
	left: 0px;
	text-align: center;
	z-index: 1;
}

.download-popup .modal-header .popup-img img{
	width: 160px;
	display: inline-block;
}


.download-popup .modal-body{
	text-align: center;
}

.download-popup .modal-body p {
	width: 70%;
	display: inline-block;
	padding: 5px 0px;
}

.download-popup .modal-content{
	border-radius: 0px;
}

.download-popup .modal-content .popup-form {
	width: 90%;
	margin: 20px auto;
	border: 1px solid #BDBDBD;
	padding: 10px;
	text-align: left;
}

.download-popup .modal-content .popup-form input {
	width: 87%;
	display: inline-block;
	border: 0px;
	padding: 0px 0px 0px 10px;
	font-size: 14px;
	color: #7A7A7A;
	border-right: #BDBDBD 1px solid;
}

.download-popup .modal-content .popup-form input[type="submit"] {
    width: 12.2%;
    border: 0px;
    background: url("../img/send-ic.png") center center no-repeat;
    background-size: 16px;
    padding: 0px;
    float: right;
}

.mag-35{
	margin-top: -35px;
}

.event-col .info-cont h5 {
	text-align: left;
}

/* ---insight Insights - Downloads page end---- */


/* ---Team page start---- */


.career-sec {
	 width: 100%;
	height: 430px;
	position: relative;
}

.career-sec:after {
	width: 100%;
	/* float: left; */
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	content: "";
	background: url("../img/team/footer-bg-c.png") left top no-repeat;
}

.career-sec img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	/* position: relative; */
}

.career-sec .banner-content {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	width: 100%;
}

.career-sec .banner-content h2 {
	margin: 10px 0;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	position: relative;
	padding-bottom: 30px;
	color: #fff;
	width: 38%;
}

.career-sec .banner-content h2::after {
	width: 40px;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: 10px;
	background: #fff;
	border-radius: 10px;
	content: "";
}

.career-sec .banner-content p {
	font-weight: 400;
	font-size: 15px;
	color: #fff;
	padding-bottom: 20px;
	width: 50%;
	text-align: left:;
}

.career-sec .banner-content a {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	/* padding: 0px 20px; */
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 65px 0px 30px;
}

.career-sec .banner-content a:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
}


.team-banner {
	height: 480px;
}

.team-banner :after {
	background: url("../img/team/banner-bg-c.png") left top no-repeat;
}


.team-banner .banner-content h2 {
	font-size: 44px;
}

.team-sec {
	padding: 40px 0px;
}

.team-sec p {
	text-align: center;
	padding: 0px 0px 20px;
}

.team-sec h2.main-title {
	color: #990000;
	font-size: 30px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	text-align: center;
	margin-bottom: 30px;
}

.team-sec h2.main-title::after{
	display: none;
}

.team-sec h3 {
	color: #990000;
	font-size: 30px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}
.team-sec h3::after {
	content: '';
	height: 4px;
	width: 100%;
	background-color: #990000;
	display: block;
	margin: 30px auto 15px auto;
	top: -10px;
	position: absolute;
	left: 0px;
	z-index: 1;
}

.team-sec h3 span {
	position: relative;
	padding: 5px 10px;
	background: #fff;
	color: #000;
	z-index: 2;
}

.pt-mg-col {
	width: 100%;
	float: left;
	margin-bottom: 50px;
}

.pt-mg-col img{
	width: 100%;
	height: 250px;
	object-fit: cover;
	margin-bottom: 20px;
}

.pt-mg-col h5 {
	font-size: 18px;
	color: #000;
	font-weight: bold;
}

.pt-mg-col span {
	color: #818181;
}

/* .manging-col {
	width: 100%;
	float: left;
	margin-bottom: 50px;
} */
.manging-col {
    width: 100%;
    float: left;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

/* .manging-col img {
	width: 50%;
	float: left;
	height: 400px;
	object-fit: cover;
	margin-right: 15px;
} */
.manging-col img {
    width: 175px;
    float: left;
    height: 175px;
    object-fit: cover;
    margin-right: 15px;
}

/* .mg-cont {
	width: 46%;
	float: right;
} */
.mg-cont {
    width: auto;
    float: right;
}
.flex-content {
    display: flex;
	align-items: flex-start;
	gap: 20px;
}
.social-flex {
    display: flex;
}
.social-flex a:nth-last-of-type(1) img {
   margin-right: 0px!important;
}

/* .mg-cont h5 {
	width: 100%;
	background: #000;
	color: #fff;
	padding: 20px 25px;
	margin-left: -40px;
	margin-top: 20px;
	font-size: 17px;
} */
.mg-cont h5 {
    width: 100%;
    /* background: #000; */
    color: #000!important;
    padding: 0px!important;
    margin-left: 0px!important;
    /* margin-top: 20px; */
    /* margin-bottom: 20px; */
    font-size: 17px;
    font-weight: 600;
    font-size: 18px!important;
}
.mg-cont p {
	text-align: left;
	line-height: 40px;
	width: 75%;
	font-size: 16px;
}

/* ---Team page end---- */




/* ---Contact Us page start---- */

.contact-form {
	background: #F7F7F7;
}

.contact-select{
	margin-top: 50px;
}
.contact-select label {
	font-size: 18px;
	color: #000;
	font-weight: 400;
	text-transform: uppercase;
}

.contact-select select {
	width: 100%;
	border: 0px;
	border-bottom: #AD2F2F 2px solid;
	height: 44px;
	font-size: 18px;
	font-weight: bold;
}

.cnt-right-side .view-link {
	font-size: 16px;
	color: #000;
	text-decoration: underline;
}

.cnt-right-side  p {
	color: #7A7A7A;
	margin: 15px 0px;
}

.contact-form h4 {
	font-size: 21px;
	font-weight: bold;
}

.contact-form p {
	color: #990000;
	margin: 15px 0px 30px; 
	font-weight: 600;
}

.contact-form label {
	width: 100%;
	color: #000;
	font-size: 16px;
}

.contact-form input {
	height: 44px;
	width: 100%;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 20px;
	border: #7A7A7A 1px solid;
	background: none;
	color: #BDBDBD;
}

.contact-form select {
	height: 44px;
	width: 100%;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 20px;
	border-radius: 0px;
	border: #7A7A7A 1px solid;
	background: none;
	color: #BDBDBD;
}

.contact-form textarea {
	height: 120px;
	width: 100%;
	padding: 10px 0px 0px 15px;
	margin: 0px 0px 20px;
	border: #7A7A7A 1px solid;
	background: none;
	color: #BDBDBD;
}

.contact-form .form-check {
	padding-left: 0px;
	margin-bottom: 20px;
}
.contact-form .form-check input {
	width: 24px;
	height: 24px;
	border: #7A7A7A 1px solid;
}

.contact-form .form-check label {
	width: 100%;
	color: #000;
	font-size: 16px;
	padding-left: 40px;
}

.contact-form input.submit-btn {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	/* padding: 0px 20px; */
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 100px 0px 60px;
	margin-top: 30px;
}

.contact-form input.submit-btn:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none
}

.contact-map h5 {
	color: #000;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-map h6 {
	color: #990000;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}

.contact-map p {
	color: #000;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 10px;
}

.contact-map p strong {
	padding-top: 10px;
	display: inline-block;
}

.map-sec{
	padding-bottom: 30px;
}

.contact-accordion .card {
	border: 0;
	background: none;
	border-bottom: #7A7A7A 1px solid !important;
	border-radius: 0px;
}

.contact-accordion .card-header {
	border: 0;
	background: none;
	margin-bottom: 0px;
}

.contact-accordion .card-body{
	color: #7A7A7A;
}


.contact-accordion .card-header a {
	text-decoration: none;
}
.contact-accordion .card-header h5 {
	color: #000;
	font-size: 17px;
}

.contact-accordion .card-header i {
	float: right;
}

.map-btn {
	width: auto;
	float: right;
	margin-bottom: 10px;
}

.map-btn a{
	padding: 0px 10px;
	height: 38px;
	line-height: 38px;
	color: #7A7A7A;
}

.contact-form-1 input {
	background: #fff;
	color: #7A7A7A;
}

.contact-form-1 select {
	background: #fff;
	color: #7A7A7A;
}

.contact-form-1 textarea {
	background: #fff;
	color: #7A7A7A;
}

.map-btn a i {
	font-size: 18px;
	padding-right: 7px;
	margin-top: 2px;
}

/* ---Contact Us page end---- */

/* ---Career Us page start---- */

.career-page{
	padding: 50px 0px 60px;
}


.career-page p{
	padding: 0px 0px 30px;
	text-align: center;
	color: #7A7A7A;
}

.career-page p strong{
	color: #000;
}

.career-page .img-sec {
	width: 100%;
	height: 450px;
	position: relative;
}

.career-page .img-sec img{
	width: 100%;
	height: 450px;
	object-fit: cover;
	z-index: 1;
}

.career-page .img-sec h2 {
	width: 29%;
	position: absolute;
	left: 0px;
	top: 25%;
	z-index: 2;
	background: #fff;
	padding: 30px;
	font-family: 'Playfair Display', serif;
font-weight: bold;
	font-size: 34px;
}

.career-page .img-sec span{
	color: #990000;
}

.career-bottom {
	text-align: center;
}
.career-bottom p {
	padding: 20px 0px 20px;
	text-align: center;
	color: #000;
	width: 50%;
	display: inline-block;
}

.career-bottom h3 span {
	width: 100%;
	color: #990000;
	display: inline-block;
	font-size: 14px;
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
}

.career-bottom .career-form {
    width: 50%;
    margin: 20px auto;
    border: 1px solid #BDBDBD;
    padding: 15px 10px;
    text-align: left;
	background: #fff;
}

.career-bottom .career-form input {
	width: 90%;
	display: inline-block;
	border: 0px;
	padding: 0px 0px 0px 10px;
	font-size: 14px;
	color: #7A7A7A;
	border-right: #BDBDBD 1px solid;
}

.career-bottom .career-form input[type="submit"] {
	width: 9.2%;
	border: 0px;
	background: url("../img/send-ic.png") center center no-repeat;
	background-size: 16px;
	padding: 0px;
	float: right;
}


.career-bo-col {
	background: #fff;
	padding: 30px 20px 50px;
	text-align: left;
	position: relative;
	height: 180px;
	margin-top: 40px;
}

.career-bo-col h5 {
	font-size: 16px;
	color: #000;
	font-weight: 600;
	margin-top: 0;
}

.career-bo-col h5 span {
    font-size: 13px;
    color: #7A7A7A;
    font-weight: 400;
    display: block;
	margin-bottom: 6px;
}

.career-bo-col .day {
    font-size: 12px;
    color: #000;
    position: absolute;
    left: 20px;
    bottom: 20px;
}


.apply-btn {
	display: inline-block;
	padding: 0px 20px 0px 0px;
	margin: 0;
	cursor: pointer;
	float: none;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 600;
	line-height: 21px;
	position: relative;
	word-break: break-word;
	color: #990000;
	width: auto;
}

.apply-btn:hover {
	color: #990000;
	text-decoration: none;
	padding: 0px 25px 0px 0px;
}

.apply-btn:after {
    content: ' ';
    background: url(../img/r-btn.png) right center no-repeat;
    display: inline-block;
    width: 20px;
    background-size: 15px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}


/* ---Career Us page end---- */

.about-banner .banner-content h2 {
	font-size: 36px;
	width: 40%;
}

.about-page-sec {
	padding: 50px 0px 0px;
	text-align: center;
}

.about-page-sec h2 span {
	width: 100%;
	display: inline-block;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #990000;
	text-transform: uppercase;
}


.about-page-sec h2.main-title::after {
	content: '';
	height: 2px;
	width: 100px;
	background-color: #990000;
	display: block;
	margin: 20px auto 30px auto;
}


.about-page-sec p {
	text-align: center;
	padding: 0px 0px 20px;
}

.how-do {
	width: 100%;
	height: 550px;
	margin: 60px 0px 0px;
	background: url("../img/about-us/how-do-bg.png") center center no-repeat;
	background-size: cover;
	display: table;
	padding: 15px;
}

.how-do-main {
	width: 100%;
	height: 100%;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border: #fff 1px solid;
}

.how-do-txt {
	width: 60%;
	display: inline-block;
	background: rgba(255,255,255,.9);
	padding: 20px 30px;
	box-shadow: 0px 16px 40px #00000014;
}

.how-do-txt h3 {
	color: #000;
	font-size: 30px;
	font-weight: 600;
	font-family: 'Playfair Display', serif;
	margin-bottom: 20px;
}

.how-do-txt ul{
	width: 100%;
	text-align: left;
}

.how-do-txt ul li {
	width: 100%;
	text-align: left;
	background: url("../img/r-btn.png") left 6px no-repeat;
	padding: 0px 0px 15px 25px;
	display: block;
	background-size: 18px;
}

.work-without {
	width: 100%;
	background: url("../img/about-us/work-bg.svg") left top no-repeat;
	background-size: 25%;
	height: 600px;
}

.work-without h2 {
	background: rgba(255,255,255,.9);
	padding: 10px 20px;
	margin-top: 220px;
	font-size: 48px;
	font-family: 'Playfair Display', serif;
}

.work-without .col-lg-7{
	padding-top: 140px;
}

.work-without .col-lg-7 p{
	margin-bottom: 20px;
}

.industries-sec {
	position: relative;
	text-align: center;
}

.industries-sec .img-sec {
	width: 100%;
	height: 450px;
}

.industries-sec .img-sec img{
	height: 100%;
}

.industries-txt {
	width: 100%;
	margin-top: -100px;
	position: relative;
	z-index: 9;
}

.industries-txt .serve-cont {
	width: 100%;
	padding: 30px 20px;
	background: #fff;
	box-shadow: 0px 16px 40px #00000014;
	text-align: center;
}

.industries-txt .serve-cont h3 {
	font-size: 30px;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	color: #990000;
	margin-bottom: 15px;
}


.industries-txt .serve-cont p {
	margin-bottom: 30px;
}

.serve-cont-col{
	width: 90%;
	display: inline-block;
}

.serve-cont h4 {
	font-size: 18px;
	font-weight: bold;
	line-height: 36px;
}

.serve-cont h4 img {
	width: 30px;
	margin-top: -5px;
}

.meet-team-btn {
	width: auto;
	display: inline-block;
	margin: 40px 0px;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 65px 0px 30px;
}
	
.meet-team-btn:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none;
	color: #fff;
}


.slick-prev, .slick-next {
	background: url("../img/arrow-left.svg") left center no-repeat;
}

.slick-next {
	background: url("../img/arrow-right.svg") left center no-repeat;
}


.slick-prev:hover {
	background: url("../img/arrow-left.svg") left center no-repeat;
	opacity: .7;
}

.slick-next:hover {
	background: url("../img/arrow-right.svg") left center no-repeat;
	opacity: .7;
}

.slick-prev::before, .slick-next::before {
	display: none;
}

.about-sec .about-con {
	width: 90%;
}

/*-----AMC Home page---------*/

.amc .left-sec{
	float: left;
}

.amc .right-sec .social-icon a {
	margin-right: 10px;
	display: inline-block;
	color: #000;
}
.press-highlights-amc{
	background: #F7F7F7;
}

.press-highlights-amc .press-img {
	width: 100%;
}

.press-highlights-amc .press-col-cont {
	width: 100%;
	background: #fff;
	padding: 32px 30px;
}

.press-highlights-amc .col-right .press-col-cont {
	width: 100%;
	background: #fff;
	padding: 15px;
}

.press-highlights-amc .col-right .press-col-cont h5 {
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
}

.social-wall {
	background: #fff;
}


/* ---Careers page start---- */

.careers-form {

}

.careers-select{
	margin-top: 50px;
}
.careers-select label {
	font-size: 18px;
	color: #000;
	font-weight: 400;
	text-transform: uppercase;
}

.careers-select select {
	width: 100%;
	border: 0px;
	border-bottom: #AD2F2F 2px solid;
	height: 44px;
	font-size: 18px;
	font-weight: bold;
}


.careers-form h4 {
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
}

.careers-form h4 span {
	color: #7A7A7A;
	font-size: 15px;
	padding: 0px 10px;
}

.careers-form p {
	color: #990000;
	margin: 15px 0px 30px; 
	font-weight: 600;
}

.careers-form label {
	width: 100%;
	color: #000;
	font-size: 16px;
}

.careers-form input {
	height: 44px;
	width: 100%;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 20px;
	border: #7A7A7A 1px solid;
	background: #F5F5F5;
	color: #BDBDBD;
}

.careers-form select {
	height: 44px;
	width: 100%;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 20px;
	border-radius: 0px;
	border: #7A7A7A 1px solid;
	background: #F5F5F5;
	color: #BDBDBD;
}

.careers-form textarea {
	height: 120px;
	width: 100%;
	padding: 10px 0px 0px 15px;
	margin: 0px 0px 20px;
	border: #7A7A7A 1px solid;
	background: #F5F5F5;
	color: #BDBDBD;
}

.careers-form .form-check {
	padding-left: 0px;
	margin-bottom: 20px;
}
.careers-form .form-check input {
	width: 24px;
	height: 24px;
	border: #7A7A7A 1px solid;
}

.careers-form .form-check label {
	width: 100%;
	color: #000;
	font-size: 16px;
	padding-left: 40px;
}

.careers-form input.submit-btn {
	width: auto;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	background: url("../img/w-btn.png") #990000 85% center no-repeat;
	background-size: 24px;
	/* padding: 0px 20px; */
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	padding: 0px 100px 0px 60px;
	margin-top: 30px;
}

.careers-form input.submit-btn:hover {
	background: url("../img/w-btn.png") #000 90% center no-repeat;
	background-size: 24px;
	text-decoration: none
}

.upload-file input{
	padding-top: 7px;
}

/*--------------newsroom-detail-------------------*/

.newsroom-details {
	padding: 50px 0px;
	width: 60%;
	margin: 0px auto;
	text-align: center;
}

.newsroom-details h3{
	font-weight: 600;
	padding-bottom: 10px;
}

.newsroom-details span{
	color: #BDBDBD;
	padding-bottom: 30px;
	width: 100%;
	display: inline-block;
}

.newsroom-details p{
	text-align: left;
	padding-bottom: 20px;
}

.newsroom-details .featured-articles-img {
	width: 60%;
	height: 100%;
	position: relative;
	display: inline-block;
	margin: 10px 0px 30px;
}

.newsroom-details ul {
	padding: 0px 0px 0px 20px;
	text-align: left;
}

.newsroom-details ul li {
	padding: 0px 0px 10px;
}

/*--------------blog-detail-------------------*/

.blog-details {
	width: 70%;
	margin: 0px auto 50px;
}

.blog-img {
	width: 100%;
	height: 550px;
}

.blog-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-dtl-txt {
	width: 80%;
	margin: -70px auto 0px;
	z-index: 99;
	position: relative;
}


.blog-dtl-txt .heading-txt {
	width: 100%;
	background: #fff;
	box-shadow: 0px 4px 16px #00000014;
	padding: 20px;
	margin-bottom: 30px;
}

.blog-dtl-txt .heading-txt h3 {
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	padding-bottom: 10px;
}

.blog-dtl-txt .heading-txt span {
	color: #BDBDBD;
	width: 100%;
	display: inline-block;
}

.blog-dtl-txt p {
	text-align: left;
	padding-bottom: 20px;
}


.blog-dtl-txt .socials-p {
	text-align: center;
	padding-bottom: 10px;
}

/********for new changes**************/
.manging-col h6 {
    color: #990000;
    font-weight: 600;
    font-family: 'Lato';
    font-size: 18px;
    /* padding: 10px 0px 5px 0px; */
	padding: 0;
    margin: 0;
}
.mg-cont h4 {
    font-size: 15px;
    padding-top: 2px;
    padding-bottom: 15px;
}
.mg-cont-a  {
    width: 100%;
    float: left;
    display: flex;
    align-items: center;
    /* margin-bottom: 15px; */
}
.mg-cont-a i {
    margin-right: 10px;
}
.manging-col a  {
text-decoration:none;
}
.manging-col a i {
    font-size: 17px;
    width: 30px;
    height: 30px;
    border: 1px solid transparent;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #4ba2f7;
    border-radius: 8px;
    font-size: 14px;
}








.serve-cont-col h4 {
    display: flex;
    align-items: center;
    font-size: 15px;
}
.serve-cont-col h4 img {
    margin-right:10px;
}

.contact-form select {
    color: #7A7A7A;
}
.tab-slider button.slick-prev.slick-arrow {
    bottom: 13%;
    position: absolute;
    left: 45%;
    top: 104%;
    z-index: 1020;
    opacity: 2!important;
    background-size: 10px;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    border-radius: 560%;
    border: 1px solid #e3e3e3;
}
.tab-slider button.slick-next.slick-arrow {
    bottom: 13%;
    position: absolute;
    right: 44%;
    top: 104%;
    z-index: 1020;
    opacity: 2!important;
    background-size: 10px;
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    border-radius: 560%;
    border: 1px solid #e3e3e3;
}
.slick-next:hover {
    display: block!important;
}
.slick-prev:hover {
    display: block!important;
}

.tab-slider .slick-track {
    width: auto!important;
}
.tab-slider .slick-slide {
    width: 50%!important;
}
.tab-slider .slick-track {
   // display: flex;//
}



      .swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }


.tab-slide {
    width: 100%;
    float: left;
    overflow: hidden;
}
.swiper-wrapper  {
    padding-bottom: 60px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    display:none;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display:none;
}
.swiper-button-next, .swiper-button-prev {
    top: 95%!important;
}
.swiper-button-prev {
    width: 40px!important;
    height: 40px!important;
    background: #990000;
    opacity: 1!important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    left: 43%!important;
}
.swiper-button-next{
    width: 40px!important;
    height: 40px!important;
    background: #990000;
    opacity: 1!important;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    right: 42%!important;
}
.swiper-button-prev i {
    color: #fff;
}
.swiper-button-next i {
    color: #fff;
}
p.discription-p {
    line-height: 24px;
    font-size: 13px;
    width: 100%!important;
    /*-webkit-line-clamp: 3;
     display: flex;
    overflow: hidden;
    -webkit-line-clamp: 7 !important;
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden; */
    margin-top: 10px;
	text-align: justify!important;
}
section.stay-connected img {
    max-width: 100%;
    width: 100%;
}
.insights-blog-main-one-img {
    width: 100%;
    max-width: 100%;
}
.dropdown-menu.show a {
    margin-bottom: 10px;
    width: 100%;
    float: left;
}
.dropdown-menu.show a:nth-last-of-type(1) {
    margin: 0;
}
.dropdown-menu.show {
    padding: 10px;
}
.social-flex .email-li-icon img {
    width: 30px!important;
    height: 30px!important;
	margin-right: 10px;
}
.social-flex a img {
    width: 30px!important;
    height: 30px!important;
	margin-right: 10px;
}
.partner-manager-title {
    width: 70%;
    margin-left: 15%;
    padding-bottom: 20px;
}
.navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
	min-width: 270px!important;
}

@media screen and (min-width:1550px) and (max-width:1920px) {
	p.discription-p {
		font-size: 14px;
	}
}

@media screen and (max-width:600px) {
	.insights-blog-main-one-img {
		margin-bottom: 30px;
	}
	.navbar-nav .dropdown-menu {
		float: left;
		width: 100%;
	}
	.manging-col {
		flex-direction: column;
	}
	.manging-col img {
		width: 70%!important;
		height: auto!important;
		margin: auto!important;
	}
	p.discription-p {
		font-size: 14px;
		text-align: center;
	}
	.team-img-sec {
		text-align: center;
		display: block;
		display: flex;
		margin-bottom: 30px;
	}
	.flex-content {
		display: flex;
		align-items: flex-start;
		gap: 20px;
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
	}
}

