* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*  
  font-family: "Poppins", sans-serif;
  font-family: "DM Sans", sans-serif;
  font-family: "Kumbh Sans", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  background: transparent;
  color: var(--s-primary);
  transition: 0.4s all ease;
}
a:hover {
  color: var(--s-black);
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}
p {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 0rem;
  color: #000;
  font-weight: 400;
}
section {
  padding: 50px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
/* SITE BTN */
.site-btn {
  font-size: 18px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--s-white);
  font-weight: 700;
  text-align: center;
  padding: 12px 65px;
  background-color: var(--s-primary);
  border: 1px solid var(--s-white);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  transition: all 0.5s;
  font-family: "Kumbh Sans", sans-serif;
}
.site-btn:hover {
  color: var(--s-white);
  /* border:1px solid var(--s-primary); */
  background-color: var(--s-black);
}
.revSite-btn {
  background-color: #fff;
  color: var(--s-black);
  border-color: #fff;
}
.revSite-btn:hover span {
  color: var(--s-white);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-black);
  color: var(--s-black);
}
.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: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--s-secondary);
  margin-bottom: 15px;
  position: relative;
}
.titleBar h3 {
  font-size: 30px;
  font-weight: 600;
  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: #1C4D8D;
  --s-secondary: #2d60a3;
  --s-third: #252525;
  --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;
}
.bg-s-third {
  background-color: var(--s-third) !important;
}
.text-s-third {
  color: var(--s-third) !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-color: #000000;
  z-index: 99;
  border-radius: 0;
  padding: 0px 0px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-top: 4px solid var(--s-primary);
}
.header-scrolled .nav-link {
  color: var(--s-white) !important;
  font-size: 15px !important;
}
/*================================
          HEADER CSS START HERE 
==================================*/
.desktop-header{
  display: block;
}
.mobile-header{
  display: none;
}
.home header{
  position: absolute;
  background-color: transparent;
  border-top: 4px solid var(--s-primary);
}
header {
  background-color: var(--s-black);
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 9999;
  border-top: 4px solid var(--s-primary);
}
/* 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-white);
  font-weight: 500;
  transition: 0.3s;
  background-color: var(--s-secondary);
  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-secondary);
  background-color: var(--s-white);
}
.agent-name {
  margin-left: 25px;
}
.agent-name h3{
  color: var(--s-primary);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
  letter-spacing: 1.2px;
}
.agent-name h6{
  color: #5f5f5f;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: -0.2px;
}

/* Third Header */
.rating{
  display: flex;
  align-items: center;
}
.rating span{
  font-size: 30px;
  color: #FFC834;
  font-weight: 800;
}
.rating .star-icon{
  font-size: 30px;
  color: #FFC834;
}

/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 5px;
  border: 1px solid var(--s-black);
  background-color: var(--s-white);
  padding: 0;
}
.dropdown-menu li a
{
  color: var(--s-black);
  padding: 6px 10px;
  /* border-radius: 5px; */
  /* margin-bottom: 3px; */
  /* margin-left: 8px; */
}
.dropdown-item:hover {
  background-color: var(--s-secondary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: var(--s-primary);
  /* position: absolute; */
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  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-black);
  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: capitalize;
  font-size: 18px;
  font-weight: 500;
  color: var(--s-white);
  padding: 15px 2px;
  margin: 0 20px;
  border-radius: 50px;
  position: relative;
  /* letter-spacing: 1px; */
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 15%;
  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);
}
/* FULL WIDTH MEGA MENU */
.mega-menu-wrapper {
  position: static;
}
.mega-menu-wrapper .mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 80%;
  margin: 0;
  padding: 40px 0;
  border: 0;
  border-radius: 0;
  background: var(--s-primary);
  z-index: -1;
  height: 550px;
  overflow-y: scroll;
}
.mega-menu-wrapper .mega-menu li a
{
  color: var(--s-white) !important;
  padding: 6px 10px;
  border-radius: 5px;
  margin-bottom: 3px;
  margin-left: 8px;
}
.mega-summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  display: inline-block;
  color: var(--s-white);
  font-size: 18px;
  font-weight: 600;
}
.mega-summary::-webkit-details-marker {
  display: none;
}
.mega-summary::after {
  content: "▸";
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
details[open] .mega-summary::after {
  transform: translateY(-50%) rotate(90deg);
}
details ul{
  margin-top: 10px;
}


/* DESKTOP HOVER */
@media (min-width: 992px) {
  .mega-menu-wrapper:hover .mega-menu {
    display: block;
  }
  .mega-menu-wrapper .mega-menu {
    margin-top: 0;
  }
}

/* MOBILE */
@media (max-width: 991.98px) {
  .mega-menu-wrapper {
    position: relative;
  }
  .mega-menu-wrapper .mega-menu {
    position: static;
    width: 100%;
    padding: 20px;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 8px;
  }
  .mega-menu .row {
    gap: 15px;
  }
  .mega-menu-title {
    margin-bottom: 10px;
  }
}



/*************************************/
/***     Banner CSS Start Here     ***/
/*************************************/

/* Banner section start here */
.banner {
  background-color: #ffffff;
  position: relative;
}
.video-banner {
  padding: 7em 0em 5em 0em;
  position: relative;
  width: 100%;
  height: 835px;
  overflow: hidden;
  display: flex;
  align-items: end;
  justify-content: center;
}
.video-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(90deg, #0000005d 0%, #0000005d 100%);
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
}
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}
.bannerContent h5{
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--s-white);
    margin-bottom: 15px;
}
.bannerContent h1{
    font-size: 48px;
    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: 15px;
}
.bannerContent h2{
  font-size: 40px;
  font-weight: 400;
}
.bannerContent p{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: var(--s-white);
    /* margin-bottom: 25px; */
}
.hero-form{
  padding: 40px;
  background: #1c4d8d80;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  /* backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);    */
}
.hero-form input:hover{
  border-color: var(--s-third);
}
.hero-form textarea:hover{
  border-color: var(--s-primary);
}
.home-list{
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 30px;
}
.home-list li{
  margin-bottom: 5px;
  font-size: 18px;
}
.home-list li img{
  vertical-align: middle;
  margin-top: -5px;
  margin-right: 5px;
}

