@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Noto+Sans:wght@300;400;500;600&family=Roboto:wght@300;400;500;700&display=swap');

:root{
    --light-brown:    rgba(70, 42, 28, 1);
    --ah-primary-yellow: #F5811E;
}
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
	color:black;
  } 

.row, .container-fluid{
    padding: 0 !important;
    margin: 0 ;
}
  /* ah navbar css */

  .ah-navbar {
    display: flex;
    align-items: center;
    color: floralwhite;
    justify-content: space-between;
    padding: 0px 66px;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
  }
  .ah-header{
    background-color: 
    rgba(70, 42, 28, 0.8);
    height: 95px;
    z-index: 100;
  }
  
  /* ah-navbar logo section */
  .logo {
    height: 96px;
    width: 85px;
  }
  
  .logo img {
 width: 100%;
 height: auto;
 object-fit: contain;
  }
  
  /* ah-navbar items */
  .ah-nav-ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    position: relative;
	  margin-bottom:0;
  }
  .ah-nav-ul >li{
	margin-right: 39px;
	text-transform: uppercase;
	cursor: pointer;
	align-items: center;
	display: flex;
	height:90px;
  }

  .ah-nav-ul >li>a{
    color: white;
  }
  .ah-nav-ul> li> ul{
      display: none;
      position: absolute;
      box-shadow: 0 5px 5px -3px rgb(0 0 0 / 20%), 0 8px 10px 1px rgb(0 0 0 / 14%), 0 3px 14px 2px rgb(0 0 0 / 12%);
      z-index: 100;
/*     animation: smoothScroll 150ms forwards; */
    width: 50%;
    transform: translate(-35%);
	  top:100%;
  }



  .ah-nav-ul> li:hover ul{
    display:block;
   background-color: #462A1C;
    border-top: 3px solid white;
	   animation: smoothScroll 350ms forwards;
/*     padding: 8px 0px; */
  }
  
  .ah-nav-ul> li >ul>li{
      list-style: none;
      padding: 8px 16px;
	      font-size: 14px;
	     text-transform: capitalize;
  }



  .ah-nav-ul> li >ul>li>a {
    color: white;
  }
  .ah-nav-ul>li:hover>a {
    color: var(--ah-primary-yellow);
	   
    text-decoration: none;
  }

 .ah-nav-ul>li>ul>li:hover {
    color: var(--ah-primary-yellow);
    background: white;
  }
.ah-nav-ul>li>ul>li:hover a{
    color: var(--ah-primary-yellow);
	text-decoration:none;
}

  .ah-nav-ul>li:hover{
    cursor: pointer;
    /* border-bottom: 3px solid var(--ah-primary-yellow); */
  }

  .ah-nav-ul>li>a:hover::after{
    /* border-bottom: 3px solid var(--ah-primary-yellow);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0%; */
  }
  /* a:hover {
    cursor: pointer;
    color: rgb(154, 202, 202);
  } */
  
  /* ah-navbar button */
  
  .hamburger {
    color: floralwhite;
    background-color: transparent;
    border: 0;
    font-size: 20px;
    display: none;
    float: right;
    margin-top: auto;
    margin-bottom: auto;
  }
  .hamburger img{
      width: 40px;
      height: 40px;
  }
  .hamburger:focus {
    outline: none;
    cursor: pointer;
  }
  
  /* media query for mobile */
  
  @media (max-width: 767px) {
    .ah-nav-ul {
      display: none;
    }
    .sign-up {
      display: none;
    }
    .ah-navbar {
      align-items: baseline;
    }
    .hamburger {
      display: block;
    }
    .ah-nav-ul.show-menu {
      display: flex;
    }
  }
  
  /* media query for tablet */
  @media (max-width: 992px) {
    .ah-nav-ul {
      display: none;
      width: 100%;
      flex-direction: column;
      position: absolute;
      left: 0;
      top: 95px;
      padding: 32px 66px;
      
      background-color: white;
    }
	   .ah-nav-ul >li{
	align-items: unset;
	display: block;
	height:unset;
	  }
	  
	  .ah-nav-ul>li>ul {
    position: relative;
    box-shadow: none;
    width: 100%;
    border-top: none !important;
    transform: unset;
    list-style: decimal;
	  }
    .ah-navbar {
      align-items: baseline;
    }
    .ah-nav-ul>li>a {
        color: black !important;
    }
	   .ah-nav-ul>li>a:hover {
        color: black;
    }
 
  
    .sign-up {
      display: none;
    }
    .hamburger {
      display: block;
    }
    .ah-nav-ul.show-menu {
      display: block;
      z-index: 100;
      /* padding-left: 20px; */
    }
    .logo {
      width: 80px;
    }
    .ah-nav-ul li {
      padding: 16px 0px;
    }
  }
  
  @media (max-width: 500px) {
    /* .ah-nav-ul {
      flex-direction: column;
    } */
  .ah-nav-ul{
      padding:16px;
  }
    .ah-navbar {
      padding: 0px 16px;
      /* padding: 23px; */
    }
    .ah-nav-ul li {
      padding: 13px 10px;
    }
  }
  



  /* ah banner section */


