* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*  
 font-family: "Noto Sans", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
    font-family: "Noto Sans", sans-serif;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}
p {
  margin-top: 0;
  font-size: 17px;
  margin-bottom: 0rem;
  color: #5f5f5f;
  font-weight: 400;
}
section {
  padding: 80px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* SITE BTN */
.site-btn {
    font-size: 18px;
    line-height: 1;
    text-transform: capitalize;
    color: var(--s-white);
    font-weight: 500;
    text-align: center;
    padding: 13px 25px;
    background-color: var(--s-primary);
    border: 1px solid var(--s-primary);
    border-radius: 100px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    transition: all 0.5s;
    letter-spacing: 1.5px;
    margin-top: 2px;
}
.site-btn:hover {
  color: var(--s-white);
  border:1px solid var(--s-secondary);
  background-color: var(--s-secondary);
}
.revSite-btn {
  background-color: #fff;
  color: var(--s-primary);
  border-color: #fff;
}
.revSite-btn:hover span {
  color: var(--s-white);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
.revSite-outline-btn {
  background-color: transparent;
  border-color: var(--s-white);
  color: var(--s-white);
}
/* TITLE BAR */
.titleBar {
  margin-bottom: 25px;
  position: relative !important;
}
.titleBar h6 {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--s-primary);
  margin-bottom: 15px;
  position: relative;
  letter-spacing: 2px;
}
.titleBar h3 {
  font-size: 53px;
  font-weight: 700;
  color: var(--s-black);
  margin-bottom: 20px;
}

.iconbg {
  background: var(--s-primary);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #0EBAB1;
  --s-secondary: #042638;
  /* --s-third: #34838a; */
  --s-white: #ffffff;
  --s-black: #000000;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}
/*=========================================  
        HOME PAGE CSS START HERE 
===========================================*/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  z-index: 99;
  border-radius: 0;
  padding: 8px 0px !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header-scrolled .nav-link {
  color: var(--s-white) !important;
  font-size: 15px !important;
}
/*================================
      HEADER CSS START HERE 
==================================*/
header {
    background-color: transparent;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}
/* TOP SECTION CSS */
.top-section {
  padding: 15px 0;
  background-color: var(--s-primary);
}
.top-location ul li {
  font-weight: 400;
  font-size: 14px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--s-white);
}
.top-location ul li a {
  color: var(--s-white);
  font-weight: 300;
}
.top-location ul li a lord-icon {
  margin-right: 8px;
}
.header-info ul li {
  padding: 0 3px;
}
.header-info ul li a {
  color: var(--s-primary);
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--s-white);
  border-radius: 100px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.header-info ul li a:hover {
  color: var(--s-white);
  background-color: var(--s-secondary);
}
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  background-color: var(--s-white);
}
.dropdown-menu li a
{
  color: var(--s-black);
  /* border-bottom: 1px solid var(--s-black); */
  padding: 10px 20px;
}
.dropdown-item:hover {
    background-color: var(--s-primary);
    border-color: var(--s-primary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: transparent;
  width: 100%;
  border-radius: 0px;
  /* padding: 40px 40px 0 40px; */
}
/* .navbar-toggler
{
  border: 1PX SOLID #FFF;
} */
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: var(--s-primary);
  margin: 0;
}
.bottom-header nav .navbar-nav .nav-item .nav-link.active::after {
  transform: scale(1);
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  color: var(--s-white);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  letter-spacing: 1px;
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}

/*************************************/
/***     Banner CSS Start Here     ***/
/*************************************/
.banner {
  background-color: #ffffff;
  position: relative;
}
.video-banner {
  padding: 17em 0em 11em 0em;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-position: 0% 90%;
}
.video-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
/*     --background-overlay: ''; */
/*     background-image: linear-gradient(90deg, #0ebab1f1 0%, #0ebab110 110%); */
    left: 0;
    top: 0;
    right: 0;
    z-index: 1;
}
.banner-video {
  position: absolute;
/*   top: 50%;
  left: 50%; */
  top: 0%;
  left: 0%;
/*   min-width: 100%;
  min-height: 100%; */
  width: 100%;
  height: 100%;
/*   transform: translate(-50%, -50%); */
  z-index: 1;
  object-fit: cover;
}
.bannerContent h5{
	font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--s-white);
    margin-bottom: 25px;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.678);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
}
.bannerContent h1{
    font-size: 69px;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.678);
    margin-bottom: 45px;
}
.bannerContent p{
    font-size: 23px;
    font-weight: bold;
    color: var(--s-white);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.322));
    text-shadow: 1px 2px 3px rgba(0, 0, 0, .5);
    margin-bottom: 40px;
}