/* WHy CHoose US Section */
.list li{
  display: flex;
  align-items: center;
  color: var(--s-black);
  font-size: 18px;
  margin-bottom: 60px;
}
.list li i{
  font-size: 30px;
  margin-right: 15px;
  color: var(--s-black);
}
.why-image img{
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Services Section Start Here */
.services-box{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  transition: all .3s;
  width: 100%;
}
.services-box svg {
  fill: var(--s-primary);
}
.services-box:hover{
    transform: translateY(-10px);
}
.services-icon{
    width: 15%;
}
.services-content{
  padding-left: 20px;
  /* padding: 0px 20px */
  width: 85%;
  color: var(--s-primary);
}
.services-content h3{
    font-size: 25px;
    margin-bottom: 15px;
}
.services-content p{
    color: var(--s-black);
    margin-bottom: 20px;
}

/* .Discount Box */
.discountImage img{
  height: 430px;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.discount-box{
  text-align: center;
  border: 3px solid var(--s-primary);
  border-radius: 10px;
  padding: 30px 20px;
}
.discount-box img{
  width: 300px;
  margin-bottom: 15px;
}
.discount-box h4
{
  color: var(--s-black);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 10px;
}
.discount-box span{
  font-size: 13px;
  color: var(--s-black);
  margin-bottom: 10px;
  font-weight: 400;
  display: block;
}
.discount-box p{
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Testimonial Section STart */
.testimonial-left-box-icon svg{
  fill: var(--s-white) !important;
  width: 60px;
}
.review-wrapper {
  position: relative;
  color: var(--s-white);
}
.review-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  padding-right: 85px;
}
.read-more {
  position: absolute;
  right: 0;
  bottom: 0;
  color: var(--s-white);
  text-decoration: underline;
  white-space: nowrap;
  padding-left: 20px;
}
.read-more:hover {
  text-decoration: underline;
  color: var(--s-white);
}

/* Blog CSS Start Here */
.blogSection{
    background-image: url(https://tyke-appraisals-chicago.searchsolutiontesting.com/wp-content/uploads/2026/08/blog-bg.jpg);
}
.news-block-two:hover .blog-image{
  transform: skew(1.1);
  transition: all .4s ease;
}
.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all .4s ease;
}
.blog-image{
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: all .4s ease;
}
.news-block-two .inner-box .image-box .post-date {
  position: absolute;
  left: 0px;
  bottom: -1px;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--s-white);
  line-height: 34px;
  text-align: center;
  padding: 3.5px 25px;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 0px 0px);
  background-color: var(--s-secondary);
}
.sidebar-page-container .news-block-two .inner-box .lower-content {
  padding-top: 10px;
}
.post-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-block-two .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--s-black);
  margin-right: 22px;
  margin-bottom: 5px;
}
.news-block-two .inner-box .lower-content .post-info li a {
  color: var(--s-black);
  margin-left: 5px;
  font-size: 12px;
}
.news-block-two .inner-box .lower-content .post-info li i {
  font-size: 12px;
}
.inner-box {
  background: var(--s-third);
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.news-block-two .inner-box .lower-content h2 a {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--s-black);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.lower-content p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--s-black);
}
.lower-content .link a {
  color: var(--s-white);
  background-color: var(--s-secondary);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--s-secondary);
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.lower-content .link a:hover {
  background-color: var(--s-primary);
  border-color: var(--s-primary);
  color: var(--s-white);
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-black);
  position: relative;
  /* padding-top: 25px; */
}
.top-footer{
  padding: 80px 0;
}
.top-footer-image img{
  object-fit: cover;
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-black);
}
.footer-box p {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--s-white);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}
.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}
.footer-box ul li a:hover {
  color: var(--s-secondary);
  text-decoration: underline;
  /* 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-secondary);
  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-primary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px solid #0000005b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}
.copyRight-text p{
  font-size: 13px;
  margin-bottom: 5px;
}
/* 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);
  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-primary);
  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://tyke-appraisals-chicago.searchsolutiontesting.com/wp-content/uploads/2026/08/inner-banner-images.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.innerPagesBanner::after
{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: #000000d0;
  opacity: .75;
}
.innerpage-title
{
  position: relative;
  z-index: 2;
  margin-top: 0px;
}
.innerpage-title h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 50px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.innerpage-title h2{
  font-size: 40px;
  font-weight: 400;
}
.innerpage-title p{
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--s-white);
}

/* Bread Crumb */
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-black);
  font-size: 14px;
  margin: 0 5px;
}
.breadcrumb-content ul li a{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-primary);
  margin-right: 5px;
}
.contactIcon h5
{
  font-size: 17px;
  font-weight: 600;
}