.ah-hero-banner-container{
    position: relative;
}
.ah-hero-banner-container{
    height: 650px;
    width: 100%;
    position: relative;
}

  .ah-hero-banner-img{
      height: 100%;
    width: 100%;
    position: relative;
 
  }

  .top-img {
    margin-top: -95px;
	  z-index:-100;
  }
  .ah-hero-banner-img img{
    height: 100%;
    object-fit: cover;
    width: 100%;
    z-index: -100;
    position: absolute;
    
}

.ah-company-logo{ 
    max-width: 606px;
    height: 409px;
}
.ah-company-logo img{   
    width: 100%;
    height: 100%;
    object-fit: contain;

}
.ah-company-intro>a{
    background: var(--ah-primary-yellow);
    padding: 8px 16px;
    color: white;
	text-transform:uppercase;
}

.ah-company-intro>a:hover{
		text-decoration:none;
	color:var(--ah-primary-yellow);
	background:transparent;
	border:1px solid var(--ah-primary-yellow);
		transition: 350ms;
}
.ah-company-intro>h1{
    margin-bottom: 27px;
    font-size: 36px;
 color:var(--light-brown);
}
.ah-company-intro>span{
    font-weight: 500;
    font-size: 32px;
	 color: var(--ah-primary-yellow);
}
.ah-company-intro>p{
    margin-bottom: 32px;
    line-height: 25px;
}
.max-width{
    padding: 70px 100px;
    max-width: 1366px;
    margin: auto;
}

.img-wrapper{
margin-top:auto;
	margin-bottom:auto;
}
.about-us-home .ah-company-intro p{
	 display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media(max-width:1024px){
    .max-width{
        padding: 42px 16px;
    }
}

/* testimonials */

.ah-company-details-wrapper{
background-image: url("../images/businessman-holding-tablet-management-group-people-his-hand.jpg");
height: auto;
background-repeat: no-repeat;
width: 100%;
background-position: center;
background-size: cover;
position: relative;
z-index: 100;
}
.ah-company-details{
	padding:30px 100px !important;
}

.company-details{
    color: white;
    font-weight: 600;
    text-align: center;
    margin-right: 42px;
    margin-bottom: 42px;
}
.value{
    font-size: 65px;
    font-family: 'Alatsi', sans-serif;
	margin-bottom:0;
	padding-top:20px;
	color:white;
}
.ah-title{
    font-size: 30px;
    font-family: 'Alatsi', sans-serif;
	margin-bottom:0;
	color:white;
}
.overlay-img{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 42, 28, 0.6);
    z-index: -100;
}