/* Hero Section Start Here */
.heroBox{
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}
.hero-icon{
    width: 20%;
    margin-right: 20px;
}
.hero-icon img{
    width: 100%;
}
.hero-content{
    width: 80%;
}
.hero-content h3{
    font-size: 20px;
    font-weight: 600;
    color: var(--s-black);
}

/* Services Section Start Here */
.bg-gradient.is-service {
  height: 70%;
}
.bg-gradient {
  background-color: #0ebab133;
  border-radius: 100em;
  width: 70em;
  height: 35em;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}
.absolute-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}
.background-blur {
  -webkit-backdrop-filter: blur(120px);
  backdrop-filter: blur(120px);
}
.services-Box{
  height: 450px;
  width: 100%;
  display: block;
  border-radius: 20px;
  position: relative;
  padding: 2rem;
  transition: all .3s;
  overflow: hidden;
  transition: transform 450ms;
}
.services-Box::after{
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.096);
  z-index: 0;
}
.services-Box:hover{
  transform: scale(1.05);
  transition: transform 450ms;
}
.services-Box .services-image{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: -1;
  transition: transform 450ms;
}
.services-Box:hover .services-image{
  transform: scale(2);
  opacity: 0.6;
  filter: blur(10px);
  transition-property: transform, opacity, filter;
  transition-duration: 500ms;
  transition-duration: cubic-bezier(0.85,0,0,1);
}
.services-Box:hover p{
  transform: translateX(0%);
  transition: transform 450ms cubic-bezier(0.85, 0, 0, 1);
}
.services-Box:hover a{
  transform: translateX(0%);
  transition: transform 450ms cubic-bezier(0.85, 0, 0, 1);
}
.services-Box h2{
  position: relative;
  z-index: 1;
  color: var(--s-white);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
.services-Box p{
  color: #fff;
  position: relative;
  z-index: 1;
  transform: translateX(130%);
  transition: transform 450ms cubic-bezier(0.85, 0, 0, 1);
}
.services-Box a{
  color: #fff;
  position: absolute;
  z-index: 1;
  bottom: 33px;
  right: 48px;
  display: flex;
  align-items: center;
  transform: translateY(300%);
  transition: transform 450ms cubic-bezier(0.85, 0, 0, 1);
}
.services-Box a span{
  width: 12px;
    height: 8px;
    background: url('https://rankdevsol.com/wp-content/uploads/2026/03/servicesarrows.png') no-repeat right center;
    display: inline-block;
    vertical-align: middle;
    transition: width 250ms ease-in-out;
    position: absolute;
    left: calc(100% + 5px);
    top: 5px;
}
.services-Box a:hover span{
  width: 20px;
}
.services-Box a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  height: 2px;
  background-color: var(--s-primary);
  transform: scaleX(0.1);
  transform-origin: 0% 50%;
  transition: transform 250ms ease-in-out;
}
.services-Box a:hover::after{
  transform: scaleX(0.785);
}
.hide-Gallery {
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    transition: all 0.5s ease;
}
.hide-Gallery.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px; /* adjust based on your content height */
}

/* Why Choose Us Section  */
.why-image-box img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
}
.why-content{
    background-color: var(--s-primary);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all.3s;
}
.why-content h3{
    color: var(--s-white);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all.3s;
}
.why-content p{
    color: var(--s-white);
    transition: all.3s;
}
.why-content img{
    filter: brightness(0) invert();
}
.why-content:hover{
    background-color: var(--s-secondary);
}
.why-content:hover h3{
    color: var(--s-white);
}
.why-content:hover p{
    color: var(--s-white);
}

/* Counter Section */
.counterTitle {
  font-size: 65px;
  font-weight: 800;
  line-height: 60px;
  letter-spacing: -0.03em;
  color: var(--s-primary);
}
.counter-box
{
  text-align: center;
}
.counter-box p {
  color: var(--s-black);
  font-size: 25px;
  font-weight: 600;
}

