.sec-hero {
  background: url("../images/benner-bg.jpg");
  background-color: #f5f5f5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-hero .container {
  z-index: 1;
}
.sec-hero::after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  content: "";
}

/* home page css  */
.btn_dark_btn {
  margin-top: 30px;
}

.service-offered-card {
  height: 40vh;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 11px;
}

/* About-us page css  */
.page_banner {
  background-image: url(../images/about-us-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
  width: 100%;
  position: relative;
}
.page_banner::after {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
}

.heading-wrapper {
  position: relative;
  height: 50vh;
}

.heading-wrapper h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: rgb(255, 255, 255);
  text-shadow: rgba(0, 0, 0, 0.1) 1px 0px 5px;
  z-index: 99;
}
.content-wrap {
  padding: 10px 0;
}

.content-wrap p {
  font-size: 20px;
  font-weight: 300;
}

/* corporate consultancy page css */

.inner-content-wrap h2 {
  border-bottom: 1px solid rgb(153, 153, 153);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.common-pera {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.head-h2 {
  text-transform: uppercase;
  font-size: 20px;
  color: var(--t-blue);
  font-weight: 900;
}
.corporate-list {
  padding: 0;
  margin: 20px;
}
.corporate-list li {
  font-size: 14px;
  padding-bottom: 5px;
  color: rgb(51, 51, 51);
  font-weight: 400;
}
.inner-wrap {
  padding-top: 20px;
}
/* asset class advisory page css */
.service-card {
  height: 50vh;
  box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 11px;
}
.service-card ul {
  padding: 0;
  margin: 0 30px;
}

/* research section css */
.main-research-wrap {
    height: auto;
}
.main-table-wrapper {
  overflow-x: auto;
  
}

.main-table-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
}
table tr td {
  border: 1px solid #444;
}
table tr td a{
  color: rgb(0, 97, 168);
}
table thead tr th {
  border: 1px solid #444 !important;
  background:#999 !important;
  color: #fff !important;
}

/* video gallery page css */
.video-card{
  background-color: #444;
  border-radius: 20px;
      width: 100%;
      aspect-ratio: 16/9;

} 
.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;   
    display: block;
}

/* contact us page css */
.find-us-wrapper{
  background-color: rgba(0, 0, 0,0.1);
  padding: 20px;
}
.find-us-wrapper p a{
    color:#333
}
.form-name-wrap{
  padding-bottom: 20px;
}
.label-name{
  margin-bottom: .5rem;
}
.contact-form-wrapper .form-control{
  border:1px solid #444;
  border-radius:0;
  resize: none;
  padding: 10px;
}
.contact-form-wrapper .submit-button{
  background: #333;
  padding: 12px 15px; 
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  border: none;
  position: relative;
}
.contact-form-wrapper .submit-button::after{
  content:"\f061" ;
  font-family: "FontAwesome";
  display: inline-block;
  padding-left: 10px;
 
}

/* scrolled navbar css */
.navbar-custom{
  position: fixed;
  top: 0;
  width: 100%;
  z-index:999;
  transition: all 0.2s ease;
}
.navbar-custom.scrolled{
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  padding: 10px 0;
  top: 0;
  left:0;
  width:100%;
  z-index:9999;

}

.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .brand-title,
.navbar-custom.scrolled .brand-subtitle{
  color:#000;
} 
.navbar-custom.scrolled .nav-link:hover {
  color:#0061A8 !important;
}










/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}/* responsive css */
@media screen and (max-width: 991px) {
  .service-offered-card {
    height: 30vh;
    margin-bottom: 20px;
  }
  .service-card {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec-title,
  .about-content {
    text-align: center;
  }
  .btn-wrap {
    margin-top: 20px !important;
  }
  .about-us-section p {
    font-size: 16px;
    font-weight: 400 !important;
  }
  .about-us-section {
    padding: 50px 0;
  }
  .inner-content-wrap {
    padding: 0 30px;
  }
  .inner-content-wrap h2{
    margin-top: 20px;
  }
 
}
@media screen and (max-width: 580px) {
  .service-offered-card {
    height: 50vh;
  }
  .service-card {
    height: 60vh;
  }
  .about-us-section p {
    padding: 10px 30px 0px 30px;
  }
}