.ah-company-details{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media(max-width:768px){
    .company-details{
        margin-left: auto;
        margin-right: auto;
        padding-right:32px
    }
}

/* home news and events */
.card-img{
    height: 249px;
    width: 100%;
}
.card-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;

}
.card-des{
    padding: 20px 10px;
}
.card-des> p{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	color:white;
	opacity:0.8;
}
.card-des span{
    float: right;
	color:white;
}
.ah-news-events-card{
    height: 371px;
/*     border: 2px solid var(--ah-primary-yellow); */
    margin-right: 16px;
	background: #665040;
	color:white;
    margin-bottom: 32px;
}
.home-news-events-ah h2{
font-size: 38px;
line-height: 49px;
color: var(--light-brown);
margin-bottom: 40px;
text-transform: uppercase;
}
.home-news-events-ah a{
/* padding:8px 14px;
background-color: var(--ah-primary-yellow);
color: white;
font-weight: 400;
font-size: 16px;
font-family: "Alatsi";
float: right;
margin-right: 25px; */
	color:black;
	text-decoration:none;
}

.home-news-events-ah>a{
padding:8px 14px;
background-color: var(--ah-primary-yellow);
color: white;
font-weight: 400;
font-size: 16px;
font-family: "Alatsi";
float: right;
margin-right: 25px;
	text-transform:uppercase;
}
.home-news-events-ah>a:hover{
	text-decoration:none;
	color:var(--ah-primary-yellow);
	background:transparent;
	border:1px solid var(--ah-primary-yellow);
		transition: 350ms;
}

.home-news-events-ah{
margin-bottom:42px;
}

.ah-news-events-card-wrapper{
    margin-bottom: 38px;
}

@media(max-width:768px){
    .ah-news-events-card{
        margin-bottom: 32px;
    }
    .ah-news-events-card-wrapper{
        margin-bottom: 0;
    }
}

/* home page contact now */
.ah-primary-btn{
padding:8px 14px;
background-color: var(--ah-primary-yellow);
	text-transform: uppercase;
color: white;
font-weight: 400;
font-size: 16px;
font-family: "Alatsi";
	text-align: center;
}
.ah-primary-btn:hover{
	text-decoration:none;
	color:var(--ah-primary-yellow);
	background:transparent;
	border:1px solid var(--ah-primary-yellow);
		transition: 350ms;
}

.home-contact-container{
    background-image: url(../images/closeup-business-handshake.jpg);
    width: 100%;
    height: auto;
    position: relative;
    z-index: 100;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.ah-linear-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #462A1C 0%, rgba(217, 217, 217, 0) 100%);
    z-index: -100;
}
.contact-header-ah{
    padding-top: 112px;
    padding-bottom: 112px;
    color: white;
}
.contact-header-ah h3{
margin-bottom: 25px;
font-family: 'Alatsi';
font-style: normal;
font-weight: 400;
font-size: 25px;
line-height: 32px;
	color:white;

}
.contact-header-ah p{

    font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 18px;
line-height: 25px;

}
.contact-header-ah-content>p{
	    margin-bottom: 65px;
		color:white;
}
.contact-header-ah-content{
    max-width: 382px;
}

/* message from chairman */
.msg-header h2{
    font-family: 'Alatsi';
font-style: normal;
font-weight: 400;
font-size: 38px;
line-height: 49px;
}
.msg-header p{
    font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 25px;
margin-bottom: 45px;
}

.form-label-investor{
	    padding-bottom: 0px !important;
    color: black !important;
    font-size: 14px !important;
    margin-bottom: 8px;
    margin-top: 16px;
}
.new-investor-form{
background:white;
	z-index:1000;

	    width: 27%;
}
.new-investor{
		padding:0px 16px 32px 16px;
}

.new-investor-form h2{
	    font-size: 20px;
    background: #f4f5f6;
    padding: 16px
}
.contact-header-ah {
display:flex;
	justify-content:space-between;
}
.new-investor .investor-submit{
border: none;
 margin-top: 32px;
}

.new-investor input{
border: 1px solid #f1f2f3;
	height:35px;
}

.new-investor input, .new-investor a{
	width:100%;
}

.md-img{
    max-width: 583px;
    height: 504px;
}
.md-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-msg-container{
 max-width: 482px;
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 25px;
margin-left: auto;
padding-left: 32px;
}

.msg-header h2{
font-family: 'Alatsi';
 margin-bottom: 25px;
font-style: normal;
font-weight: 400;
font-size: 38px;
line-height: 49px;
color: var(--light-brown);
}