/* Testimonial Section STart Hre */
/* .testimonial-card{
  background-color: var(--s-primary);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; 
} */
 /* #testimonial-slider .owl-item {
    opacity: 0.4;
    transform: scale(1);
    transition: all 0.5s ease;
}
#testimonial-slider .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
} */
/* #testimonial-slider {
    position: relative;
} */
.testimonialSection:before,
.testimonialSection:after {
    content: "";
    position: absolute;
    top: 0;
    width: 600px;
    height: 100%;
    z-index: 2;
}
.testimonialSection::before {
    left: 0;
    background: linear-gradient(90deg, #0c405f 10%, transparent 100%);
}
.testimonialSection:after {
    right: 0;
    /* linear-gradient(90deg, var( --e-global-color-secondary ) 10%, #02030700 100%) */
    background: linear-gradient(270deg, #0c405f 10%, transparent 100%);
}
.testimonial-content{
  padding: 30px 20px 30px 20px;
  background-color: transparent;
  background: radial-gradient(at center center, var(--s-secondary) 0%, var(--s-secondary) 100%);
  border: 1px solid var(--s-primary);
  border-radius: 20px;
}
.testimonial-stars i{
  font-size: 13px;
  margin: 0 2px;
}
.testimonial-text{
  font-size: 15px;
  font-weight: 400;
  margin: 20px 0 35px 0;
  font-style: italic;
}
.testimonial-client-info{
  display: flex;
  align-items: center;
  margin-top: 0px;
}
.testimonial-client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: var(--s-secondary);
    border: 1px solid var(--s-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-client-image h6{
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.testimonial-client-details h5{
  font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: white;
    margin-bottom: 5px;
}
.testimonial-client-details p{
  font-size: 14px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1.5px;
    color: var(--s-primary);
    text-transform: capitalize;
}

/* Slider Section Start Here */
.sliderImage img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
}

/* Blog Section Start Here */
.blog-card{
  background: linear-gradient(180deg, #0c405f 0%, #0a354e 110%);
  display: block;
  border-radius: 20px;
  padding: 10px;
  border: 1px solid var(--s-primary);
}
.blog-card:hover .blog-img img{
  transition: all 0.3s ease-in-out;
  transform: scale(1.1) skew(0deg, -2deg);
}
.blog-card:hover .blog-title{
  color: #cbd9dd;
}
.blog-img{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 250px;
}
.blog-img img{
  width: 100%;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.blog-tag{
  position:absolute;
  bottom:15px;
  left:15px;
  background:white;
  padding:6px 18px;
  border-radius:30px;
  font-weight:500;
  color: var(--s-primary);
}
.blog-content{
  padding:20px 10px;
}
.blog-title{
  color:white;
  font-weight:700;
  font-size:22px;
  line-height:1.3;
}
.blog-date{
  color:#9fb4ba;
  font-size:14px;
  margin-top:10px;
}

/* Footer Section Start Here */
footer {
  /* background-color: #000; */
  position: relative;
  padding-top: 25px;
  background-image: url(https://rankdevsol.com/wp-content/uploads/2026/02/footer-bg.webp);
  background-repeat: no-repeat;
   background-position: bottom right;
   border-top: 1px solid #eeeeee48;
}
/* footer:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          width: 100%;
          height: 100%;
          background-color: #222222f5;
          z-index: 0;
        } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-black);
}
.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--s-black);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-black);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}
.footer-box ul li a {
  font-size: 15px;
  color: var(--s-black);
}
.footer-box ul li a:hover {
  color: var(--s-secondary);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-primary);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-white);
  transition: 0.3s;
  border-radius: 100px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-secondary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px dotted #0000005b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  mix-blend-mode: multiply;
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}







/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner
{
  background-color: var(--s-black);
  background-image: url(https://rankdevsol.com/wp-content/uploads/2026/03/banner-2.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.innerPagesBanner::after
{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000a4;
}
.innerpage-title
{
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.innerpage-title h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin: 0 5px;
}
.breadcrumb-content ul li a{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-white);
  margin-right: 5px;
}
.about_image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 25px;
}
/* Mission Section Start here */
.ourMission
{
    background-color: var(--s-primary);
}
.valueBox
{
    border-radius: 15px;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 3em 1em 3em 1em;
    background-color: var(--s-secondary);
}
.valueBox h4
{
    color: var(--s-white);
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 25px;
    margin-top: 25px;
    letter-spacing: 1px;
}
.valueBox p{
    color: var(--s-white);
}
.contactIcon h5
{
  font-size: 17px;
  font-weight: 600;
}
.innerservicescontent
{
  margin: 0;
}
.innerservicescontent
{
  padding: 40px 30px;
}
.innerservicescontent h2
{
  font-size: 17px;
}
.innerservicescontent p
{
  font-size: 17px;
}
/* FAQs Section Start Here */
.faqs-box img
{
	height: 450px;
	width: 100%;
	object-fit: cover;
/*   background-image: url(https://rankdevsol.com/wp-content/uploads/2026/02/services-card-6.jpg); */
  border-radius: 25px;
}
.accordion-header .accordion-button
{
  font-size: 17px;
  background-color: #FFFFFF;
  color: var(--black);
  /* padding: 17px 25px 17px 25px; */
  border-radius: 30px !important;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  font-weight: 700;
}
.accordion-button:not(.collapsed)
{
  color: var(--s-white);
  background-color: var(--s-primary);
}
.accordion-item
{
  background-color: transparent;
}
/* Our Team Section Start here */
.ourTeam
{
  background-color: #fff;
}
.td-single-team-member
{
  margin-bottom: 30px;
  display: inline-block;
  transition: .3s;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}
.td-member-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: .3s;
  width: 100%;
}
.td-member-image img
{
  width: 100%;
}
.social-icon{
  position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    transition: .3s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  background-color: var(--s-secondary);
  transition: .3s;
}
.social-icon ul li {
  margin: 0 5px;
  width: 35px;
  height: 35px;
  background: var(--s-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.social-icon ul li a i
{
  font-size: 16px;
  color: var(--s-white);
  transition: .3s;
}
.social-icon ul li:hover a i
{
  color: var(--s-secondary);
}
.td-member-content
{
  background: var(--s-primary);
  padding: 20px;
  margin-top: -10px;
  transition: .3s;
}
.td-member-content h3
{
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--s-white);
  transition: .3s;

}
.td-member-content h5
{
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--s-white);
  letter-spacing: 2px;

}
.td-member-image a img
{
  transform: scale(1);
  transition: .3s;
}
.td-single-team-member:hover .td-member-image a img
{
  transform: scale(1.1);
  transition: .3s;
}
.td-single-team-member:hover .social-icon
{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.disclosures-links
{
  list-style: decimal;
  padding-left: 20px;
}
.disclosures-links li
{
  margin-bottom: 5px;
}
.disclosures-links li a
{
 font-size: 14px;
 text-decoration: underline;
}


/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage h2{
	font-size: 25px;
	margin-bottom: 20px;
}
.innerServicesPage p
{
	font-size: 16px;
  margin-bottom: 20px;
}
.innerServicesImage img
{
	width: 100%;
  height: 450px;
  object-fit: cover;
	border-radius: 20px;
}
.innerServices-overlay
{
  background-color: #00000088;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}







/*============================================
    Responsive CSS STart Here 
=============================================*/
@media (max-width: 991px){
  .top-section{
    display: none;
  }
  header{
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .bottom-header{
    /* position: relative; */
    background-color: var(--s-white);
  }
  .bottom-header .container
  {
    padding: 0 5px !important;
  }
  section
  {
    padding: 80px 0;
  }
  .header-btn
  {
    display: none;
  }
  .navbar-brand img{
    width: 90px;
  }
  .navbar-nav
  {
    align-items: self-start !important;
    border-top: 1px solid var(--s-secondary);
    margin-top: 10px;
    padding: 8px 0;
  }
  .bottom-header nav .navbar-nav .nav-item .nav-link {
    font-size: 15px;
    padding: 6px 2px;
    margin: 0px 0; 
    color: var(--s-black);
  }
  .header-scrolled .nav-link {
    color: var(--s-black) !important;
  }
  .site-btn {
    padding: 15px 30px 15px 30px;
    font-size: 14px;
  }
  .titleBar h3{
    font-size: 25px;
  }
  .titleBar h6{
    font-size: 13px;
  }
  p{
    font-size: 14px;
  }

  /* Banner */
  .bannerContent h1 {
    font-size: 30px;
  }
  .bannerContent p{
    font-size: 14px;
  }
  .video-banner{
    min-height: 400px;
    height: 400px;
    padding: 4em 0em 3em 0em;
  }


  /* Inner Services Pages */
  .innerPagesBanner{
    height: 200px;
  }
  .innerpage-title {
    margin-top: 0;
  }
  .innerpage-title h1
  {
    font-size: 25px;
    line-height:25px;
  }
  .breadcrumb-content ul li{
    font-size: 12px;
  }
  .innerServicesImage img {
    height: 350px;
  }
  .accordion-header .accordion-button {
    font-size: 14px;
  }
  .contactUSPage{
    margin-top: 30px;
    padding: 30px 20px !important;
  }
  .innerservicescontent {
    padding: 0px 0;
  }
}