/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage h2{
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  color: var(--s-black);
}
.innerServicesPage p
{
  margin-bottom: 20px;
}
.innerServices-overlay
{
  background-color: #00000088;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.innerServicesPage ul{
  color: var(--s-black);
  margin-bottom: 20px;
}
.innerServicesPage li{
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 15px;
  padding-left: 8px;
}

/* FAQs Page Start Here */
.FAQs-box img
{
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.accordion-item
{
  border: 1px solid var(--s-third);
}
.accordion-header .accordion-button {
  font-size: 18px;
  color: var(--s-black);
  font-weight: 500;
  background-color: #E5E7EB;
  border: none;

}
.accordion-button:not(.collapsed) {
  color: var(--s-white);
  background-color: var(--s-secondary);
  box-shadow: none;
}
.accordion-button:focus
{
  box-shadow: none;
}
.accordion-body{
  border: 1px solid #E5E7EB;
  color: var(--s-black);
}
.relatedServices{
  background-color: #F5F5F5;
  border: 1px solid #e0dddd;
  padding: 15px;
  border-radius: 15px;
}
.relatedServices h3{
  color: var(--s-black);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
.relatedServices ul li{
  margin-bottom: 5px;
}
.relatedServices ul li a{
  color: var(--s-black);
}
.relatedServices ul li a:hover{
  color: var(--s-primary);
  letter-spacing: 1px;
}



/*============================================
    Responsive CSS STart Here 
=============================================*/
@media (max-width: 991px){
  .desktop-header{
    display: none;
  }
  .mobile-header{
    display: block;
  }
  .rating span{
    font-size: 25px;
  }
  .rating .star-icon{
    font-size: 25px;
  }
  .bottom-header{
    position: relative;
    background-color: transparent;
  }
  .bottom-header .container
  {
    padding: 0 0px !important;
  }
  .bottom-header .navbar-collapse{
    background-color: var(--s-white);
    padding-left: 15px;
    padding-right: 15px;
  }
  section
  {
    padding: 80px 0;
  }
  .dropdown-menu{
    background-color: var(--s-white);
  }
  .navbar-nav
  {
    align-items: self-start !important;
    /* border-top: 1px solid #0000007e; */
    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 .header-scrolled{
    background-color: var(--s-white);
  }
  .header-scrolled .nav-link {
    color: var(--s-black) !important;
  }
  .site-btn {
    padding: 12px 20px 12px 20px;
    font-size: 14px;
  }
  .titleBar h3{
    font-size: 25px;
    font-weight: 700;
  }
  .titleBar h6{
    font-size: 13px;
  }
  p{
    font-size: 15px;
  }

  /* Banner */
  .video-banner{
    min-height: 1130px;
    height: 350px;
    padding: 2rem 0;
  }
  .bannerContent h1 {
    font-size: 30px;
  }
  .bannerContent h2 {
    font-size: 25px;
  }
  .bannerContent p{
    font-size: 15px;
  }

   /* Inner Pages  */
  .innerPagesBanner{
    height: 490px;
    padding: 3rem 0;
  }
  .innerpage-title h1 {
    font-size: 32px;
  }
  .innerpage-title h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .innerpage-title p{
    font-size: 15px;
  }
  
  

}