@media(max-width:1200px){
    .msg-header h2{
        font-size: 30px;
    }
}

@media(max-width:992px){
	.contact-header-ah{
		flex-direction:column;
	}
	
	.new-investor-form{
    margin-top: 42px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
	}
}
@media(max-width:768px){
    .md-msg-container{
        margin-left: 0;
        padding-left: unset;
        margin-top: 62px;
    }
}

@media(max-width:400px){
	.new-investor-form{
		width:70%;
	}
}

/* top footer */
.associate-companies{
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap:wrap;
	padding-top: 27px !important;
    padding-bottom: 27px !important;
}
.associate-companies-logo-img{
    width: 150px;
height: 140px;
margin-right: 36px;
}
.associate-companies-logo-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top-footer-wrapper{
   background: #d8d1d1;
}

/* ah footer css */
.acharya-holding-logo-footer{
  width: 193px;
  height: 193px;
  padding: 24px 0px;
}
.acharya-holding-logo-footer img{
  width: 100%;
height: 100%;
object-fit: contain;

}

.footer-ah{
  background-image: url(../images/modern-background-with-lines.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;

}
.quick-links-footer-ah h4, .footer-social-icons h4{
  margin-bottom: 43px;
  font-family: 'Alatsi';
font-style: normal;
font-weight: 400;
font-size: 20px;
line-height: 26px;
color: white;
}
.quick-links-footer-ah>ul>li>img{
  width:15px;
  height: 15px;
  margin-right: 10px;
}
.location-icon{
  width: 20px;
  height: 20px;
}
.footer-content-container-ah p{
  font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 25px;
color: white;
max-width: 322px;
}
.quick-links-footer-ah ul li a{
  font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 16px;
color: #FFFFFF;
opacity: 0.8;
text-decoration: none;
word-break: break-all;
}
.quick-links-footer-ah ul{
  padding-left: 0;
  list-style: none;
}
.quick-links-footer-ah{
/*   padding-top: 70px; */
  float: right;
}
.contact-us-footer{
/*   padding-top: 16px !important; */
}
.footer-social-icons{
/*   padding-top: 85px; */
  float: right;
}
.padding-top{
padding-top: 125px;
}
.padding-top ul li {
margin-bottom:8px;
}
.social-icons{
/* padding-top: 55px; */
}

.social-icon-img img{
 width: 20px;
 height: 20px;
 margin-bottom: 24px;
 
}
.social-icon-img{
 display: flex;
 justify-content: center;
}

.footer-wrapper{
/*   border-bottom: 1px solid white; */
  padding-top: 16px !important;
}

.footer-bottom-content{
  display: flex;
  justify-content: space-between;
}

.footer-bottom-content p{
  font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 19px;
color: #FFFFFF;
opacity: 0.7;
    margin-bottom: 0px;
}
.footer-bottom-ah{
  padding-top:26px !important;
  padding-bottom: 26px !important;
}


@media(max-width:768px){
  .quick-links-footer-ah, .footer-social-icons{
    padding-top: 30px;
    float: unset;
  }

  .social-icon-img{
    display: block;
  }
}


/* about us */

.iden{
  color: var(--light-brown);
  font-size: 38px;
  font-weight: 500;
  line-height: 0.8;
}
.about-company{
  max-width: 1200px;
  margin: auto;
  padding:0px 32px;
  margin-top: 100px;
}
.about-company h2{
color:#F5811E;
}
@media screen and (max-width:567px) {
  .about-company{
      padding: 0px 10px;
  }
}
@media screen and (max-width:400px) {
  .ah-about-image{
      height: 220px;
  }
  
}
.ab-bm-cards{
  display: flex;
  justify-content: space-around;
  align-content: center;
}
.ab-bm-cards .ab-bm-cards-card{
  width: 250px;
  height: 325px;
  text-align: center;
}
.ab-bm-cards .ab-bm-cards-card img{
  width: 250px;
  height: 225px;
  object-fit: cover;
}
.ab-bm-cards .ab-bm-cards-card p:first-child{
  text-transform: uppercase;
  font-weight: 500;
}        


/* contact us */
section.cu-section{
  margin: auto;
  padding: 16px;
  max-width: 1200px;
  padding-top: 77px;
}
p.cu-hd{
  text-align: left;
  font-size: 38px;
  text-transform: uppercase;
  color: #F5811E;
  font-weight: 500;
}
.form-box{
  background-color: var(--light-brown);
  margin-top: 16px !important;
}
.cu-contacts img{
  height: 26.5px;
  width: 26.5px;
  margin-right: 5px;
}
/* .cu-contacts p:not(p:last-of-type){
  text-align: left;
  
}
.cu-contacts p:last-of-type img{
  margin-right: 30px;
}
.cu-contacts p:last-of-type{
  margin-top: 100px;
  margin-left: 10px;
} */
.cu-logos{
  margin-top: 100px;
  margin-left: 10px;
}
.cu-logos a{
  margin-right: 15px;
}
@media screen and (max-width:673px) {

  .cu-logos{
      margin-top: 50px;
  }
  
}


.cu-contacts{
  color: white;
  font-size: 18px;
}
.cu-contacts a{
  text-decoration: none;

}
.cu-contacts-D{
  padding: 16px;
}
.cu-contacts-D p{
	color:white;
}
.cu-forms label{
  color: white;
}
.cu-forms button{
  color: #F5811E;
  text-transform: uppercase;
  font-weight: 500;
  
}
.cu-forms-D{
  padding: 16px;
}


/* board members */

*{
  box-sizing: border-box;
}
.container-cards{
  max-width: 1200px;
  margin: auto;
}
.ab-bm{
  color: #F5811E;
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin: 71px 0px;
  text-transform: uppercase;
}


.ab-bm-cards{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.ab-bm-cards .ab-bm-cards-card{
  width: 250px;
  height: 325px;
  border: 2px solid var(--light-brown);
  text-align: center;
  margin-bottom: 89px;
}
.ab-bm-cards .ab-bm-cards-card img{
  width: 100%;
  height:225px;
  object-fit: cover;
}
.ab-bm-cards .ab-bm-cards-card p:first-of-type{
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 16px;
}        
.ab-msg{
  background-color: #F5811E;
  width: 100%;
}
.ab-msg img{
  width: 550px;
  height: 450px;
  object-fit: cover;
}
.ab-msg p{
  color: white;
}
.ab-msg p:first-of-type{
  color: white;
  font-size: 38px;
  font-weight: 500;
  line-height: 0.8;
  text-transform:uppercase;
  margin-bottom: 55px;

}
.ab-msg p:last-of-type{
  margin-top: 55px;
}
@media screen and (max-width:576px) {
  .ab-msg img{
      width: 100%;
      object-position: left;
  }
  
}
#breadcrumbs  span span span{
  color: var(--ah-primary-yellow);
}
#breadcrumbs  span a{
  color: white !important;
}


/* our companies */
section.tata-paints{
  max-width: 1200px;
  margin:auto;
  padding: 16px;
}
.asc-contact{
	margin-bottom:72px;
}

.tp-box img{
  width: 561px;
  height: 379px;
  object-fit: contain;
}


p.tp-title{
  font-size: 38px;
  text-transform: uppercase;
  color: #F5811E;
}   
.tp-about img{
  height: 26.5px;
  width: 26.5px;
  margin-right: 15px;
}
.tp-about p{
  display: flex;
}
.tp-about a{
  text-decoration: none;
  color: black;
}



@media screen and (max-width:576px) {
      .tp-box img{
          /* width: 461px;
          height:300px;
          width: 90%;
          min-width: 450px; */
          width: 100%;
          object-fit: cover;
          object-position: center;
      }
      section.tata-paints{
          padding:0;
      }
      
  }
/* @media screen and (max-width:320px) {
  .tp-box img{
      width: 300px;
      
      
  }
  
} */

.single-event{
	text-align:center;
}

#breadcrumbs>span>span{
	color:white;
}
